From 44416494cabb7488f427b2f4c7c2137f685af652 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Mon, 13 Jan 2025 10:25:01 -0700 Subject: [PATCH 01/23] Refactor, move modules around -- WIP --- .../controller/common/FileDownloadCommon.java | 89 +++- common/pom.xml | 11 + .../gov/cms/ab2d/common/util/Constants.java | 2 + .../ab2d/common/util/GzipCompressUtils.java | 107 ++++ .../common/util/GzipCompressUtilsTest.java | 135 +++++ .../test/resources/test-data/EOB-500.ndjson | 500 ++++++++++++++++++ pom.xml | 4 +- .../processor/ContractProcessorImpl.java | 21 +- .../ContractProcessorInvalidPatientTest.java | 24 +- 9 files changed, 876 insertions(+), 17 deletions(-) create mode 100644 common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java create mode 100644 common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java create mode 100644 common/src/test/resources/test-data/EOB-500.ndjson diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java index 4cc7759d3..c32f96bc2 100644 --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java @@ -2,6 +2,8 @@ import gov.cms.ab2d.api.remote.JobClient; import gov.cms.ab2d.common.service.PdpClientService; +import gov.cms.ab2d.common.util.Constants; +import gov.cms.ab2d.common.util.GzipCompressUtils; import gov.cms.ab2d.eventclient.clients.SQSEventClient; import gov.cms.ab2d.eventclient.events.ApiResponseEvent; import java.io.FileInputStream; @@ -11,6 +13,7 @@ import javax.servlet.http.HttpServletResponse; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; +import lombok.val; import org.apache.commons.io.IOUtils; import org.slf4j.MDC; import org.springframework.core.io.Resource; @@ -19,7 +22,8 @@ import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; - +import static gov.cms.ab2d.api.controller.common.FileDownloadCommon.Encoding.GZIP_COMPRESSED; +import static gov.cms.ab2d.api.controller.common.FileDownloadCommon.Encoding.UNCOMPRESSED; import static gov.cms.ab2d.common.util.Constants.FILE_LOG; import static gov.cms.ab2d.common.util.Constants.JOB_LOG; import static gov.cms.ab2d.common.util.Constants.FHIR_NDJSON_CONTENT_TYPE; @@ -34,23 +38,44 @@ public class FileDownloadCommon { private final SQSEventClient eventLogger; private final PdpClientService pdpClientService; + enum Encoding { + UNCOMPRESSED, + GZIP_COMPRESSED; + } + public ResponseEntity downloadFile(String jobUuid, String filename, HttpServletRequest request, HttpServletResponse response) throws IOException { MDC.put(JOB_LOG, jobUuid); MDC.put(FILE_LOG, filename); log.info("Request submitted to download file"); - Resource downloadResource = jobClient.getResourceForJob(jobUuid, filename, - pdpClientService.getCurrentClient().getOrganization()); + final Resource downloadResource = getDownloadResource(jobUuid, filename); log.info("Sending " + filename + " file to client"); - String fileDownloadName = downloadResource.getFile().getName(); - response.setHeader(HttpHeaders.CONTENT_TYPE, FHIR_NDJSON_CONTENT_TYPE); - response.setHeader("Content-Disposition", "inline; swaggerDownload=\"attachment\"; filename=\"" + fileDownloadName + "\""); - try (OutputStream out = response.getOutputStream(); FileInputStream in = new FileInputStream(downloadResource.getFile())) { - IOUtils.copy(in, out); + try (OutputStream out = response.getOutputStream(); + FileInputStream in = new FileInputStream(downloadResource.getFile())) { + + // set headers before writing to response stream + final Encoding fileEncoding = getFileEncoding(downloadResource); + final Encoding requestedEncoding = getRequestedEncoding(request); + if (requestedEncoding == GZIP_COMPRESSED) { + response.setHeader("Content-Encoding", Constants.GZIP_ENCODING); + } + final String fileDownloadName = getDownloadFilename(downloadResource, requestedEncoding); + response.setHeader("Content-Disposition", "inline; swaggerDownload=\"attachment\"; filename=\"" + fileDownloadName + "\""); + + // write to response stream, compressing or decompressing file contents as needed + if (requestedEncoding == fileEncoding) { + IOUtils.copy(in, out); + } + else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { + GzipCompressUtils.decompress(in, response.getOutputStream()); + } + else if (fileEncoding == UNCOMPRESSED && requestedEncoding == GZIP_COMPRESSED) { + GzipCompressUtils.compress(in, response.getOutputStream()); + } eventLogger.sendLogs(new ApiResponseEvent(MDC.get(ORGANIZATION), jobUuid, HttpStatus.OK, "File Download", "File " + filename + " was downloaded", (String) request.getAttribute(REQUEST_ID))); @@ -58,4 +83,52 @@ public ResponseEntity downloadFile(String jobUuid, String filename, Http return new ResponseEntity<>(null, null, HttpStatus.OK); } } + + Resource getDownloadResource(String jobUuid, String filename) throws IOException { + val organization = pdpClientService.getCurrentClient().getOrganization(); + try { + // look for compressed file + return jobClient.getResourceForJob(jobUuid, filename + ".gz", organization); + } + catch (RuntimeException e) { + // look for uncompressed file + // allow this exception to be thrown to caller (for consistency with current behavior) + return jobClient.getResourceForJob(jobUuid, filename, organization); + } + } + + static String getDownloadFilename( + Resource downloadResource, + Encoding requestedEncoding) { + + final Encoding fileEncoding = getFileEncoding(downloadResource); + final String filename = downloadResource.getFilename(); + if (requestedEncoding == fileEncoding) { + return filename; + } + else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { + return filename.replace(".gz", ""); + } + else { + return filename + ".gz"; + } + } + + static Encoding getFileEncoding(Resource resource) { + if (resource.getFilename().endsWith(".gz")) { + return GZIP_COMPRESSED; + } + return UNCOMPRESSED; + } + + // determine optional encoding requested by user, defaulting to uncompressed if not provided + static Encoding getRequestedEncoding(HttpServletRequest request) { + val values = request.getHeaders("Accept-Encoding"); + while (values.hasMoreElements()) { + if (values.nextElement().equalsIgnoreCase(Constants.GZIP_ENCODING)) { + return GZIP_COMPRESSED; + } + } + return UNCOMPRESSED; + } } diff --git a/common/pom.xml b/common/pom.xml index cf8911839..f717e637c 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -131,6 +131,17 @@ ab2d-contracts-client ${contract-client.version} + + org.apache.commons + commons-compress + ${commons-compress.version} + + + + commons-io + commons-io + ${commons-io.version} + diff --git a/common/src/main/java/gov/cms/ab2d/common/util/Constants.java b/common/src/main/java/gov/cms/ab2d/common/util/Constants.java index 6599de4bb..6d26bbcf8 100644 --- a/common/src/main/java/gov/cms/ab2d/common/util/Constants.java +++ b/common/src/main/java/gov/cms/ab2d/common/util/Constants.java @@ -13,6 +13,8 @@ private Constants() { } public static final String FHIR_JSON_CONTENT_TYPE = "application/fhir+json"; + public static final String GZIP_ENCODING = "gzip"; + public static final String JOB_LOG = "job"; public static final String ORGANIZATION = "organization"; diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java new file mode 100644 index 000000000..b006f0050 --- /dev/null +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java @@ -0,0 +1,107 @@ +package gov.cms.ab2d.common.util; + +import lombok.experimental.UtilityClass; +import lombok.extern.slf4j.Slf4j; +import lombok.val; +import org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream; +import org.apache.commons.compress.compressors.gzip.GzipCompressorOutputStream; + +import java.io.*; +import java.nio.file.Files; +import java.nio.file.Path; + +@UtilityClass +@Slf4j +public class GzipCompressUtils { + + public static void compress(final InputStream inputStream, final OutputStream out) throws IOException { + try (BufferedOutputStream outputBuffer = new BufferedOutputStream(out); + GzipCompressorOutputStream compressor = new GzipCompressorOutputStream(outputBuffer)) { + org.apache.commons.io.IOUtils.copy(inputStream, compressor); + } + } + + public static void compress(final Path uncompressedFile, final OutputStream out) throws IOException { + try (InputStream inputStream = Files.newInputStream(uncompressedFile)) { + compress(inputStream, out); + } + } + + public static void compress(final Path uncompressedFile, final Path destination) throws IOException { + try (OutputStream out = Files.newOutputStream(destination)) { + compress(uncompressedFile, out); + } + } + + public static void decompress(final InputStream inputStream, final OutputStream out) throws IOException { + try (BufferedInputStream inputBuffer = new BufferedInputStream(inputStream); + GzipCompressorInputStream decompressor = new GzipCompressorInputStream(inputBuffer)) { + org.apache.commons.io.IOUtils.copy(decompressor, out); + } + } + + public static void decompress(final Path compressedFile, final OutputStream out) throws IOException { + try (InputStream inputStream = Files.newInputStream(compressedFile)) { + decompress(inputStream, out); + } + } + + public static void decompress(final Path compressedFile, Path destination) throws IOException { + try (OutputStream out = Files.newOutputStream(destination)) { + decompress(compressedFile, out); + } + } + + /** + * Compress job output files (both 'DATA' and 'ERROR' types) + * @param jobId job id + * @param baseDir root directory containing directory for corresponding job id + * @param fileFilter function to determine whether a file should be compressed + * @return false if an error occurred while compressing one or more files (unlikely), true otherwise + */ + public static boolean compressJobOutputFiles( + String jobId, + String baseDir, + FileFilter fileFilter) { + val jobDirectory = new File(baseDir + File.separator + jobId); + if (!jobDirectory.exists() || !jobDirectory.isDirectory()) { + return false; + } + + val files = jobDirectory.listFiles(fileFilter); + boolean success = true; + for (File file : files) { + success = success && compressFile(file, true); + } + return success; + } + + /** + * Compress a file and optionally delete file after compressing + * @param file file to compress + * @param deleteFile if true, delete file after compressing + * @return true if file was compressed successfully, false otherwise + */ + static boolean compressFile(File file, boolean deleteFile) { + if (file != null && !file.exists() && !file.isFile()) { + return false; + } + // append ".gz" to the input filename + val compressedOutputFile = new File(file.getParent(), file.getName() + ".gz"); + try { + GzipCompressUtils.compress(file.toPath(), compressedOutputFile.toPath()); + } catch (IOException e) { + log.error("Unable to compress file: {}", file.getAbsoluteFile()); + return false; + } + if (deleteFile) { + try { + Files.delete(file.toPath()); + } catch (IOException e) { + log.error("Unable to delete file: {}", file.getAbsolutePath()); + } + } + + return true; + } +} \ No newline at end of file diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java new file mode 100644 index 000000000..5df219410 --- /dev/null +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -0,0 +1,135 @@ +package gov.cms.ab2d.common.util; + +import org.apache.commons.io.FileUtils; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +import static org.junit.jupiter.api.Assertions.*; + + +class GzipCompressUtilsTest { + + /** + * Test file contains first 500 entries from https://bcda.cms.gov/assets/data/ExplanationOfBenefit.ndjson + */ + public static final Path UNCOMPRESSED_FILE = Path.of("src/test/resources/test-data/EOB-500.ndjson"); + /** + * Test file compressed using the 'gzip' command line utility, not {@link GzipCompressUtils#compress} + */ + public static final Path COMPRESSED_FILE_USING_GZIP_CLI = Path.of("src/test/resources/test-data/EOB-500.ndjson.gz"); + + @Test + void testCompressFile() throws Exception { + Path outputCompressed = newTestFile(".ndjson.gz"); + GzipCompressUtils.compress(UNCOMPRESSED_FILE, outputCompressed); + + /** + Note that the following is not a valid assertion because the 'gzip' command line utility can produce + output that differs from {@link GzipCompressUtils#compress}, however both outputs are valid. + + assertTrue( + FileUtils.contentEquals(output.toFile(), + COMPRESSED_FILE.toFile()) + ); + + Instead, decompress the `outputCompressed` file and assert it matches {@link UNCOMPRESSED_FILE} + */ + + Path outputDecompressed = newTestFile(".ndjson"); + GzipCompressUtils.decompress(outputCompressed, outputDecompressed); + + assertTrue( + FileUtils.contentEquals( + outputDecompressed.toFile(), + UNCOMPRESSED_FILE.toFile() + ) + ); + } + + @Test + void testCompressOutputStream() throws Exception { + ByteArrayOutputStream outputCompressed = new ByteArrayOutputStream(); + GzipCompressUtils.compress(UNCOMPRESSED_FILE, outputCompressed); + + ByteArrayOutputStream outputUncompressed = new ByteArrayOutputStream(); + GzipCompressUtils.decompress( + new ByteArrayInputStream(outputCompressed.toByteArray()), + outputUncompressed + ); + + assertArrayEquals( + Files.readAllBytes(UNCOMPRESSED_FILE), + outputUncompressed.toByteArray() + ); + } + + @Test + void testDecompressFile() throws Exception { + Path output = newTestFile(".ndjson"); + GzipCompressUtils.decompress(COMPRESSED_FILE_USING_GZIP_CLI, output); + assertTrue( + FileUtils.contentEquals( + output.toFile(), + UNCOMPRESSED_FILE.toFile() + ) + ); + } + + @Test + void testDecompressOutputStream() throws Exception { + ByteArrayOutputStream output = new ByteArrayOutputStream(); + GzipCompressUtils.decompress(COMPRESSED_FILE_USING_GZIP_CLI, output); + assertArrayEquals( + Files.readAllBytes(UNCOMPRESSED_FILE), + output.toByteArray() + ); + } + + @Test + void testCompressFile_fileIsDeleted(@TempDir File tempDir) throws IOException { + File file = copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile(); + assertTrue(file.exists()); + assertTrue(GzipCompressUtils.compressFile(file, true)); + + assertTrue(new File(file.getParent(), file.getName() + ".gz").exists()); + assertFalse(file.exists()); + } + + @Test + void testCompressFile_fileIsNotDeleted(@TempDir File tempDir) throws IOException { + File file = copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile(); + assertTrue(file.exists()); + assertTrue(GzipCompressUtils.compressFile(file, false)); + + assertTrue(new File(file.getParent(), file.getName() + ".gz").exists()); + assertTrue(file.exists()); + } + + @Test + void testCompressFile_fileNotFound(@TempDir File tempDir) throws IOException { + assertFalse(GzipCompressUtils.compressFile(new File("not-a-real-file"), true)); + } + + @Test + void testCompressFile_fileIsADirectory(@TempDir File tempDir) throws IOException { + assertFalse(GzipCompressUtils.compressFile(tempDir, true)); + } + + + Path newTestFile(String suffix) throws IOException { + Path file = Files.createTempFile(getClass().getSimpleName(), suffix); + file.toFile().deleteOnExit(); + return file; + } + + Path copyFile(File file, File directory) throws IOException { + return Files.copy(file.toPath(), new File(directory, file.getName()).toPath()); + } +} \ No newline at end of file diff --git a/common/src/test/resources/test-data/EOB-500.ndjson b/common/src/test/resources/test-data/EOB-500.ndjson new file mode 100644 index 000000000..cf9756e78 --- /dev/null +++ b/common/src/test/resources/test-data/EOB-500.ndjson @@ -0,0 +1,500 @@ +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":9}]}],"billablePeriod":{"end":"2020-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4468.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":160}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":160}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"hospitalization":{"end":"2020-03-22","start":"2020-03-13"},"id":"inpatient--10000000020384","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020384"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021963"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17872.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":22436.56}},"procedure":[{"date":"2020-03-13T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BW03ZZZ","display":"PLAIN RADIOGRAPHY OF CHEST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":22436.56},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-10-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020389","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020389"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021969"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-10-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020390","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020390"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021971"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020391","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020391"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021972"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-07-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2005-04-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2005-04-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020400","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020400"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021981"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020403","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020403"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021984"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-01-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020445","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020445"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022026"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020448","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020448"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022029"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":60.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":210.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020449","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020449"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022030"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020455","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020455"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022036"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-01-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020483","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020483"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022074"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020485","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020485"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022077"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020487","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020487"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022080"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-08-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-08-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022083"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-08-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2413.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020490","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020490"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022085"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020492","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020492"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022088"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020494","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020494"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022092"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-12-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020496","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020496"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022095"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-01-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020498","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020498"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022098"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022101"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J189","display":"\"PNEUMONIA, UNSPECIFIED ORGANISM\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"R0603","display":"ACUTE RESPIRATORY DISTRESS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"R5081","display":"FEVER PRESENTING WITH CONDITIONS CLASSIFIED ELSEWHERE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"H1189","display":"OTHER SPECIFIED DISORDERS OF CONJUNCTIVA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0981","display":"NASAL CONGESTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R54","display":"AGE-RELATED PHYSICAL DEBILITY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":13},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":14},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":15}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022107"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-12-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-12-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"H1189","display":"OTHER SPECIFIED DISORDERS OF CONJUNCTIVA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0981","display":"NASAL CONGESTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R54","display":"AGE-RELATED PHYSICAL DEBILITY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022110"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1984-01-30","start":"1984-01-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020519","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020519"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022121"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1984-01-30","start":"1984-01-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-02-02","start":"1987-02-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020522","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020522"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022124"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-02-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1987-02-02","start":"1987-02-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-11-23","start":"1992-11-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020525","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020525"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022127"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-11-27"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1992-11-23","start":"1992-11-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1994-11-28","start":"1994-11-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59}}],"id":"carrier--10000000020528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022130"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-12-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1994-11-28","start":"1994-11-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-12-02","start":"1996-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020530","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020530"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022132"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-12-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1996-12-02","start":"1996-12-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-12-11","start":"2000-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020531","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020531"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022133"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-12-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2000-12-11","start":"2000-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-11-18","start":"2002-11-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020574","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020574"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022177"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-11-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2002-11-18","start":"2002-11-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-11-29","start":"2004-11-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020578","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020578"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022181"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-12-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2004-11-29","start":"2004-11-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-12-05","start":"2005-12-05"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020581","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020581"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022184"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-12-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2005-12-05","start":"2005-12-05"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-12-11","start":"2006-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020582","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020582"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022185"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-12-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2006-12-11","start":"2006-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-12-17","start":"2007-12-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020584","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020584"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022187"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-12-21"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2007-12-17","start":"2007-12-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-12-22","start":"2008-12-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020586","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020586"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022189"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-12-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2008-12-22","start":"2008-12-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-01-09","start":"2012-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020591","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020591"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022194"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2012-01-09","start":"2012-01-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-01-14","start":"2013-01-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020593","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020593"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022196"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2013-01-14","start":"2013-01-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-01-20","start":"2014-01-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020597","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020597"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022200"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2014-01-20","start":"2014-01-20"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-01-26","start":"2015-01-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020601","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020601"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022204"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2015-01-26","start":"2015-01-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-02-01","start":"2016-02-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020603","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020603"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022207"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-02-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2016-02-01","start":"2016-02-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-02-06","start":"2017-02-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020639","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020639"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022243"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-02-10"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":7},"sequence":1,"servicedPeriod":{"end":"2017-02-06","start":"2017-02-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-02-12","start":"2018-02-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022245"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-02-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2018-02-12","start":"2018-02-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-02-18","start":"2019-02-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84}}],"id":"carrier--10000000020643","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020643"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022247"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-02-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2019-02-18","start":"2019-02-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-02-24","start":"2020-02-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000020645","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020645"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022249"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-02-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2020-02-24","start":"2020-02-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-03-01","start":"2021-03-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000020649","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020649"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022253"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-03-01","start":"2021-03-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-04-20","start":"2005-04-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999558565"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000020663","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020663"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022278"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"8","display":"Other entities for whom employer identification (EI) numbers are used in coding the ID field or proprietorship for whom EI numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2005-04-20","start":"2005-04-20"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-12-31","start":"2011-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001604","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001604"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022254"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001604"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"68071071630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-12-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2011-12-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2012-12-30","start":"2012-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001605","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001605"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022255"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001605"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"16252050630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2012-12-30"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2012-12-30"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2015-12-30","start":"2015-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001606","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001606"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022256"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001606"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"70518142600","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2015-12-30"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2015-12-30"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-12-29","start":"2016-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001607","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001607"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022257"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001607"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"63629339204","display":"simvastatin - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2016-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-12-29","start":"2017-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022258"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001608"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"61919068890","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2017-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-12-29","start":"2018-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001609","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001609"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022259"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001609"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00430630162","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2018-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-12-29","start":"2019-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001610","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001610"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022260"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001610"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00680711946","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2019-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001611","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001611"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022261"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001611"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":520},"sequence":1,"service":{"coding":[{"code":"63323056497","display":"Enoxaparin Sodium - ENOXAPARIN SODIUM","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001612","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001612"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022262"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001612"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":346},"sequence":1,"service":{"coding":[{"code":"69097014260","display":"ALBUTEROL SULFATE - ALBUTEROL SULFATE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001613","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001613"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022263"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001613"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":520},"sequence":1,"service":{"coding":[{"code":"59779048452","display":"pain relief - ACETAMINOPHEN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-12-28","start":"2020-12-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001614","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001614"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022264"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001614"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":231}}],"value":231},"sequence":1,"service":{"coding":[{"code":"67228035403","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-12-28"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-12-28"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-10-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8200.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"hospitalization":{"end":"2014-10-12","start":"2014-10-11"},"id":"inpatient--10000000018909","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018909"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020407"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":32802.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":41042.88}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":41042.88},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-06-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-06-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018941","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018941"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020439"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018942","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018942"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020440"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-05-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-05-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018944","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018944"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020442"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-05-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-08-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018945","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018945"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020443"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-08-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1975-10-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1975-10-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018951","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018951"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020449"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-10-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1975-10-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1975-10-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018952","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018952"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020450"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-10-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1985-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1985-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018962","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018962"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020460"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1993-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018971","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018971"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020469"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018973","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018973"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020471"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1994-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1994-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018974","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018974"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020472"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-01-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1995-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1995-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.86}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018976","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018976"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020474"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-01-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":202.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1996-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1996-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018978","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018978"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020476"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-01-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1997-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1997-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018979","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018979"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020477"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1997-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":359.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1998-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1998-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018980","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018980"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020478"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1998-08-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1998-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018982","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018982"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020480"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-08-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1999-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1999-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018983","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018983"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020481"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2000-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2000-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018985","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018985"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020483"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2001-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2001-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018987","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018987"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020485"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-01-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2002-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018989","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018989"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020487"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-01-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2003-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2003-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018991","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018991"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020489"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2004-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2004-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018993","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018993"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020491"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2005-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2005-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018995","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018995"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020493"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2006-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2006-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018997","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018997"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020495"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":359.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018999","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018999"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020497"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-01-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-02-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-02-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019000","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019000"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020498"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-02-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019002","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019002"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020500"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-01-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019004","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019004"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020502"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019006","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019006"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019008","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019008"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020506"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019010","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019010"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019012","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019012"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020510"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-05-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019014","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019014"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020512"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-05-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":28308.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019015","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019015"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020513"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-09-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-09-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019017","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019017"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020515"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":18895},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4763.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-10-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-10-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019018","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019018"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020516"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-12-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-12-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019035","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019035"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020533"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-12-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019085","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019085"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020583"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-04-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-04-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019086","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019086"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020584"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-04-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019088","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019088"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020586"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-02-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-02-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019099","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019099"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020597"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-03-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019105","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019105"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020603"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-09-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-09-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0300","display":"\"ACUTE STREPTOCOCCAL TONSILLITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J020","display":"STREPTOCOCCAL PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019130","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019130"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020628"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-09-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1765.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019132","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019132"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020630"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-01-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-11-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019136","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019136"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020634"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-11-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":142.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-11-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019138","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019138"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020636"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-11-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019139","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019139"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020637"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-01-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019141","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019141"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020639"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-01-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019147","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019147"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020645"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.05},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-01-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-01-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019153","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019153"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020651"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-01-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1961-06-28","start":"1961-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019158","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019158"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020656"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1961-06-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1961-06-28","start":"1961-06-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.757-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1962-07-04","start":"1962-07-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019161","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019161"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020659"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1962-07-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1962-07-04","start":"1962-07-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.757-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1963-07-10","start":"1963-07-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019162","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019162"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020660"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1963-07-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1963-07-10","start":"1963-07-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1964-07-15","start":"1964-07-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019164","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019164"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020662"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-07-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1964-07-15","start":"1964-07-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1965-07-21","start":"1965-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019166","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019166"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020664"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1965-07-21","start":"1965-07-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1966-07-27","start":"1966-07-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019168","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019168"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020666"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1966-07-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1966-07-27","start":"1966-07-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1967-08-02","start":"1967-08-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019171","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019171"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020669"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1967-08-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1967-08-02","start":"1967-08-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1968-08-07","start":"1968-08-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019173","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019173"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020671"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1968-08-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1968-08-07","start":"1968-08-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1969-08-13","start":"1969-08-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019176","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019176"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020674"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-08-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1969-08-13","start":"1969-08-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-08-25","start":"1971-08-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019180","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019180"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020678"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-08-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1971-08-25","start":"1971-08-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1972-08-30","start":"1972-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019183","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019183"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020681"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1972-08-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1972-08-30","start":"1972-08-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1973-09-05","start":"1973-09-05"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019185","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019185"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020683"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-09-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1973-09-05","start":"1973-09-05"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1974-09-11","start":"1974-09-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019230","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019230"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020728"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-09-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1974-09-11","start":"1974-09-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1975-09-17","start":"1975-09-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020733"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-09-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1975-09-17","start":"1975-09-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1976-09-22","start":"1976-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019242","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019242"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020740"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-09-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1976-09-22","start":"1976-09-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1977-09-28","start":"1977-09-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019248","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019248"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020746"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1977-09-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1977-09-28","start":"1977-09-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1978-10-04","start":"1978-10-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019249","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019249"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020747"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1978-10-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1978-10-04","start":"1978-10-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1979-10-10","start":"1979-10-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019250","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019250"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020748"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-10-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1979-10-10","start":"1979-10-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1980-10-15","start":"1980-10-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019256","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019256"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020754"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1980-10-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1980-10-15","start":"1980-10-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1981-10-21","start":"1981-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019262","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019262"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020760"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1981-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1981-10-21","start":"1981-10-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1982-10-27","start":"1982-10-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":307}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":307}}],"id":"carrier--10000000019269","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019269"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020767"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1982-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":102.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1982-10-27","start":"1982-10-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1983-11-02","start":"1983-11-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019276","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019276"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-11-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1983-11-02","start":"1983-11-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1984-11-07","start":"1984-11-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019282","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019282"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1984-11-07","start":"1984-11-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-11-13","start":"1985-11-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019286","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019286"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020784"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1985-11-13","start":"1985-11-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1986-11-19","start":"1986-11-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019293","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019293"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020791"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1986-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1986-11-19","start":"1986-11-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-11-25","start":"1987-11-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019295","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019295"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020793"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1987-11-25","start":"1987-11-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1988-11-30","start":"1988-11-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93}}],"id":"carrier--10000000019297","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019297"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020795"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1988-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":135.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1988-11-30","start":"1988-11-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1989-12-06","start":"1989-12-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019298","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019298"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020796"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1989-12-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1989-12-06","start":"1989-12-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1990-12-12","start":"1990-12-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019300","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019300"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020798"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1990-12-12","start":"1990-12-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-12-18","start":"1991-12-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019302","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019302"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020800"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-12-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1991-12-18","start":"1991-12-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-12-23","start":"1992-12-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019304","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019304"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020802"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-12-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1992-12-23","start":"1992-12-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019419","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019419"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020917"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1993-12-29","start":"1993-12-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1995-01-04","start":"1995-01-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38}}],"id":"carrier--10000000019428","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019428"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020926"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-01-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":65.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1995-01-04","start":"1995-01-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-01-10","start":"1996-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019431","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019431"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020931"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-01-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1996-01-10","start":"1996-01-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-01-21","start":"1998-01-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019439","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019439"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020940"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-01-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1998-01-21","start":"1998-01-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-01-27","start":"1999-01-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019442","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019442"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020944"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-01-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1999-01-27","start":"1999-01-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-02-02","start":"2000-02-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019444","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019444"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020946"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2000-02-02","start":"2000-02-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2001-02-07","start":"2001-02-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019446","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019446"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020948"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-02-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2001-02-07","start":"2001-02-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-02-13","start":"2002-02-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019448","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019448"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020950"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-02-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2002-02-13","start":"2002-02-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-02-19","start":"2003-02-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019450","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019450"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020952"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-02-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2003-02-19","start":"2003-02-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-02-25","start":"2004-02-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019452","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019452"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020954"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-02-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2004-02-25","start":"2004-02-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-03-02","start":"2005-03-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019454","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019454"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020956"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-03-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2005-03-02","start":"2005-03-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-03-08","start":"2006-03-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":690.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}}],"id":"carrier--10000000019456","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019456"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020958"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-03-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":690.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2006-03-08","start":"2006-03-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-03-14","start":"2007-03-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019459","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019459"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020961"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-03-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2007-03-14","start":"2007-03-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-03-19","start":"2008-03-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019461","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019461"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020963"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-03-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2008-03-19","start":"2008-03-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-03-25","start":"2009-03-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019463","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019463"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020965"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2009-03-25","start":"2009-03-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-03-31","start":"2010-03-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89}}],"id":"carrier--10000000019465","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019465"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020967"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-04-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":275.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2010-03-31","start":"2010-03-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019467","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019467"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020969"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-04-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"2011-04-06","start":"2011-04-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-04-11","start":"2012-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54}}],"id":"carrier--10000000019469","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019469"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020971"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-04-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":309.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2012-04-11","start":"2012-04-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000019471","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019471"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020973"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2013-04-17","start":"2013-04-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019487","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019487"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020989"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-04-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2014-04-23","start":"2014-04-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-04-29","start":"2015-04-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81}}],"id":"carrier--10000000019500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021004"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-04-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":226.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2015-04-29","start":"2015-04-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-05-04","start":"2016-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65}}],"id":"carrier--10000000019517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021021"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":313.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2016-05-04","start":"2016-05-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-05-10","start":"2017-05-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019568","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019568"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021072"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-05-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2017-05-10","start":"2017-05-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74}}],"id":"carrier--10000000019575","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019575"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021079"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":53.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2018-05-16","start":"2018-05-16"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98}}],"id":"carrier--10000000019586","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019586"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021090"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-05-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2019-05-22","start":"2019-05-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8}}],"id":"carrier--10000000019590","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019590"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021094"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":344.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2020-05-27","start":"2020-05-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-06-02","start":"2021-06-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019598","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019598"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021102"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-06-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-06-02","start":"2021-06-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000019683","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019683"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021220"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"5","display":"Institutional providers and independent laboratories for whom employer identification (EI) numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1993-12-29","start":"1993-12-29"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-08-18","start":"1998-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999323509"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000019694","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019694"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021232"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-08-21"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"0","display":"Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1998-08-18","start":"1998-08-18"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999035295"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"8","display":"Ambulatory Surgery Center (ASC) or other special facility (e.g. hospice)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673689"}},"hospitalization":{"end":"2018-05-17","start":"2018-05-16"},"id":"hospice--10000000019758","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019758"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021297"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd","display":"NCH Patient Status Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"A","display":"Discharged","system":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3056.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3056.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0650","display":"Hospice services-general classification","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:50.454-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673689"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221520"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96},"type":{"coding":[{"code":"50","display":"Hospice claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HOSPICE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-01-09","start":"2011-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001504","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001504"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021109"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"57297047802","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-01-09"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-01-09"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021114"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001505"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00538080883","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-04-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-04-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001506","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001506"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021117"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001506"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00904580846","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-04-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-04-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-01-08","start":"2013-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021120"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001507"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"68788974709","display":"simvastatin - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-01-08"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-01-08"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021122"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"50228011110","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-04-17"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-04-17"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001509","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001509"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021128"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001509"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"23490082700","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-04-17"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-04-17"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-01-08","start":"2014-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001510","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001510"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021130"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001510"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"55154506200","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-01-08"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-01-08"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001512","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001512"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021137"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001512"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"71335161005","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-04-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-04-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021141"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001514"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"54868465705","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-04-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-04-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-01-07","start":"2018-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001515","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001515"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021143"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001515"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"63304079030","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001516","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001516"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021144"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001516"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"67544034630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021146"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001517"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":1}}],"value":1},"sequence":1,"service":{"coding":[{"code":"66336097207","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999903529"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"id":"pde--10000001518","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001518"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021148"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001518"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":182}}],"value":182},"sequence":1,"service":{"coding":[{"code":"63187044090","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999903529"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"id":"pde--10000001519","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001519"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021151"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001519"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":200},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":182}}],"value":182},"sequence":1,"service":{"coding":[{"code":"00662670577","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-14","start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001520","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001520"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021153"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001520"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":240},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"68387053700","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-14"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-14"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-14","start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001521","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001521"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021155"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001521"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":280},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":1}}],"value":1},"sequence":1,"service":{"coding":[{"code":"60760026790","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-14"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-14"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-10","start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001522","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001522"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021156"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001522"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":189}}],"value":189},"sequence":1,"service":{"coding":[{"code":"60760043090","display":"HYDROCHLOROTHIAZIDE - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-10","start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001524","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001524"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021159"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001524"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":360},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":189}}],"value":189},"sequence":1,"service":{"coding":[{"code":"68788763301","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-01-07","start":"2019-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001526","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001526"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021162"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001526"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00615799239","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021165"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001528"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392001151","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-05-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-05-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001530","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001530"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021167"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001530"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"68001033400","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-05-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-05-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-01-07","start":"2020-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001531","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001531"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021169"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001531"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"53978306903","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001533","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001533"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021174"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001533"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":9}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00378360101","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-05-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-05-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001535","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001535"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021177"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001535"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":9}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392093025","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-05-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-05-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2000-09-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2000-09-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2000-09-24","start":"2000-09-23"},"id":"inpatient--10000000003210","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003210"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003423"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-09-29"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2012-05-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2012-05-15","start":"2012-05-14"},"id":"inpatient--10000000003226","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003226"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003439"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},"procedure":[{"date":"2012-05-14T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2013-04-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":43.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2013-04-10","start":"2013-04-09"},"id":"inpatient--10000000003231","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003231"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003444"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":173.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":257.04}},"procedure":[{"date":"2013-04-09T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":257.04},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":42.35}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2014-05-02","start":"2014-05-01"},"id":"inpatient--10000000003235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003448"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":169.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.73}},"procedure":[{"date":"2014-05-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.73},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-05-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":44.3}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2015-05-09","start":"2015-05-08"},"id":"inpatient--10000000003241","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003241"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003454"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.5}},"procedure":[{"date":"2015-05-08T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.5},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2016-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.77}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2016-04-09","start":"2016-04-08"},"id":"inpatient--10000000003245","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003245"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003458"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":283.84}},"procedure":[{"date":"2016-04-08T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":283.84},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2017-04-12","start":"2017-04-11"},"id":"inpatient--10000000003251","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003251"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003464"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":248.92}},"procedure":[{"date":"2017-04-11T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":248.92},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":56.11}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2018-05-02","start":"2018-05-01"},"id":"inpatient--10000000003255","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003255"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003468"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":224.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320.54}},"procedure":[{"date":"2018-05-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":320.54},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2019-04-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":42.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2019-04-26","start":"2019-04-25"},"id":"inpatient--10000000003260","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003260"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003473"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-05-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":169.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":252.04}},"procedure":[{"date":"2019-04-25T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":252.04},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-03-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.05}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2020-03-25","start":"2020-03-24"},"id":"inpatient--10000000003267","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003267"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003480"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":164.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":245.26}},"procedure":[{"date":"2020-03-24T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":245.26},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2021-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":53.62}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2021-03-22","start":"2021-03-21"},"id":"inpatient--10000000003271","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003271"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003484"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":214.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":308.08}},"procedure":[{"date":"2021-03-21T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":308.08},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-11-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-11-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003274","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003274"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003487"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-11-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-12-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003282","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003282"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003495"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-12-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-12-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003283","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003283"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003496"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-12-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-12-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-12-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003285","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003285"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003498"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-12-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003287","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003287"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003500"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003288","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003288"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003501"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-31"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1979-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1979-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13684.5}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003291","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003291"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13684.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":780.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-01-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-01-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8448.82}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003296","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003296"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003509"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-02-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8448.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2891.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1988-02-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1988-02-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003301","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003301"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003514"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1988-02-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1990-06-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1990-06-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003304","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003304"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003517"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-06-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-06-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003324","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003324"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003537"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003326","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003326"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003539"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003328","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003328"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003541"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-07-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6321.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-05-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003330","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003330"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003543"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-05-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003332","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003332"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003545"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11397.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003335","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003335"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003548"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003337","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003337"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003550"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13262.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3355.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003339","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003339"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003552"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003341","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003341"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003554"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6966.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003343","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003343"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003556"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":165.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003344","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003344"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003557"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003345","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003345"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003558"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003347","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003347"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003560"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14069.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3557.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-04-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003349","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003349"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003562"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-04-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003351","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003351"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003564"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9451.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-07-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003352","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003352"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003565"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-12-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-12-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003354","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003354"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003567"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-12-23"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003355","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003355"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003568"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003357","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003357"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003570"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12194.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3088.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003432","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003432"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003645"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003443","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003443"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003656"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7507.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-06-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003444","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003444"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003657"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-06-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003452","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003452"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003665"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003454","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003454"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003667"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8403.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003459","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003459"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003672"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003481","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003481"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003694"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":37.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003482","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003482"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003695"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":199.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003483","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003483"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003696"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003485","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003485"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003698"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7535.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003702"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003492","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003492"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003705"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9161.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-10-17","start":"1965-10-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003501","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003501"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003714"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1965-10-17","start":"1965-10-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1966-10-23","start":"1966-10-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003503","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003503"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003716"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1966-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1966-10-23","start":"1966-10-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1967-10-29","start":"1967-10-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003504","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003504"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003717"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1967-11-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1967-10-29","start":"1967-10-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1968-11-03","start":"1968-11-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003718"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1968-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1968-11-03","start":"1968-11-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1969-11-09","start":"1969-11-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003506","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003506"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003719"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1969-11-09","start":"1969-11-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1970-11-15","start":"1970-11-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003720"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1970-11-15","start":"1970-11-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-11-21","start":"1971-11-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01}}],"id":"carrier--10000000003508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003721"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":6},"sequence":1,"servicedPeriod":{"end":"1971-11-21","start":"1971-11-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1972-11-26","start":"1972-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003509","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003509"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003722"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1972-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1972-11-26","start":"1972-11-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1974-12-08","start":"1974-12-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003512","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003512"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003725"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1974-12-08","start":"1974-12-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1975-12-14","start":"1975-12-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003727"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-12-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1975-12-14","start":"1975-12-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1977-12-25","start":"1977-12-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003730"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1977-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1977-12-25","start":"1977-12-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1978-12-31","start":"1978-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34}}],"id":"carrier--10000000003520","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003520"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003733"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-01-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":46.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1978-12-31","start":"1978-12-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1980-01-06","start":"1980-01-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003523","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003523"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003736"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1980-01-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1980-01-06","start":"1980-01-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1981-01-11","start":"1981-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003525","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003525"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003738"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1981-01-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1981-01-11","start":"1981-01-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1982-01-17","start":"1982-01-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003741"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1982-01-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1982-01-17","start":"1982-01-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1983-01-23","start":"1983-01-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61}}],"id":"carrier--10000000003534","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003534"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003747"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-01-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":361.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1983-01-23","start":"1983-01-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1984-01-29","start":"1984-01-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003545","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003545"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003758"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1984-01-29","start":"1984-01-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-02-03","start":"1985-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003546","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003546"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-02-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1985-02-03","start":"1985-02-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1986-02-09","start":"1986-02-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003549","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003549"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003762"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1986-02-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1986-02-09","start":"1986-02-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-02-15","start":"1987-02-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003551","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003551"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003764"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-02-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1987-02-15","start":"1987-02-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1989-02-26","start":"1989-02-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003555","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003555"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003768"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1989-03-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1989-02-26","start":"1989-02-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1990-03-04","start":"1990-03-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003557","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003557"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003770"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-03-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1990-03-04","start":"1990-03-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-03-10","start":"1991-03-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003560","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003560"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-03-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1991-03-10","start":"1991-03-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-03-15","start":"1992-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003561","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003561"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-03-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1992-03-15","start":"1992-03-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-03-21","start":"1993-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003564","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003564"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003777"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1993-03-21","start":"1993-03-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1994-03-27","start":"1994-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003567","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003567"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-04-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1994-03-27","start":"1994-03-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1995-04-02","start":"1995-04-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003569","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003569"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003782"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-04-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1995-04-02","start":"1995-04-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-04-07","start":"1996-04-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003572","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003572"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003785"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-04-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1996-04-07","start":"1996-04-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1997-04-13","start":"1997-04-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003573","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003573"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003786"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1997-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1997-04-13","start":"1997-04-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-04-19","start":"1998-04-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003574","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003574"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003787"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-04-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1998-04-19","start":"1998-04-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-04-25","start":"1999-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003575","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003575"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003788"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-04-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1999-04-25","start":"1999-04-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-04-30","start":"2000-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003587","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003587"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003800"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2000-04-30","start":"2000-04-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2001-05-06","start":"2001-05-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003592","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003592"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003805"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-05-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2001-05-06","start":"2001-05-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-05-12","start":"2002-05-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56}}],"id":"carrier--10000000003594","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003594"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003807"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-05-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":107.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2002-05-12","start":"2002-05-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-05-18","start":"2003-05-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003603","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003603"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003816"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-05-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2003-05-18","start":"2003-05-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-05-23","start":"2004-05-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003821"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2004-05-23","start":"2004-05-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-05-29","start":"2005-05-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003616","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003616"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003829"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-06-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2005-05-29","start":"2005-05-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-06-04","start":"2006-06-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003617","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003617"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003830"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-06-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2006-06-04","start":"2006-06-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-06-10","start":"2007-06-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003628","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003628"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003841"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-06-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2007-06-10","start":"2007-06-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-06-15","start":"2008-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003631","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003631"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003844"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-06-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2008-06-15","start":"2008-06-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-06-21","start":"2009-06-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003854"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-06-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2009-06-21","start":"2009-06-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-06-27","start":"2010-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003648","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003648"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003861"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-07-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2010-06-27","start":"2010-06-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-07-03","start":"2011-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003652","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003652"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003865"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-07-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2011-07-03","start":"2011-07-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-07-08","start":"2012-07-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003658","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003658"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003871"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-07-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2012-07-08","start":"2012-07-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-07-14","start":"2013-07-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000003664","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003664"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003877"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2013-07-14","start":"2013-07-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-07-20","start":"2014-07-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18}}],"id":"carrier--10000000003668","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003668"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003881"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-25"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":342.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":23},"sequence":1,"servicedPeriod":{"end":"2014-07-20","start":"2014-07-20"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-07-26","start":"2015-07-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000003675","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003675"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003888"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2015-07-26","start":"2015-07-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7}}],"id":"carrier--10000000003683","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003683"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003896"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-08-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":310.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":16},"sequence":1,"servicedPeriod":{"end":"2016-07-31","start":"2016-07-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45}}],"id":"carrier--10000000003690","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003690"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003903"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-08-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":331.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":20},"sequence":1,"servicedPeriod":{"end":"2017-08-06","start":"2017-08-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78}}],"id":"carrier--10000000003698","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003698"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003911"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-08-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2018-08-12","start":"2018-08-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81}}],"id":"carrier--10000000003708","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003708"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003921"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":226.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2019-08-18","start":"2019-08-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29}}],"id":"carrier--10000000003719","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003719"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003932"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-08-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":312.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2020-08-23","start":"2020-08-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-11-21","start":"1971-11-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000003951","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003951"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004190"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"1","display":"Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1971-11-21","start":"1971-11-21"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-29","start":"2019-08-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999298186"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000004040","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000004040"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004281"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"3","display":"Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2019-08-29","start":"2019-08-29"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":3}]}],"billablePeriod":{"end":"2012-09-05","start":"2012-09-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999032094"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"8","display":"Ambulatory Surgery Center (ASC) or other special facility (e.g. hospice)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673143"}},"hospitalization":{"end":"2012-09-07","start":"2012-09-02"},"id":"hospice--10000000004049","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000004049"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004291"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-09-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd","display":"NCH Patient Status Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"A","display":"Discharged","system":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1420.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":3},"revenue":{"coding":[{"code":"0650","display":"Hospice services-general classification","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:50.454-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673143"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221574"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36},"type":{"coding":[{"code":"50","display":"Hospice claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HOSPICE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-07-06","start":"2016-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999429"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221302"}},"id":"pde--10000000213","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000213"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003938"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000213"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":8}}],"value":8},"sequence":1,"service":{"coding":[{"code":"65862050130","display":"Amoxicillin and Clavulanate Potassium - AMOXICILLIN; CLAVULANATE POTASSIUM","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221302"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000214","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000214"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003941"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000214"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00538081111","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000215","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000215"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003947"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000215"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"67296124906","display":"LISINOPRIL - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000216","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000216"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003950"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000216"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58118210803","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000222","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000222"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004092"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000222"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"60429021890","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000224","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000224"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004099"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000224"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016096369","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000225","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000225"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004102"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000225"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00530022352","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000226","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000226"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004105"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000226"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00105440198","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000227","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000227"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004108"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000227"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392069365","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000228","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000228"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004111"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000228"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016068430","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000229","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000229"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004112"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000229"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"60505263001","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000230","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000230"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004118"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000230"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"63187009860","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000231","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000231"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004132"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000231"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016068497","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000233","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000233"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004144"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000233"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"00552890136","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004154"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000235"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"51129110501","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000237","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000237"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004181"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000237"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"00713351032","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"1962-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1962-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":54.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"1962-04-12","start":"1962-04-12"},"id":"inpatient--10000000028431","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028431"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030874"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1962-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":134.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":134.09},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2002-04-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-04-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"packageCode":{"coding":[{"code":"393","system":"https://bluebutton.cms.gov/resources/variables/clm_drg_cd"}]}},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"2002-04-22","start":"2002-04-22"},"id":"inpatient--10000000028437","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028437"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030880"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":2}]}],"billablePeriod":{"end":"2002-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-04-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"packageCode":{"coding":[{"code":"395","system":"https://bluebutton.cms.gov/resources/variables/clm_drg_cd"}]}},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"2002-04-25","start":"2002-04-22"},"id":"inpatient--10000000028438","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028438"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030881"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Urgent - The patient required immediate attention for the care and treatment of a physical or mental disorder. Generally, the patient was admitted to the first available and suitable accommodation.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-05-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-05-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028488","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028488"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030931"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-05-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-06-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-06-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030932"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-06-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1964-09-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1964-09-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13559.92}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028493","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028493"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030936"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-09-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4519.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4519.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":5419.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13559.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":5494.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1964-09-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1964-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O020","display":"BLIGHTED OVUM AND NONHYDATIDIFORM MOLE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":815.59}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028494","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028494"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030937"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":815.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":346.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-04-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028495","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028495"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030938"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-05-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-10-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-10-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030943"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":24172.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-10-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-10-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028502","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028502"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030945"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-10-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-10-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028503","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028503"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030946"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-10-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15432.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"id":"outpatient--10000000028507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030950"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"2667"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-10-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-10-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028540","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028540"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030983"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-10-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8044.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2051.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028544","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028544"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030987"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"id":"outpatient--10000000028546","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028546"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030989"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-09-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":183.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"2667"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028549","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028549"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030992"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1963-09-13","start":"1963-09-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000028556","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028556"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030999"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1963-09-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1963-09-13","start":"1963-09-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-08-09","start":"1991-08-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000028561","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028561"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031004"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-08-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1991-08-09","start":"1991-08-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-10-15","start":"2010-10-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":843.35}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12}}],"id":"carrier--10000000028565","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028565"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031008"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":843.35},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":46.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2010-10-15","start":"2010-10-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-10-21","start":"2011-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4}}],"id":"carrier--10000000028568","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028568"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031011"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2011-10-21","start":"2011-10-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-10-26","start":"2012-10-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13}}],"id":"carrier--10000000028573","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028573"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031016"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-11-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":350.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2012-10-26","start":"2012-10-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-11-01","start":"2013-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000028576","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028576"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031019"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2013-11-01","start":"2013-11-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-11-07","start":"2014-11-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028581","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028581"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031024"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2014-11-07","start":"2014-11-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-11-13","start":"2015-11-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8}}],"id":"carrier--10000000028620","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028620"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031063"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2015-11-13","start":"2015-11-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-11-18","start":"2016-11-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000028627","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028627"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031070"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-11-25"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2016-11-18","start":"2016-11-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-11-24","start":"2017-11-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000028636","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028636"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031079"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2017-11-24","start":"2017-11-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-11-30","start":"2018-11-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031084"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-12-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2018-11-30","start":"2018-11-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-12-06","start":"2019-12-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302}}],"id":"carrier--10000000028648","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028648"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031091"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":325.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2019-12-06","start":"2019-12-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-12-11","start":"2020-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028656","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028656"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031099"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-12-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2020-12-11","start":"2020-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-05-30","start":"2015-05-30"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028726","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028726"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031170"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1724.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1724.61}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":2}]}],"billablePeriod":{"end":"2015-05-30","start":"2015-05-30"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028727","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028727"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031171"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":608.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":608.54}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":3}]}],"billablePeriod":{"end":"2015-05-31","start":"2015-05-31"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028728","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028728"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031172"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":559.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":559.07}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":4}]}],"billablePeriod":{"end":"2015-06-01","start":"2015-06-01"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028729","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028729"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031173"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":5}]}],"billablePeriod":{"end":"2015-06-02","start":"2015-06-02"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028730","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028730"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031174"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":6}]}],"billablePeriod":{"end":"2015-06-03","start":"2015-06-03"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028731","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028731"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031175"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":644.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":644.47}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":7}]}],"billablePeriod":{"end":"2015-06-04","start":"2015-06-04"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028732","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028732"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031176"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":8}]}],"billablePeriod":{"end":"2015-06-05","start":"2015-06-05"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028733","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028733"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031177"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":571.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":571.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":9}]}],"billablePeriod":{"end":"2015-06-06","start":"2015-06-06"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028734","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028734"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031178"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":10}]}],"billablePeriod":{"end":"2015-06-07","start":"2015-06-07"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028735","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028735"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031179"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":11}]}],"billablePeriod":{"end":"2015-06-08","start":"2015-06-08"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028736","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028736"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031180"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":741.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":741.14}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":12}]}],"billablePeriod":{"end":"2015-06-09","start":"2015-06-09"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028737","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028737"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031181"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":13}]}],"billablePeriod":{"end":"2015-06-10","start":"2015-06-10"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028738","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028738"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031182"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":620.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":620.87}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":14}]}],"billablePeriod":{"end":"2015-06-11","start":"2015-06-11"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028743","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028743"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031187"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":673.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":673.02}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":15}]}],"billablePeriod":{"end":"2015-06-12","start":"2015-06-12"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028748","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028748"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031193"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":552.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":552.91}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":16}]}],"billablePeriod":{"end":"2015-06-13","start":"2015-06-13"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028786","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028786"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031232"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":17}]}],"billablePeriod":{"end":"2015-06-14","start":"2015-06-14"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028788","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028788"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031235"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":18}]}],"billablePeriod":{"end":"2015-06-15","start":"2015-06-15"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028795","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028795"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031243"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":19}]}],"billablePeriod":{"end":"2015-06-16","start":"2015-06-16"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028796","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028796"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031245"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":519.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":519.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":20}]}],"billablePeriod":{"end":"2015-06-17","start":"2015-06-17"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028805","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028805"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031255"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":21}]}],"billablePeriod":{"end":"2015-06-18","start":"2015-06-18"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028810","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028810"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031261"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":370.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":370.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":22}]}],"billablePeriod":{"end":"2015-06-19","start":"2015-06-19"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028812","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028812"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031264"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":23}]}],"billablePeriod":{"end":"2015-06-20","start":"2015-06-20"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028814","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028814"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031267"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":496.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":496.5}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":24}]}],"billablePeriod":{"end":"2015-06-21","start":"2015-06-21"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028817","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028817"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031271"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":403.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":403.22}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":25}]}],"billablePeriod":{"end":"2015-06-22","start":"2015-06-22"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028819","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028819"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031274"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":26}]}],"billablePeriod":{"end":"2015-06-23","start":"2015-06-23"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028820","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028820"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031276"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":297.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":297.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":27}]}],"billablePeriod":{"end":"2015-06-24","start":"2015-06-24"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028821","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028821"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031278"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":28}]}],"billablePeriod":{"end":"2015-06-25","start":"2015-06-25"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028822","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028822"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031280"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":603.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":603.63}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":29}]}],"billablePeriod":{"end":"2015-06-26","start":"2015-06-26"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028823","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028823"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031282"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":585.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":585.11}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":30}]}],"billablePeriod":{"end":"2015-06-27","start":"2015-06-27"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028824","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028824"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031284"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":897.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":897.97}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-19","start":"2019-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999749"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220065"}},"id":"pde--10000002443","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000002443"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031105"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000002443"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":13}}],"value":13},"sequence":1,"service":{"coding":[{"code":"00615059177","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-19"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.971-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220065"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"date":"2019-08-19"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2014-06-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3382.91}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":80}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":80}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2014-06-12","start":"2014-06-12"},"id":"inpatient--10000000008799","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008799"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13531.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16968.67}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16968.67},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-06-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-06-10","start":"2020-06-09"},"id":"inpatient--10000000008810","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008810"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009519"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"procedure":[{"date":"2020-06-09T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"0HBT0ZX","display":"\"EXCISION OF RIGHT BREAST, OPEN APPROACH, DIAGNOSTIC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-06-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":688.74}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-06-20","start":"2020-06-19"},"id":"inpatient--10000000008812","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008812"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009522"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2754.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3483.71}},"procedure":[{"date":"2020-06-19T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"0HBV3ZZ","display":"\"EXCISION OF BILATERAL BREAST, PERCUTANEOUS APPROACH\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":3483.71},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-07-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-07-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-07-02","start":"2020-07-01"},"id":"inpatient--10000000008813","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008813"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009524"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.32}},"procedure":[{"date":"2020-07-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0Q705","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN CRAN CAV/BRAIN, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.32},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-07-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-07-22","start":"2020-07-21"},"id":"inpatient--10000000008814","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008814"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009531"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.1}},"procedure":[{"date":"2020-07-21T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0H805","display":"\"INTRODUCTION OF OTHER ANTINEOPLASTIC INTO LOWER GI, ENDO\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.1},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-08-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-08-11","start":"2020-08-10"},"id":"inpatient--10000000008815","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008815"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009532"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-08-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24}},"procedure":[{"date":"2020-08-10T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0F305","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN RESP TRACT, PERC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-09-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-08-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-09-01","start":"2020-08-31"},"id":"inpatient--10000000008816","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008816"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009534"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-09-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24}},"procedure":[{"date":"2020-08-31T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0G805","display":"\"INTRODUCTION OF OTHER ANTINEOPLASTIC INTO UPPER GI, ENDO\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-09-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-09-23","start":"2020-09-22"},"id":"inpatient--10000000008817","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008817"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009536"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.38}},"procedure":[{"date":"2020-09-22T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0J305","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN BIL/PANC TRACT, PERC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.38},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-10-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-10-12","start":"2020-10-11"},"id":"inpatient--10000000008818","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008818"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009539"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-10-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.17}},"procedure":[{"date":"2020-10-11T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0N704","display":"\"INTRODUCTION OF LIQUID BRACHY INTO MALE REPROD, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.17},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-11-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-11-02","start":"2020-11-01"},"id":"inpatient--10000000008819","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008819"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009541"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-11-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.37}},"procedure":[{"date":"2020-11-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0C70M","display":"\"INTRODUCTION OF MONOCLONAL ANTIBODY INTO EYE, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.37},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-11-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-11-23","start":"2020-11-22"},"id":"inpatient--10000000008820","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008820"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009543"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-11-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":595.99}},"procedure":[{"date":"2020-11-22T00:00:00-05:00","procedureCodeableConcept":{"coding":[{"code":"3E0P704","display":"\"INTRODUCTION OF LIQUID BRACHY INTO FEM REPROD, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":595.99},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1945-12-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1945-12-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008825","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008825"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009550"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1945-12-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-01-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-01-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008826","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008826"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009552"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008828","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008828"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009555"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008829","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008829"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009556"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":699.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-10-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-10-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12607.26}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008830","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008830"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009557"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-10-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12607.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":723.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-05-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59909.51}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008831","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008831"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009558"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-05-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59909.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3213.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-08-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-08-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008832","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008832"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009559"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-08-23"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-10-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-10-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008836","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008836"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009564"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-11-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-02-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008838","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008838"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009567"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-02-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":208.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":132.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008839","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008839"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009575"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1005.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":331.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-09-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-09-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008842","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008842"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009578"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008843","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008843"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009579"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10051.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R5081","display":"FEVER PRESENTING WITH CONDITIONS CLASSIFIED ELSEWHERE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008849","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008849"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009585"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008850","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008850"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009586"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11580.55},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2935.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-06-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008852","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008852"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009589"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-11-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008862","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008862"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009601"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-12-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":189.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008863","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008863"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009603"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-06-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-06-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008865","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008865"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009606"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-06-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-04-17","start":"1993-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000008874","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008874"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009618"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-04-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1993-04-17","start":"1993-04-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-06-25","start":"2011-06-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000008875","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008875"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009620"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-07-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2011-06-25","start":"2011-06-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-06-30","start":"2012-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000008876","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008876"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009622"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-07-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":16},"sequence":1,"servicedPeriod":{"end":"2012-06-30","start":"2012-06-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-07-06","start":"2013-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000008878","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008878"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009625"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2013-07-06","start":"2013-07-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-07-12","start":"2014-07-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008882","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008882"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009631"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2014-07-12","start":"2014-07-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-07-18","start":"2015-07-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008912","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008912"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009666"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":10},"sequence":1,"servicedPeriod":{"end":"2015-07-18","start":"2015-07-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-07-23","start":"2016-07-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6}}],"id":"carrier--10000000008932","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008932"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009686"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2016-07-23","start":"2016-07-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-07-29","start":"2017-07-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3}}],"id":"carrier--10000000008934","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008934"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009688"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-08-04"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2017-07-29","start":"2017-07-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-08-04","start":"2018-08-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008935","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008935"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009689"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-08-10"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2018-08-04","start":"2018-08-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-10","start":"2019-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18}}],"id":"carrier--10000000008941","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008941"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009695"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":243.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2019-08-10","start":"2019-08-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-03-27","start":"2021-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25}}],"id":"carrier--10000000008964","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008964"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009718"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-04-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":349.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-03-27","start":"2021-03-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999686688"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000009092","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000009092"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009874"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"6","display":"Institutional providers and independent laboratories for whom the carrier's own ID number is shown.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1965-07-03","start":"1965-07-03"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-06-12","start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999686688"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000009110","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000009110"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009892"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3382.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"A","display":"Used durable medical equipment (DME)","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"8","display":"Other entities for whom employer identification (EI) numbers are used in coding the ID field or proprietorship for whom EI numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0110","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2014-06-12","start":"2014-06-12"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-02-03","start":"2014-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000754","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000754"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009729"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000754"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":159}}],"value":636},"sequence":1,"service":{"coding":[{"code":"00045049610","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-02-03"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-02-03"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-03-22","start":"2014-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000755","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000755"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009730"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000755"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":2702}}],"value":10808},"sequence":1,"service":{"coding":[{"code":"76519108104","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-03-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-03-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-06-12","start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000756","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000756"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009733"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000756"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":124.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":98}}],"value":98},"sequence":1,"service":{"coding":[{"code":"12843014357","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-06-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-06-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-07-12","start":"2014-07-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000757","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000757"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009737"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000757"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":164.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800496","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-07-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-07-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2015-07-18","start":"2015-07-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000758","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000758"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009741"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000758"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0008"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00551541918","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2015-07-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2015-07-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-23","start":"2016-07-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000759","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000759"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009745"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800600","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2016-07-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-07-29","start":"2017-07-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000761","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000761"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009747"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000761"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800458","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-07-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2017-07-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-04","start":"2018-08-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000763","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000763"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009749"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000763"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00045049780","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-04"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2018-08-04"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-10","start":"2019-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000765","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000765"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009751"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000765"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":595}}],"value":2380},"sequence":1,"service":{"coding":[{"code":"50580049660","display":"TYLENOL - ACETAMINOPHEN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2019-08-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-07-01","start":"2020-07-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000767","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000767"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009753"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000767"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"63323015100","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-07-01"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-07-01"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-07-21","start":"2020-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000772","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000772"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009852"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000772"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-07-21"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-07-21"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-10","start":"2020-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000773","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000773"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009854"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-08-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-31","start":"2020-08-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000774","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000774"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009856"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-08-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-09-22","start":"2020-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000775","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000775"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009857"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000775"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":200},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"10518010411","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-09-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-09-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-10-11","start":"2020-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000776","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000776"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009860"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000776"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":240},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00674570358","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-10-11"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-10-11"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-01","start":"2020-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000777","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000777"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009862"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000777"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":280},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"15210040429","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-01"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-01"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-22","start":"2020-11-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000778","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000778"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009864"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000778"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"25021020351","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-26","start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000779","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000779"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009865"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000779"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":360},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":3650}}],"value":3650},"sequence":1,"service":{"coding":[{"code":"54569038232","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-26"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-26"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-26","start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000780","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000780"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009867"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":159.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":439.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":79.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":239.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00000024815","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-26"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-26"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2021-03-27","start":"2021-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000781","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000781"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009870"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000781"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":140}}],"value":560},"sequence":1,"service":{"coding":[{"code":"50580050150","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2021-03-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2021-03-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"1995-05-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1995-05-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"1995-05-22","start":"1995-05-21"},"id":"inpatient--10000000019206","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019206"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020704"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-05-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2012-06-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":39.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2012-06-06","start":"2012-06-05"},"id":"inpatient--10000000019223","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019223"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020721"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":235.49}},"procedure":[{"date":"2012-06-05T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":235.49},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2013-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2013-06-28","start":"2013-06-27"},"id":"inpatient--10000000019229","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019229"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020727"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":230.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.15}},"procedure":[{"date":"2013-06-27T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.15},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-06-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2014-06-17","start":"2014-06-16"},"id":"inpatient--10000000019234","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019234"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020732"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":239.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":339.7}},"procedure":[{"date":"2014-06-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":339.7},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-06-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2015-06-08","start":"2015-06-07"},"id":"inpatient--10000000019239","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019239"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020737"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":182.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":268.18}},"procedure":[{"date":"2015-06-07T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":268.18},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2016-05-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":50.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2016-05-17","start":"2016-05-16"},"id":"inpatient--10000000019247","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019247"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020745"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":201.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.38}},"procedure":[{"date":"2016-05-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.38},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2017-04-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2017-04-13","start":"2017-04-12"},"id":"inpatient--10000000019255","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019255"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020753"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":180.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":265.64}},"procedure":[{"date":"2017-04-12T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":265.64},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":50.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2018-03-17","start":"2018-03-16"},"id":"inpatient--10000000019261","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019261"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":203.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":294.77}},"procedure":[{"date":"2018-03-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":294.77},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2019-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2019-03-23","start":"2019-03-22"},"id":"inpatient--10000000019268","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019268"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020766"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":165.72},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":247.15}},"procedure":[{"date":"2019-03-22T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":247.15},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":44.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2020-03-16","start":"2020-03-15"},"id":"inpatient--10000000019275","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019275"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.92}},"procedure":[{"date":"2020-03-15T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.92},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2021-03-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3155.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2021-03-12","start":"2021-03-12"},"id":"inpatient--10000000019281","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019281"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020779"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12620.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15856}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":15856},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2021-03-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":51.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2021-03-18","start":"2021-03-17"},"id":"inpatient--10000000019284","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019284"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020782"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":207.88},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.85}},"procedure":[{"date":"2021-03-17T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.85},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-07-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019292","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019292"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020790"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-07-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-08-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019294","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019294"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020792"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-09-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-02-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-02-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019296","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019296"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020794"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-02-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-07-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-07-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019306","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019306"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020804"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-07-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-05-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019322","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019322"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020820"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-05-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-12-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-12-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019323","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019323"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020821"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-12-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-06-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019328","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019328"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020826"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-06-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019330","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019330"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020828"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9001.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019332","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019332"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020830"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019333","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019333"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020831"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019339","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019339"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020837"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8788.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019342","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019342"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020840"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019344","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019344"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020842"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10568.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2682.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019346","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019346"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020844"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019361","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019361"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020859"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019389","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019389"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020887"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6654.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019397","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019397"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020895"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-05-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019403","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019403"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020901"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-05-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019408","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019408"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020906"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8934.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019412","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019412"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020910"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019417","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019417"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020915"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019425","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019425"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020923"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11626.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019433","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019433"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020933"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-06-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019472","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019472"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020974"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019481","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019481"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020983"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6432.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1648.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019484","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019484"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020986"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-07-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019491","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019491"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020994"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J0390","display":"\"ACUTE TONSILLITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019493","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019493"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020997"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021018"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-29"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8849.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019569","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019569"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021073"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J069","display":"\"ACUTE UPPER RESPIRATORY INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019577","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019577"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021081"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.53},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"U071","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019580","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019580"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021084"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019592","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019592"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021096"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10320.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2620.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019596","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019596"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021100"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019604","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019604"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021108"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021113"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10501.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2665.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019610","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019610"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021116"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-07-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-08-26","start":"1973-08-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019624","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019624"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021136"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-08-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1973-08-26","start":"1973-08-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1979-09-02","start":"1979-09-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019625","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019625"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021139"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-09-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1979-09-02","start":"1979-09-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-06-23","start":"1985-06-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9}}],"id":"carrier--10000000019626","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019626"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021140"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-06-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":146.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1985-06-23","start":"1985-06-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-06-28","start":"1987-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019627","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019627"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021142"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-07-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1987-06-28","start":"1987-06-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-07-07","start":"1991-07-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019628","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019628"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021145"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-07-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1991-07-07","start":"1991-07-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-07-11","start":"1993-07-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019629","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019629"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021147"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-07-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1993-07-11","start":"1993-07-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-03-03","start":"1996-03-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019631","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019631"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021150"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-03-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1996-03-03","start":"1996-03-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-03-21","start":"1999-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019632","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019632"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021152"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1999-03-21","start":"1999-03-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-03-26","start":"2000-03-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019633","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019633"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021154"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-03-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2000-03-26","start":"2000-03-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-04-13","start":"2003-04-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019634","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019634"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021157"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2003-04-13","start":"2003-04-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-04-18","start":"2004-04-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019635","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019635"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021160"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-04-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2004-04-18","start":"2004-04-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-04-24","start":"2005-04-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019636","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019636"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021163"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2005-04-24","start":"2005-04-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-04-30","start":"2006-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019637","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019637"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021168"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2006-04-30","start":"2006-04-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-05-17","start":"2009-05-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019640","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019640"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021173"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-05-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2009-05-17","start":"2009-05-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-05-23","start":"2010-05-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021176"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2010-05-23","start":"2010-05-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} diff --git a/pom.xml b/pom.xml index 94278dcb3..19ce53c24 100644 --- a/pom.xml +++ b/pom.xml @@ -36,6 +36,8 @@ 1.18.3 8.15.0 42.7.4 + 1.27.1 + 2.18.0 2.4.4 @@ -47,7 +49,7 @@ 1.12.10 2.4.1 1.2.10 - 1.3.4 + 2.0.1-SNAPSHOT 1.9.7 1.2.5 1.2.4 diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java index 1991f070d..17ba29ece 100644 --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java @@ -7,6 +7,7 @@ import gov.cms.ab2d.aggregator.FileOutputType; import gov.cms.ab2d.aggregator.FileUtils; import gov.cms.ab2d.aggregator.JobHelper; +import gov.cms.ab2d.common.util.GzipCompressUtils; import gov.cms.ab2d.contracts.model.ContractDTO; import gov.cms.ab2d.coverage.model.CoveragePagingRequest; import gov.cms.ab2d.coverage.model.CoveragePagingResult; @@ -34,6 +35,7 @@ import java.util.concurrent.Future; import lombok.extern.slf4j.Slf4j; +import lombok.val; import org.apache.commons.lang3.exception.ExceptionUtils; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; @@ -41,8 +43,9 @@ import org.springframework.stereotype.Service; -import static gov.cms.ab2d.aggregator.FileOutputType.DATA; +import static gov.cms.ab2d.aggregator.FileOutputType.DATA_COMPRESSED; import static gov.cms.ab2d.aggregator.FileOutputType.ERROR; +import static gov.cms.ab2d.aggregator.FileOutputType.ERROR_COMPRESSED; import static gov.cms.ab2d.common.util.Constants.CONTRACT_LOG; import static gov.cms.ab2d.fhir.BundleUtils.EOB; import static net.logstash.logback.argument.StructuredArguments.keyValue; @@ -168,10 +171,17 @@ public List process(Job job) { Thread.sleep(1000); } + // Compress job output files (DATA and ERROR) + GzipCompressUtils.compressJobOutputFiles( + job.getJobUuid(), + searchConfig.getEfsMount(), + this::shouldCompressFile + ); + // Retrieve all the job output info - jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA)); - jobOutputs.addAll(getOutputs(job.getJobUuid(), ERROR)); log.info("Number of outputs: " + jobOutputs.size()); + jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA_COMPRESSED)); + jobOutputs.addAll(getOutputs(job.getJobUuid(), ERROR_COMPRESSED)); } catch (InterruptedException | IOException ex) { log.error("interrupted while processing job for contract"); @@ -180,6 +190,11 @@ public List process(Job job) { return jobOutputs; } + private boolean shouldCompressFile(File file) { + val type = FileOutputType.getFileType(file); + return type == FileOutputType.DATA || type == FileOutputType.ERROR; + } + /** * Look through the job output file and create JobOutput objects with them * diff --git a/worker/src/test/java/gov/cms/ab2d/worker/processor/ContractProcessorInvalidPatientTest.java b/worker/src/test/java/gov/cms/ab2d/worker/processor/ContractProcessorInvalidPatientTest.java index 9419a8843..fad593b16 100644 --- a/worker/src/test/java/gov/cms/ab2d/worker/processor/ContractProcessorInvalidPatientTest.java +++ b/worker/src/test/java/gov/cms/ab2d/worker/processor/ContractProcessorInvalidPatientTest.java @@ -1,6 +1,7 @@ package gov.cms.ab2d.worker.processor; import gov.cms.ab2d.bfd.client.BFDClient; +import gov.cms.ab2d.common.util.GzipCompressUtils; import gov.cms.ab2d.contracts.model.ContractDTO; import gov.cms.ab2d.coverage.model.ContractForCoverageDTO; import gov.cms.ab2d.coverage.model.CoveragePagingRequest; @@ -20,13 +21,17 @@ import gov.cms.ab2d.worker.service.JobChannelService; import gov.cms.ab2d.worker.service.JobChannelStubServiceImpl; import gov.cms.ab2d.worker.util.ContractWorkerClientMock; + +import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; -import java.nio.file.Files; +import java.nio.charset.Charset; import java.nio.file.Path; import java.time.OffsetDateTime; import java.util.Date; import java.util.List; + +import lombok.val; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -136,11 +141,20 @@ void testInvalidBenes() throws IOException { assertNotNull(outputs); assertEquals(1, outputs.size()); - String fileName1 = contractId + "_0001.ndjson"; + String fileName1AfterCompressing = contractId + "_0001.ndjson.gz"; String output1 = outputs.get(0).getFilePath(); - - assertTrue(output1.equalsIgnoreCase(fileName1)); - String actual1 = Files.readString(Path.of(tmpDirFolder.getAbsolutePath() + File.separator + job.getJobUuid() + "/" + output1)); + assertTrue(output1.equalsIgnoreCase(fileName1AfterCompressing)); + + // verify original output file is deleted after compressing + String fileName1BeforeCompressing = contractId + "_0001.ndjson"; + val originalOutputFile = new File(tmpDirFolder.getAbsolutePath() + File.separator + job.getJobUuid() + "/" + fileName1BeforeCompressing); + assertFalse(originalOutputFile.exists()); + + // decompress output file and write decompressed contents to `outputFileDecompressed` + val outputFileCompressed = Path.of(tmpDirFolder.getAbsolutePath() + File.separator + job.getJobUuid() + "/" + output1); + val outputFileDecompressedStream = new ByteArrayOutputStream(); + GzipCompressUtils.decompress(outputFileCompressed, outputFileDecompressedStream); + String actual1 = outputFileDecompressedStream.toString(Charset.defaultCharset()); assertTrue(actual1.contains("Patient/1") && actual1.contains("Patient/2")); assertFalse(actual1.contains("Patient/3") || actual1.contains("Patient/4")); From 82cd1b531bff598920d44321c84c929ae896822a Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Mon, 13 Jan 2025 10:46:15 -0700 Subject: [PATCH 02/23] Update gitignore to allow test gzip file to be committed, fix formatting in test --- .gitignore | 3 +++ .../common/util/GzipCompressUtilsTest.java | 4 ++-- .../test/resources/test-data/EOB-500.ndjson.gz | Bin 0 -> 103412 bytes 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 common/src/test/resources/test-data/EOB-500.ndjson.gz diff --git a/.gitignore b/.gitignore index c033a56b2..3fcdbd73c 100644 --- a/.gitignore +++ b/.gitignore @@ -85,6 +85,9 @@ build/ *.tar *.tgz +### Include compressed file for testing GzipCompressUtils +!EOB-500.ndjson.gz + ### Eclipse .checkstyle diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java index 5df219410..edce5aa49 100644 --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -35,8 +35,8 @@ void testCompressFile() throws Exception { output that differs from {@link GzipCompressUtils#compress}, however both outputs are valid. assertTrue( - FileUtils.contentEquals(output.toFile(), - COMPRESSED_FILE.toFile()) + FileUtils.contentEquals(output.toFile(), + COMPRESSED_FILE.toFile()) ); Instead, decompress the `outputCompressed` file and assert it matches {@link UNCOMPRESSED_FILE} diff --git a/common/src/test/resources/test-data/EOB-500.ndjson.gz b/common/src/test/resources/test-data/EOB-500.ndjson.gz new file mode 100644 index 0000000000000000000000000000000000000000..99f8664c09ddffbd4dfc204268c689de6f83e30d GIT binary patch literal 103412 zcmZ^~1yo#1(=Lod0>Le~LxQ_of@^@_?(S}b2G?N0ErAf+-9314cXtLGWab}o&i8)r zUH8AM)|zyeb@$V?dz0Q(*jOCQY+M~3U`|%;J(pxU&Y$<^ zODC_Ak_;G&+`|(dgs9M0jpIxo35$I#??$hv^7>A?yO6SSPHOks4b|a{Lmjc+m(ciI zj%6Iu#U+AOWz}yUe_li4Izp2!j;%lyqG!rTn^UX-;LbwvfVY6m@c@!%DzLWziDE~& zNDg{`F8OL$?^K?sh>tH93A4p^$9;8SeCb3ChH*e!8@p1`dapM`mjPgLXb zlvZm90D~-6Y!vp_0bn1_3`iUJY=&HK;$UkZFIm_Lyz_>mP+L5DKqw5w2JU& z^62Akv-E`&&nceB%3KIrMUi~98vWJ&`Cg6CfbXSdAF}6^q1?%Gv@TVn&kZlnLe{^rHB8T$jzt8o3x#{hQ7Gf(d-d5mKv{q*q7s>_q;$nf?ffa5IQA$GPqD|}$l z&BRY9ZlDly$SS>+JJJrk69oSOoS(QFw30-`LoRO*My!NVb^Wo%rKj^(o}H+`=R-X9 zzy-HBdtE!Z`$}^L@R=Jn-mZg)k{V9+^gP6$U|do>Y|9gH9^L6x!*WyfN2x%yGpd1~ zXNT@gKc2o5wC++#Faq{#u1`yKrLm#G7*t>AjJ1|%&yM!d|9voZUI8GRt z;TLXBct&pz+tG9!o=*7*0JgG@Sn&%bullT{$s=<)S+-aMHoxMZX0Dw4SU5RoEeL5x z=|7X2*VN5f2tWV*;1o%YRsd-d-)OH2s0AHp=*?madR0G+elxH4jT8FTs{&azdoM@e z|Gc-}*Npd@bHnUCz^%d0j}c;#3AiH6@@qLFJZG7hP!e&gY!TjmE{=0{cgQmIKhPs; zj~7ksVB&G4i{Hml9g9NKO?{D(onDWIvBpw90k%4%;--u&vt zkK4-!zI^NtsHX2ka>Ad#G=)C71F0Y8)0+w+KH5Lgg1v59d-AKZqyjuR^+%<)ET;K( zIBFMTwyjuq#)X~9B9@Qs_VHQnOep~_Bt*x8Pje2;jt}x5pCG4h)wr$P=$&`{ab=DE z?S>FrV>Ab;O-)m_cDznk8i0`iFJ1n^aODq%6Ay!G^YKkoUYS?w{yQwP9VeIAe|d9Ih^!P;_ezPnD8JI)geI+s4g2(5(-Jdag} zWXB4EC|LMbaSG>!A7_%%vPT;x6jg*KmRCD~o}|^rb2_ ziD%p)9&guwi73%;#+S$S7q2~@j)wg z{+h{w(;j=gJN9(ugFjvwUUr*ng)S>qsIrP4HAO-Rm3tcDQQu9apMZfhsq0U*iGOMr5 zIThLy*rM#RkM~)7GT;@f8nSNk=<0DHF%;22e7&~Yl;>xG<@ze#UpX1{y4b(NzQt$HA2OgVkxu-fxOEM1TUK?Jr?u=N{b4mC}k>2-emjGH1yD{5?uI zelG4bU;vuBKBSYc^!qtM#^TAA4X*FVg!}l(^zXWk&d&Btf!^tc{2HW*i)PJDV1ZmF zhp>4_`_ttH_LUMi*_j<%)Z*#ALqXveK2QwAcb*`v`(RLAPh#cf#tq1Q$2%fwIda_E zFG`la*P0oV8htpwT-Di>8GhwJ2ao|U(C11g?K()m1J>Snu(jvBsU!#xPA$vHA|`mA znml;s)C_-)(D#8}64@f)n@qDHgMn<_mvN7W2Qk+}tP9}uhv(0Jv7Js^~q@pXw(p3vO)w^B=jCwM@uWWT@ z@}GiWjTfpCIZ7GE4!bq05Q&zsI4nhpEHr1kJe1~K>fn}lxQ+ej6P@U--1NH%k!CM^ z@TMEU8hkF#55A9YjCz!w;)xnN#ef_uX;@4zo~=vS(cXN!ux}XjBLk$JSpb9yI^Bio zodYIWd(Ss_l-%Sbb+M(NRB!K>8pB&MB^3LN6X>su&8u|)BMw?|HAfO+r+{0~@auBx zrK7Kf=0Akoizh>5ALvKic(O^P$7EJ+XYu5@4ldnp&QCW#J!MOBja2Djz}fSkK+en8 zRy2q+D;w@2$zrVO&WlS6J6fhloTlPYK}PrQ?{;|fZg=-$9;0`Q(+S1D97n!6Ubv1g zpG(<&+Vbh-Di1qs9xQr{w*LLRe5P#Po#A1jH%FbdD!=n^`v?q?FMJ{{U0Y!d&lzqw z6)-3~l+2_o#tJJ4Z~v+|tkSWom%hh36)^9<_<&mZ`eFUqSO5abg`}StXEn514wygs z-#s;s-1di041g*JhQpQ4k6;dHFs>P~mJDjYu7?-6udORb>4OiM~ROz>*ZS{V7$vn?DUg+30-Gh(2 zYj;}=dAIgOA2__ReOnWL+WSgI`rtW>kf3?e)8{A!?Ura9yJ$!6-kh4yJ^HZD$UW^m z!{N7oQvLmyxttl_9-XVvzU?zRk%MNaEqa;sqkP?mNI@OTbN@7_Y%^1_)0$J81=Wjq z`170NqAEyYmWp4E$?%cPT3h|oC;ceAHyC@-i)L73F5?F87j4+w-m+Ls51Z5ttPA8? z{#xEY5?U^Hx6xzT&>lB0iQ!XQ85OgXEUcYlwWu|27}d$E5w1}y%*{ATcD`OTSjxqI%sY#?p>TsVgP&E)TQ zNIKqwss47Ec;OnC25{x?5zEoFZP>%j`*RFcs%=WQVAp>kucK=#zPU&8gYSS{C+lkL z8b$3uERwsQs|j@6^nffOLfL_iUA!B_7jN#1T+a~yDsnLsK)V`VTNwXz9diHG_{R^_ zpwWLL^PD7et@>1xxWoPy8#;onsjA^t+nBv$PQ~taI(!l&ROndY5g+@YIv5iR z1=Wh1UFEJd6GM&0{@^^XTwH{fedzmK^Q8-_!0i+ z<6-_a*TkTT50sNrwEF?tH4wxKo0{IM>pd{OzOu_l5e_B$pzO@pyT1v%0(v_)X;Wtt z@EY2Y@vw?!(x;{H#Z`EzH+Wwfm;kH1tC4L%W26|jn?T9^t2*B)|8>xUJv{I#$h(ku}D@-mFB7`?D z8Up)YBEG!P$FT4RAwW7M6+>SQvZZ@6=tlTNw0^=fcj_^Ywq~fG$ zCm3n9NPx>KvjG`83uFeC|C&QycQ1AI>;fhq3JFsHR!~Tn_=eHIjjr++O5}R}^Y;wM zv$r4KS0bx7s@zlfVT$~0N#8`i3;}_<75lWQ#hR?UP(C0S=LApI#AhF&_RJbkp07U2I&V4{Xr?+U6{> z&E80Mg&Oq;5m}V5Z~AZ$sobmT)+QU2Vt$GEAVFDxsq(F&Xep{E55Is-443LP)(hKs zS0cZml5I{C=fUa&7v(WlDmM0SUloxAwok8Kk>bcS1&5|KYqOEcpwJ*-!@UX$75hMu z-|*uXA(a{Phw^9?@=%N(Wc5iJa*>}C-kRbfL%K2b_PLYYN7LeSluRw@`A8}u{H5ZZ zVK$S}Zwip66&H%tLQ=JnxtkW{XDDnixg&@q-e^d_xuV;iS+(7vaKYr)65wALJyje~ z{Nc#q;g#gfgj_Cz-jEP7B>q<%K_Y>E1V$IXrtrZO{%PGj8FJ9wvxorg3}wb}I~M+h z8&f=jLIU$I`aSIk`Rb_RR+RtQ3YXwd%kIea{UL3AghD7}OtfUz=Ii_fLJS?Ulw@|z z8{OPwb<{!!LCD=98{!ufUYJm&8GcR#bU5Uokc?DRXmI%5a1lCv$^=#fJ0+MSLsy(9 z4vpnc?ws(@Q1;elXJtfsQ&d{gU^N-Xmn~HND+X!1{huiRN0Fas=FYtTr#KXXsw^9} zMp|V5AM)r8IzPMXiQK5T4+@~L{gu7|G{es&0mV+`Wo&4dDN8=@uQ+y@{$Bw9qwd7Y zeK7Okjlh3w%d&`O9?bi@y7g=jNf6NIkkNnt*@H*ceZQIK2!}lHG#R^*2M-mzEDaj$ z6i%P+8WDp3u3T{hkqiL?zk;p{3d5RunKv;aCL9WED9i^K%0Nsp6bb}r9HZ!aM^@AR z_{BjHbB7J(={fESPS+)+O^@$N7T@{a)%e>y%?Ur2KR$Y&A3YT|?dZGvNgxKkE6no+r?L;mYmSt> zIe$xgBFVWIhn%&|XPaCc6uwB5+~`|yRwK`5_-7CsoHHEDJ1UPF7al=Vwoj3t3x|&V{*Y6Jsw8FC{F9 z>(7U+_?AYc4m(LVQQK-4kWR%}4HDFuQb-dtTMc%7{zaN;HCXRqCuOU>WF=iky@Yid z;UOVdKwmULO6l?B-h){z$0(GXFp*dTSD zDf(o!HtN9wf&d(8P@I@_9`z*F!B4rtO%mrgKItq|Rr24DpGC%}G>%C8v$mJ`eG*;k zoL(f<<5>Fp*7k*CW8+_bMHvKOT5w0`*dwu*b94O9E|4eHt|IE~X znf~vDKCh1cXL>JZj=-P>bC&6g>OW?DgIn3ArJG2f28AC7M4(WhxHHkZU&mb)#O0_S z4V9Lf9vw)_3-IK}eUko3{Z}3;Kt{GLN&OKDbM=$t3(8Y*@4tn&?3PVJq3+L4@ClUu zqKJEe;)Nje%fTX0y32HYW2%zU>l!vbaL{e~_FZ?OA?n2eJQ=hv-9^2Db)hBXHRE9{ zje7R&TqRVnhm>)G^trIDsjxCx@Cxbpn;;UFr`u-S%jU0OouPP!3La&-YK#iB0D3(y z;#vr>ff3$)LaFjTMr7>qzs^zfq$f?u-qg+6=5Dle!H=c(0|nOed-iYZ<k zBmb|3^i1J6i1n|JnYP3i-<3J&ABAmP*Yct5wq>2(u*iSC)2ha|tq?&?KbMi219nMt zuSOWl$asDKk#noXr*@XUW*ryE70JmxC4t|5x@x@DZoIpsxE<>DIy2JC=&mSw@^c20 z*9d>F^nN|#ZS7-m#WN)Wa+_sm5p0h>Gk-jKx~jeGSZ>9J05Dfq0(vuwa!DwkmO$;U z)_M`lSo(!$i;e^2tECtN!=S~-GxfWtGRv&22H*DCw=4Xo?%?~$=9BO1dwbyJr|uX^q=S~+h3sKa%Ub37m=6Wpk5Nw2xOj={HQ@XOV)xX$v_;PJD=gkyG2nfb$* z^^e7@o#)M+r)fv>KaN4UdwQ-(iW`mNm*)F*{Eaix*+E+fh0()_m?#o)I8!03)IO=GnRO)el6o{IVvQ?9NjDx8WH4=axFQ%nP#;_3-+(yP=#a$MN z{MsuI`XdJt3py#-1B!{O9l|3rlQEz)7QMGm`d9i_k# z?Pt~d+lO?1{3F1_c8D;{YF9yl$;kpMrceAgzn$09nm4f|UkkP(h}X@#F8%v$R&@HXIMW zF=wEG8pN@(E}AU7NKogFSEVj@-7j{Tv>+J*)lh$JR2^A}$1jGn9V@T>H1{;)yxk_M z8$}c*s{6AyJh;;1iq`>LTfH>JS-z#U8?F9!OH)yOx;~4yI?U5?x|_d37~cS000biY z>BS?NC`^utxi|FTuTMX|az!uIo%=lnHmxV#nw}MAm9yr+e5IWkIkWOzRCy(%C4J@6 zBcQZxK`Zr`Bv7Hi@Li>V%M*99$!UGe_SW9u2Xr94DC?O;?d5^7ps*9?pYzWFm!}>z zeiq70!z3Cj-#Qe{uKhQJJ%R0SN#Z41*oiSXsSU>RjJ?CzD-XoX9kz5j=AE*78x?qQ z8~MLSvo?+xHxP0qW%Mu4lPg1hp9yi!Gsr*XJs~;!%V57}9E$!F>8L96(+>3mo`X+j zf#3njZt|vO=@&Cbt(#->9{NghPUrAed}`3JlB!RQKz6L!<#c8QYfkLS3V!TtVOY(y z`%jO>Y_7!BBd`g#=0(BD1E`ymeNkOCUnR$JNbes*)tO*CN zSRyel<4TB>pyEg^%*<(aM9uT+L`1Act+1SPKx<;gYTWU2LtU(=FHOH;uIh5ZIqcpv zZh^xG(R_$4CDZ`(TsXnE2A5TLE>5(6QE~KV`mfQ*6EnKJ7_pq~HRGbZo zm^$?1>3a2XN!C-h3<5l{?MK~mTqj&Db=`Tagq0?L;i%swXLk% zQ%1m#CdJYrjaTu~SA)9<(7QvcA!o?*Dh}v5AhI02FcNgLzJ~rM270yn?mgcc(@{-C z0MnDEVN6${zhPT@?qh)MHGOZne>#A>53JnBs%JkQuo|hK9fchUSpzf^kI469Y|9%y z%|2T`cxE0qiK0{%8#d~E9EcUy!=ziU7=#}#%Sqo}9oAwMY-a>D-4A+H&WnI9O6Hqe zd@jO9nHu)jRe%AZOj@ne^wCaW{jAR3_TDy4wU9m5ibbpXjJugUG1RK`QU&rc(YHSv zzY>H^A3ki6jZG^QC2i*)&;S;H5BE6}j_m;2Q(|o>GuB+Vw1)Ot+R`h)Dh>JWb=7QZ zZIFd#zVqkr9BHD~h6WyjX+K`?PLQMST4EIBXPW^Uj!GjKuhPhmOZOj)n8A(r#gR=? zZw5SjC$-d9wHlMZ{JH@5JGJAD*)0v<5(daLDg8?Zk4~%8+OA$3;0f54c+w#FHR@JMF=SB&&o>j8_Z)L$>5qkEzQSbqWjqqC;jQ zN4Qm%s>cA2sWaH7Y}l#@0;cEBC9Lp5le!`Qdpr<%2X)Lqks>%0j)B4Z?~0 zn}vB&H>kpY(@omd4Z&8M%ieM3u-umW*3H-cV~3gRCo|s|Q5pk!D6QWylN(H0A(@?+ zourH`zyl|Tw8p4U;+##Vc(~m9 zSK^1BhMu-$i>k}4m>0)4=|>M}tTwG;5Orj5H47yAu9(uhPCz~=UHmT@jBh-H@+z~s zAD>C+h6RUxhrfC{3NNNxC0vHnoWGFJg3^J(%HzDG8Ym0)f9WwA z_7S=p+VHnt4POJZ1KSl~TbYSM?0lzA=^YYu$+4?&{-t>lBTp!xy3iAqzCnLSVBeB?Z8uJH?m%EGyZ;FkcI-~3EvQ0dv$ah97@@qdzNZbc{I z-f4Qp2tkW&LWSer`&aX?=H>A#q$};J{@D&a`v1^8G!irDD$QAotor+onRzR{^!<{0 zyxRMH7q`9qZ`Ro6qUjA-0a4jr*1#6U<{Ln*zAe&Kj`?L!g~m>53RXmh4mL6BjT3lISDtWRW~Mg#H===%=ao9 zs<|PN_PF=l^z1`t{%T%rVlPcpZy)g_12@{Jy`lS|#Z{^5|0J+U71%FM^N*1~r90){&vikC+Q6bIKe2}NWa+V`LsiN!!fSi7ePrxFDKVsImY1bB#94q)xct~r((7m zhCh%*4E+m5cu_?uO5KjDBg;7DT?Sq+$e!CeZ=)OjmgxKrysc^8Qh`j=u-Hso&~ zkL-Rtjph#%!9kzPPvJgl;qDNU!$3DN0SeLtbQ$FD@P9TX4=?*9ezm9`{zD){}x7sIvMC^|Y=@B!|V~bKDOf6^Z z#Uw>WjpY3h3)mho_ z#k2^-xFeH>2laLtZ?HKL@}ZGPDUycOhWC1j+%XsTE+}YhLD{sfgylaE>%X3|gE67H z4DL_yy^}j)|6`FqVtjAVyID^TnlGaW-`v|{)BAy5_@x)6ae%hr3)D3(S^tY}NeDR! z5;{E8!;q11jQamI?tsX#u~6<~>a?*P9iuZLU(8p2G|`Nux}^WVabpDd(AF`Ca#GQ$ zOPNcPdWXJSAo8QJ@`i7|b0>sFe_6NJ%W^hV(4a#m3f#Zz?A7u_b0XB?;wF*OCk^ZI zi1^=CBcT_Xpl^d#8ne(%Ikh99g5(k7p*vXZtJsm{Q)eJ0)Q8H^J$ZQkaL_+cxjPX) zR6v*VGo=@$tc^s3!1Mxo?bQ#Yq7%x;VNxqcY)ZIhI@Aacki)SD68;#61QBMCpg=|N5wLv>*d`YyUxRHlF#DWbLI~qj zBQ{~#drqArG5TOkaC7=$pe7|rdG4?#dPcdjqn=RpS{aq$T>{WzXXiP}>g%$X{tGy;dxzDN7CMy$~!R%dxw7rC5 zKTo}fk=_QN48WKsFTn(|bMa#up|K$m!pEr43}6b!NMRbWyHsjZ;`VX^eS{;Q=u&V) z=9Btxsfp6~=%9nDcoD+)2bz4313`nRdXU0s95Sw|y6JiXfM~m$wdr2@JbjHU$1<@PBbqq3PSWp+TH2qlieHKbGC$ zEeR!LrjTk9X0d+Rk}sC*P(`Vu9b~947^u0Iuq^+?|6u;Y;0h*uY|GgJZ8T`0MkjiEFi)jfkfFg_z8SY>Es8GVxQ|&ivN?!xUqJjvO5(xS**S}+$3>~v# zZUgj8s;Q7L3-6hbpz1Q&PcK{i;spPc?I;iapUywQ@$+4u)#)Z%&V>KSAsbIp%1h)A zlZ25g+W-CI;w93P1;B&GRxT8OpK@rte+r+vE|)?LPxKv&awc?eaHMli=}7Oh-(q_S zs__2~;r~3gd88Er2Tfy0CDlZ zWQ|mmy#T_FDQT> z5-g@2ea2pc67+hlzROH$42HpX!EV4f1v2seQo^PvRUE;G{dNa}T<|DZKnxrzPcM=? z8VYxlp2L^@*H;Xd^G!!HO$Z~?!^O2y=I$%}>)#ga;RaIUQmlk4KPsrfS z*Wn*crgwuJeR!*;+*-z*(rt?}jF~eU*AM$4>KiqLqxAF9=j-^(oY0$yFn9~zhK^Hy z_UhfD>A9|wa58K)RJWbbA(C8`rDeU9(kz=u$p)=i)uSZRAUsNIP4Zm$m zGT(==Zvm?cj0>4l$&t{K;rEyH%cO!^C-?d-5 z}jWh3zx@5+D33O zF*xWqew!oY;IgA|Vt#M$uB$5wqlw#5U1mBW;_;Qx0ch;w2kc^8VUDA(RZ(3Yf@X?U zZSg2CWh~l=m`Q7v@5%5GC%>wT6r@oJ;%L%dA9X|))zA-2bAZK?Skn1m=0hA6eLgSP zjCi#qcs`M{whZ5BP0CUvn5E2nT^sGdVHnLqyp_DJknXS;s~M4YqbY^VA`)rmTqD3( ziT9(hcGF+L#=9s}pX)sUxIJZc&HX+%QVFCu&{F z*A#*g@;9@ct7Y0+0`E0IdJp0W)V7Nt!noTdvs?;(Ani?_`d2!!Vh3rXi%Tp~#q-|2D!Yu=}iN=enAcRJ&+)3hUOyF7)_!@S4wVX z_`GZ8Eo_KJk1_sugOJX*NZ|6FduZQ=WPZix6Y%5v%!T3AxK0og_LvF&M?C_wC0=r- zc~|*M6pl=3)*SHjmgjRZVRi%hx9E5P=wyWHVJuyg`)bC~aLl26Pd&$?rPqa1f6AHA z0Hacq+e;>W&cKPT`cGQ@qmScIu7Pl>I}Q=Sx!?dXzh6SU*BcG^#K+v#fVQk9#vKlt z-!Q{m3WCRl_x5~EU=HxHk3hCCLR{xqarBpJvMQF;fmSD>XGW3aeb15Y!};y#!;Rd{ zKTR!IozE5mWJHbt-+(KY>5yVd*01Kr0U&ToO?_ts=MlHL?Xda0}5iG+R#xjik61`9`b1OB2}Yw4dee$}K9|d0)a3=UC-+yH?}R+1xoX zbUb6lk&wOGze+HLSSFyJ8@oS^?B1gH?zqHnM--s9L>S#!ZNmG}*@n4zK!D9)=&F2Y zQsMXZm&?7a>#H`TwC}s0uZ1A)!dgOY$%cxw7%>kF@ZRqN3iBKbHW#^anfnP_L|e&N zBqsb;>sMR4Z!8BMr%W*GKOm;%7n|)jycsq!1G;mOIeIRW>w*qpkY*s&34P{I+h5L| z+AQiubRjMAo|k^L=8+Jearm1nttf%F=wCC;feV}dM-ZKgEy$lb;vma4SG-I0=i!5Z zxscRr8L`aIAc_D^KP?@+0;!dUnpEc6o4VOTS8di5?&hqqXt@43n4*Il#+UE<80Z}0Gxt;D zVsB`@>mqnnD{?y5j=Vb2Glt=EV3Y&tyKpvMT_AWB+>)&)@?L=4IEeC;aB&}3dlf^| z&7{bp2!(s(H)xT8Uq8;>ho*Hw+ZWhgku3BiZ3qT%tU+m3ZnD8pc1|971Gug4>ZHh? zXROzInC?$_n%S6qLmfh!S$G;3`8KVhm+V?wpZv-CAlS-IVZTP)SpK$-)@dl z4@YLIV{?NgUE0>EyC`_=OuxRe#d4s!`oL|lgG$bKhMclkQkr*iPn5Wb zQ3W@MTkKJPeuo#-C95WLb^1F-{Ru7*5}9bjnYs$jrha+_MhFNNeb?f0kMnQ4J9k4_ z?o?Ut-|p1G&LEU?L4S{9e-tYEBIUTFuKmx zgSlp>$_;#oV6(y8Ix-+V^ONivn1;XJouj?IJu^ZPtJCY!medG^cK?kCQg zk~5-J`M%dBSH}mk?UmyY-87r@klS3^QUd=Ef^{&Lcm{=H0-a3KsOwg?M-^A!vpvP5MYtYeH=PmAo2pmQIbuq` z<&^A(UhN>b!0}J*&4g!(DN)cT;3yt_rgrHGrcX#}851g$;zaE#i`81b6{090$$kGA@;>f?_lZ8$e zi5`DrXUc!)nNMK%JM_b3M296k^fM+L**pArnl$pqdQq(y2kGsP4hvma8xcrO-xGo; z?GSie*odo*sH?CRBB;QDMB=eK$qpe>V$^w9lM!@ZKE_Z;gVa&KzP*3tc_H^XwiyT4gkD|{u$ir@PFM2B=XC9&mE%d_Su#1DDpR>LY#4HTzuP<4AbqGFZo zCWi|jzhwcG%3P?(!{ams5<`mAcW!q#htXt%zKf|+yi359c}?@>M#1P^6)xg_1DUC8 z)@voi;$XGz603Ci&CgEn`S7x$QW1MfHeT8(8GLwyH@B|ugWlFDjHIxN$mmfjulu(g zLGPl7+Lent8!80`sxLP<|Meof|Jfyg-P2q)DhWf@Ir;0~$NKA*m@3(-G{pL=3uG&s z&o%CFRRy4B4;!@HM>a9RcF?+6( z6#Vz7V3SVYrpU?UQ74JBUTNIduMxile-O{NN*Bog^ofB17Z*C~5BYg7?c@xGWPeS0 zYou}wqn3{4IviwKJtF!6A(Hr>%0IbTZWT-9t(N-)vG_1!y!)pa z=}w4TjWjJWwTjy3nx$IL=Sv%pt^S>Rp5(MpXA^jl3K33`(C5o53(ha#KeuI_k6yqp zQ{7;Jj0nZIk(CMS4{q*v*|xZb9?a(qA%|8q2|+$?l!OXjc~fT-@eM^G#$^s1^wVQI zv6lu}I^B?HXb30<2#!GJ--rSok6aoaTJ%j%{s(egGXO}*K;LIOl{ zr=-{lg!wHC9>^t$wVcS}j|2HYI$UQ(k`eN40A%hrs5!-=uEg?WhE~ zB$m8~#A*5Kpm`g_RCKtBL}XXKqkv2W$-{!m^{33N^)$<_;m=P8cA$HW94)|~Q$M?0 zj{rg2T>ZC}*}&*&kMlxjaH%uc7n&C5?>r^^ICkJ(DIg5m90nbNN@32e*l_6=L((7a z4Z!<_#e+_yjkJT5CSI+J;@g=ASPI{RzZR~|`W0QykHsGtZnLi$ZpCYMGLrnJ%z3KK zJT&3KzRMV()Jz|5ZFmkT7Q>w4?`G2~T%&EWg=zY$3FsWa+h^#iqyS zD%{r6tDR!>KrTD|SGLqbQuP+ZIXv(zyR~&4M#3iuvPVkCwJUvx z)cY0HNZ5yD^@_~ZIhuO7@77a0`8^UAQaj1B{hEYCk8>i9&lc&OPfu^xphYA;1ldVv zm8;{Ao#a2(MI0fgzUR%Y%kv_~ekTo_%RlG9#Iu)etFZzB^H}u{S&JH=cMZRGc|9B6 z3-l|u60F{(r!pn92ckXvEL^_u5ok?a^_*JOR)&)z&5fUyy*Dk*Y}v2Vdl)Y4kG0UH z;WejwsF)wg1g+jMWf@{fZ`xbvT98&*Cw0fVO&HQ|A9tVHQH8DX0v*%s(|xtZc0PC6 z(IIvJSK-K<8CNSAI`RmskNvFOVrTBi+km&M0cH)}9rhWqd$6vfF4U5 zE;?Lw5qe!OP+qjXX|wFmC%Q7~IEYHxpk%-lwslnhZov-h?Jb~VW4>OjKw!Fpz}a|0%tKlkRPY@{}TQ1h(z9(s00w2t^{ zPTL}nY14P!=j}Uem*}qF2~XVF2XMO+Pry0!*TpM5i;Ad`35yG6ln)7`GqC>s#9C*XTla|EEoDBr6U+~$9ApkTHs(O*69gGOVTEnQ$EusTQ34oZ z*524kSo^1X3G=fGx8NDpV8I?!uM7MJ^S|@dV6Yo?Xhy$ zm(c9pZ95*<5k64uoRWo^trS+sFoI*ceN*Qfz!1gw+ajVxYTSms=~cMrHd}_mX=M(K zfq2=!^&Wl{O`?Pfj*i8>RzUnm<${h+7Q4y~za8~Qk?+=@4ysQj1J0*DW^GT^qnDkX z0p17v;y#L%_tKfb2JiOw%l zGwytKA&qOcyBO0_lYpiOx-c?bGYSCD8MKPy%Ft>f0rkT4vG_@RY1R(-PXPzH5GiX# zE4xQiLa5J;*lFgJrYVQM!^wm=KwQ#z9<{#-}v+{bDjuRKW4NwUm)8dg}wm*~@$8w#iqvpsKW**ehr=@q4| zo=-M9FRJ~%d1>H*UE&KOj=hhN{|N2(=%V4 zb>UVkLw7+-&2X;G!O@N;=0Vi>)4>E`<#9xexs z1w%L59jlEA4Duz&Lg!<$5Jys#XeU`b-KI}=kWqL2_ zHKKu&ozGyy3};HpysmEvpnFo&$(*kNout*4wz4nVKv|En^;B(ptl#|3^zjO){FZ-s z|Hgf`%Z^7xN!O_Ui(AKmb$G|ha{k|n2j(1T#Y1)j6VM%6@vs;4S;=nUm(33Ng|som z3r_$(jecBhp5<*lzVoVY*92iV{hLZ7auah>S!&K==P&=s6v|5sKKl~_Z z;FBMkf5+R%OYTb`TJAG=^D9^QZAT4Yi(X#0^M>o&FRHWgWnt}J-b}#sbBh&0>1AB1 zyV?RoW}HDpyV}fs=jnM4Ti^ZNoX;1~f9f49te+R%Y6#2UwT|znAKf+!Ox#*$6A_?F zrMYUqhd;pO<$Thc0#w{YFP25;E=y!`|8dPkdaBEIO~N^IMxoREH6cEg9nhlMcR=HY zQn)|qfjcC5g`rB>B1%Tp;yFRp^4O--!Z&;%;wN(%9O3`G9P;D4>$RiCCuE2P;yv$^ zZd*z~?HKaNNcR6$k(#wU=(i)Rtc}d?N@E?@d(h*uKW}+?^uF1Mcogd1711CUdyrw(7b?Xy6=5a8MMZ@5S5B5wR~{A?At7M`ijI(xprOL9H5g&Y zcm+@Mk~oh^^XoM9GZ`(kUhSKN0u`N#Gh+zN2W%j9q;s1#bs{0J;Y$euZ^8mc{MerJ zHP!m-kiIbkIBeL+K#5hcf+Jq(Ud-t|J8sj6vWTIm2to-o6GgNF-{drLw-h1?;t)cI zcvmJgDrm0$-@JWH_6ULS`1_AflwfEI|0c#|_!m}0L@@-48mfYUQyl*Y5ef1dDypX{ zfu{sKEZ7K`zBZTwLl7PoukS0URz>5LKD6Q+?(*p<Ne*;`F=fdSb^ zwMx@0h)vu1t-z^4@jpp~cT)RxcZ1<0*KFu%Lmwhh`Z-?prw$y`=m=2t&l%(OGMM19 zMIA~L)A1zY%0YJKmvaPb;BzELT#ixv@vXL74XIRg>j1>*ugMk!83#h?D7 zhE_a^M^Q*7P|09@M^R;Z-8gIcR&uJ)ehEb~l|q7wVE<_rv59I>d&M ztnI{nl3<{M7L7o43g$Lxgs^f@lxOPnE+o9RY%RMtBA2o}@OC1Z3VzxG`{+z?sw1Ox z-|}E(ek)asF&Xn&?E49NVR|o1fOcmaBhjIvrs~L|bU*ux@Rtni#-7Md_X)r;7_inV z0AXP9)?Ce*67hA^^RqGph&-M?9X*xJ3k#>@7T-B_Nvs{ANzdd`AGKK&6j3D7;<$<= z1WJgRXi%uExdUM%8{`rexL_lfDW*JLLIfH-SP3XH2sAbwdRTN=NfENpi9-X;WJ+Gr z7@IwkDgCEA>KED`Y-4B>MZOGM-fUPxi;78wUH&?Aut*bhC*XLCor)qKN}C!)TVqf_ zhg`7jJ)9y50l0xHrjHH$0k(bu$NFwcEu9{M=MX?L7=^D&R>OJpjbcrdX`C){27;nR z1YP^ei)YyHT$|=3+hjJ{r2}vc50ZR3 z`=2rw%cAbU#IpIHj-bs1A6J=d&BQu4yhMB|Y^=x#rosrj-CKj>)IWDRzHRe9%vAG* ztf`3-5>!-JiGLqa)jQfOvBW%?Pv47n;Ut5p35uhVhCtwGzQL zn7cc}NU@4ei!%iC&j;HhCxd+MsSK+zm)S}(9anCgu(_AX<;{IwepMng|9M4XGs8)- zsc1_BX+G3;Z;*T2t5!;n)1d>(v;gQ$m-lm|vW#f;aBB~!%JU9AwsZ4i9>Ka2b(R>U z!10#8=B@X;Y&vayQ;N76>hOVAUY2*Yu(U1mbl1)k^twU{@WxtiZid8;#ETqQGtVdUe)ns#$V;|u*vQzt z{W%$8+r#~L$N$Rv3)rVNFl!?hq193BncoygErt~cEpTc}T8QCR5FGaYz`{Cc5IG1a z{z!YbLFa_i^a{#-DTHyFu0&k94$ACO+$c(Q!TiflMRl-g?W2R5M=ti+S=jLS^Pi3P z+dUMi)*hPj^q#^R|06Ns`8!n6xHvO(j<4pS$IQ#3FR{^}9kWP9XxV`(4s>bIvV(+| zMbklh=@mr+@`{EXcokQw(}wMj=umk~!xc1#DZ2Z=a+uUAeP>UDpicldLx6wv-pkW- z?m#8W$RJzqr`>wa?S~4zs6zajiv9I>hnh&jjK(WjS~bM4Yw?=)|488exzQ>a=jZr) zsWn@t2fg4rgr40_-=SwWpDKy9!x)a#Yw9nF?;Xq;RB^2VQCxA{wxKfHd(o8tA8T&` zRoBwA4dMg{5;Va{@ZiCn5E5Jt?(XjHmH>gE!AXDv!QI{6-5r9v+rJOF@4feXXTDi8 zYt8Dl61u8dcI~QaIo;3h__k>*>aUi6@v3;1Dkx@xzXCf<^R27;?wQ*v@t9>AzBL0w z9m(AHG;hDCOLbZ)HF(PpCxLlvasdVxa4Qes(lOd zu@w^~3S_~*MsI$BW^x8T#j?ldf)Ew)t6+>u6V$;Rtz`;~mBi$G($aM6; z-8yhHNXN8i8NV1?CASjGkG>;rbM(GBPH8^wWYFD$rV?8{1fVr8#;M8KP!zc;R)T?> zhY}@VX5_ZG9U*+z6+WP^A=Cw-)D@)Q+x|O2aWe3?Q9Q96I!pe{a&SxxI~jQ8B7Pz` z<~@W15~az+2Ibal`aI=8hXOfr(&RnBx-<*OcVHzumdB=Y|1ZY_NkvDsA)Byk)_Z-Eg{oPXxRU$9Ee>&SzI(zQb;#)7N!2HC2UYF z9*v`!kT}twK7vj6)OzOBvZt^vaV?x!2??y#z{HINzLzbifeKD#{Xx#`mk zUIy80OH{LdtBXNlh=qj?tY(G!9yFJsjQ%9(C(#0t$k{A}eaZu4pbbrRxeW*wsKrm> z+$tU5()?BHlkjMRO^!N>#?GIT^ipqjW1qA)N+)KDiy7G=ew^t7;x$F$%^{TCSQ8_P zO;re|JIYjtouo{~mIT|rk7j|Ccb3K5_E+-!-*&{V{)c~d)bGH?-X5nX(Wm|4 z$)40$>Vg21qCE&)mN*92oCzF(aW2963L%Ug-&X<3)#%hMs0g=lyzMEgR{GH+2RM(U z9l}_U%vb@O;b()+x()x};X~7mt)nKcLo1Pl&SXggpC#o3ynU|<=qxDtCmu2re7q4x zVj)8CGx-2hU~0}J0!$ngi}4-%D#?IpW^WzYIcXL$0Zlu$9y0TNhbe7?q>v<878jO$ zQ&9VOaQu78F{y=Y@~i?ij4|9Np$QPX*0gVmWG?rX@qXR~ux}2y5qw`1xS~#9C_{1W3WLl;Du0SARRi*o1;H$c#k&KyE|KwER0@!>0MIq+qxB zk5BfBOfwJ_V?_4Cyj(J8gQFidoczfY=zF6PR=vaRjx$F%a?UdOQ_mKoL!iyE{$(Y+ zIfFthfMFn00&z(P#I&84-O>z%O=q0;%$*QLPqEx;&(~srEr2Elo&$C=AQ#m+Vw6H| zI`0E9kUR1m?a&S}Ph2X90aav%0oDaEs6;S%g-QzRfWHMjD@`J{l$y8{?XB#!2}u1X zrDbmpJ?r-5kBUG_k?3@>kxWPwO*}iw9M^LN5e>fmKm&<@g*Ou)VhXcbF~E?{V1v!v z$tIM+A#>DE!AxHC^Bx5^KUjhMcKqeM}rIv*vGN+XG>m?>Y`KtReR{?!; zx+1EoLb{0RfO+8}2l$=3^tJ@J_(IkuXbs~YXnyGV3; z$JkL2ff~NmR}Ix)*lNi1fpPC8eu9TV4Okl?C7>zmE3|Tj%lEAkE8wG1y99g}ntFwE zPiQS<#(@moxWw;jLS-w{FUP*`tmpA~AAzqxPpu^uX4T$+`tto57xpNC*74hzJaUNh zUuZ-8>&fCPF2VeNx&>xD4?j5pr-HP1RwddBBJ(z$9OO?$A&e7Trd>}Z5;-8Gvxza? zE0E3Zpkx-STp{`t4G=Kg2B8vAmX{-x$ABet!4tY*I!%Z- zUy}_}ww5p~KSOKwC2>IsiDF1jdO}@eysO8C{ z2MB2Lv6a+#RsEk_+^tFusO+qHw)v00KQTWk&0>F#$>=Q`HDQEQuM*TEes1%%c=UbW zqc<!ZAYn{qgu1J-? zz3r}u=~hIeJQXS|1g)F-YaB+J+n>*(0}PyXWIOm8KMkS6*|=Q2?h3<7HPo@-njLNN zA8&_oeka=Avq$U6Dq9ZLBZHJDE`xgYmCyIF57ayl%x=TCImQ!CdtH?A4nv#^{G1n% z`OL|+st)4fmHW-THYW-?K)DPOIeJ>mMQZ7Ng|YPoj&6Lm5!;nAUper;FGTG34GH|z z9x3{*eD?N6@vGOwi>A^>bLdZ)H^`m?A&tF_ANbEIa$*{}ho@}Zu~9t(8{cdHEE-n+ z{q{_8_ji-tS?sx{gq-N~+dZ5MwbF_=LPbB6C!HtizQSnbp=+rwoyR(s#%kp;6~!x0 zx)^>{t~aku+}YFg*H=#s#c&tjV_?)E_nk9 z$|5d#SBtWqZh7@7e%9tb)}8{g&d7?Li?#GJ+Y`thD2)RzmKL{C9apO^IV7PNpg3fF z-eS=My9fx?c@1#OFg8=_uCLv`f04SI=HGvCn&huz8RXu=%idr7WcoPh4Pb#)GBVT} zH@#{&P|W@g{p`a!?rS?oEfl<>5M{+x#mlAKd1A?1aazU7S|(OqcMDzbt-Oej;|@+T&)C`#r;l>&}`c>%&_rBfCd6X?2ug=pp7aY2KgyCS zC6`%k@HtVF2Mt)oLHZCr8`vzV?<7g^fOqoV0{sQDUCH4S zv5qajm~=HGo=aZE8u}r%1(az!a8+%oz&w8!#6{B9f6|Fz^vvEBsmwVBPxm4Q(+IEC zLneOVmkg9{5R-5`SwFyj7ofTXQVe4%t1r1Q3}9^gzS6g$#)s1ore)-+|CNB+q2|UR zVdJaz_dT-jk$sBa`sl2})H~_7mg5@K=&bfis+p}4I=)tvmryyKR9eGVbhnPg@VA@gk()FCYnVFP)R7xQmv!c#EqzBFI>*wQ@F)ts+?SIb=z z&WvA;iSH6^KlvHf+A79Hhu5Z%c$&Y`eAzdnp&fS37txhPfzIZ|bDX<8q#CIe-`L1G z>^lx+yCgrjJgO=hLL0Poc2u~*{bTedB|MTn`}4iB@Uw)Ch{&PttVf$Y$qR$*2qFtvl=_FeP-3dwvtwf!4lf?8~|K-W~r*F zvdbP)QP5an=(wUh*#pcd{N~JBE&aJ|=A{Be` z+7Lu@k13L@dYWmZq@CAhXD1-@JY#@UuFDm+A*)u! znr}+r*{!B3D!?O|{hl`D6%CeXQZJCP;$)yrftS7?Py40PBNp?6yZLH1{78_Aa5>p5hUI7W59-GGAhz^N98Ob)0Tuk)2a^hVd;I zn&o=EFEy`91#YNOZY|fHy=Jy-!rgs+n;-go%t+IK-j#{E?sKklfq`-Q*zOk|cjfW> zzke(`+7rcZE30rA&i|$%;$?2WZLLc7$_u55p0O!5B5kA1+A{V|X;tfL|K4Y@bh+wC z{fhn$7vKjj?O0&sb^_8h&jaC>{H$B5DAYZ1+(R1-0}X&F&PgT0NgPg;Z&mXgev7)& zr=SJm7At$*syIiBnoo+xRe24NK}r7=Lfr(c4`g&IR-fKq++!b58$cJwDF|+=5VsHN zd(-Bp+j3p3(`OxzNGPVlME4R`gB0Z={6w!M6@c>H+BF)LF+fuCa#C(nt1i$;7 zoVL?1#i&gf-dyXGEEDxh>|{1h4XGesKL|?CXTR7*++1rv91b~28&t_+a}Es@tUJ9F z3qZ0OlbTbSYd64ejfVnKi~~82O6gp#7zr5x9`AL#O-r@Tey*1;q7%!Tz2vkC!-bLN zPbSOArpwNogRrFOSaUVJkH9b>eX-QBnc~51scofwJ!YMnmTpqRmxejM6Y{yYFtxYR zL1CsqsSQ6OCLYu(j8F5u0v-9z$d$bL9e1*{KO)Po*S3O-^* z7dXEnoB3uT>NJVUo`@uDU=Be)GRUi^Q6M&WYxTorZ^zw&#{_Oi`e(0=1>V=MorQj# z;bQ~%x_eg)UphMVwv0<)ul?lYQ-c&Mr-9v)l9K5fSWZ%Q4E4I)GQoG`b?f8=W+)W{ z#?b3mo`Sg>O9+OIop(iDkz993t*4ZF+*qh%gW&i`%JhY-?R?o7e5;BdORN6P6 zGtab~z{Ruph*3e=K}>etOVhxwVpZB{J(J> z)ZrcKdbrFptvEQur|I|DIh@Rs9CfOa{-F$7B7r!W z#WFn!nXy4t`KUM317RTv*cbFy|74^Ri&!;Cn*%!!i5=V{LrpVc*ENcc8IY-gesb#L zNDb@15H5gYJQenKj^Ccauk)kZd79(NG#*|Q@@qDlr=>V#`Zer$U=M)l`FB3+pU!2E zRq~Ra$P99O*Yh;-s1e>bF>%^aFu4MHx)!<=C5XNX$i~%v195?xXJB<_9Jz#&axiVQFYY3q~vk%~ECDaXPnwptakcvk{ofD4V)e?Oorq*bE z&1%Eg1cr4*>`n1Q6gG@avpMS4dbHO138tiHr+AEtbX#EzML`VO0FK1y#x4OxEum&= z8beh&PE>t{+3tx8yNRg6i~i|^TmTJyc<<~tKn!vA+9xe z*t+F&;^2yfv|eDSI+aE!UWm@xqxp75ho>Rcgzw)=_UtehqXx+n0i`-Je$9oO^kPcb z_-||}q6N}7r|m?!Nj+b!FROaZ!wqW&p(n|2Voz4z1nUYTO=;zEF<5!gt($nCoUU52 z6GRZRPr-7$xtBi2Te70+Grq`73DfVm-=6zGxs15z#<7&tax5A^Sa!_xZhPa4bcl2O zMF^V0CTk%@T2-G;pF^2#l5p*nT^*s3`TKV{s`Z}t$7e-*gYWDu%i7U}g)&<Q4$cTux|2L2kk^p2xrVu~#|3}D(!Lh#~BPRcUhm6Q6 zfIvokQG-B6)Yx_W3o>HIkcDM&Ce{1Xz~hUW;rSGP)qvB()jOhtlK|kz5+Km?z;v%To0*YkMG28PfF)%=oHz#A5_={+%Zu1;m*nwwM8@{ zo9LO!I&*hAYr%91hF6S6dlw}%1agpTyHO?4CFb!Z=2b9? z4Y*MLoPva;Xn`2Pxb4uZKcH=o^6NkQ1A|ICnGa{coaX~2K$dmshqm?M%tTY{l_6Ba zKqQi;_zVlsp#UPJGzQ{lVb3rAWr(&e{Gh-mk}D?SC-w&FkR`K-<6wXf`-l|=*H%ubzP^zLlj*@!GL z9~teQ-c2kiy4`{Z{FB%QruX?+F1Fq^@V#@Ai3sz2r!3Yf-KkX?w(vDk>)j0T8hX$4 zKgn@uI!UTbmxM_n->^GXYy??+W?>%Wq-@%26T#l;8w%0$q%s-em6m zNx|8ByJ+0ZJpW4WQu-I3#D?DdlW$G?8xso1jj4o-nEjwYT(r<#ZAM;*Vnctjhh4{YlxqPs$!t0Fi?;GX0?@6L`ZtFRNE|MXdUl-P3LRR@pKTZCxoq-jDmvm-`dr zy*w{st~y-$ugMLST(`CU(u4mqJ?ITSc;qXOCVRe97Xx@&rO6Ex>anI&5IhDh9;2UN{8RgC46A?U4f8fHs9dO~kgEZJgAqvILL{&Ue7|QNh)$JWxH}tx! z%OJEJ6j!FSVs8W??>B$6Y|QSTi`}{l0$q?1@1N1oWrUNLBqwf+(_)jB3=JbV>II^J znH$e0^#cZAk;6>-!GDZ0_~r$or?Oo!Z}y9$$^e)UB@8(He7NIIl1O zc!{AyA&8fE5kg#bM-~hNac>hFS|P$6DMA-@n14C*IVGBVJ^f0cXhm|nZxw|gVXru$ z#mq0lCr<+Ojfncr=`Zj9MPfUAX^B*6$nHU~_RV_)`8`@q1AU9~O(k4f6-9fu?!<1D zAfV&cf9rS-vz#+l5bgXUnk^#HhR?sXydtu35*OVQ;e8Nth^};16pL_|kp;29!ND z|29Mzv_-pNjK*Nj_1lKFh0tt}aFWOYs1EwCx^&Rk41s4ZS`AdF$n4jB_n)?_OZP>p z(h4Ae13;VK%A%i=d1~3M*YFXH-UWcFBHC-kO9^W*c;)`i%&p)F;6|TH ze~L-pm9|l=Xbf2O}H(3!FZk>bX0~(qH(v!L`h5k$3!*Gy?_9fi; zO1O%~-3$GX!h;iOgFP4H|6AcMrTa5Zr9zz~5EIAW+yep^L{qW?o6DwsgdRL5(}>R} z%zFq~Xw;bdTPjZV&tBvc_3kKMGO%r@QquUM!^0^2Mxe5VG2%s7YrbV z{H^b&N>@ZSA&rAJixUbU4kX@5s3tde3c*&v03=C)XbMT%Lrt}bn|t(2=A5rAR8#aW zB+Zm$djT|`(pzzPr-&E;%*Fu$5~BlU${~8rPMs_g>^+DoHMgOSES=&p)V}=R-0D>+ z0AmAjD~Y(0P+Y^1k1-a&XayNs@QwE9DE@peB}Jr9#0TOT6cEfH&@ZHjKzv#G)+wvBzI@P`h<7LaC=jI_wy#}x2O zZv&o!$ZG>C14fTjh#~Qv=X+fXUr_d)?*floGR310JnlcE9po?b#FE3ZZ_TF(T3qig z1~e!jalVGdX(c+Ms z0X`o8kTft{q`E0J-Mw-T?YME|j0J|}l#)}zKjZs<{=I$s?gEdc!Om!pw+k3vCc_q@ zq<~Qoz-0Lb7`bL!SW3qYB$#{_zW?l>{noa4K5OooMwl=FlZ3$K;-u9r1T2QumlH^V z;5B9K4}s7@B!Z}IM+JP>-2(f+Sv6uzTWIgfwL(R5?}}F?CSXU@uk4F6DyPKRyPsl+ zZ!+J4W(%`A`9Ar6ti&t;7qzS+HF$8vV2*?hVrAoUcewZ9H$}GtSYR>t&`iL*Ty7x3 z?pn0n0QzYKw`=aV%DzToRbYfHs8y{qoCO9}8*fFKlxDuIKF&y(^#_ku z<ceY~d((78K-3wfmAKFTvAcVS8AnDT_(mc}qR4BD-Tr$ZRlfCivgBtzPQm^Ip zL)_@btvcNj$<}_JR<`h>^rDu_pvbJ2e|ZYkoc8a{7ggpXeW%GoVAwJ5J@_bP9o*1P5(W5)d3F?(s8=6EU@-I{Iqq* z-Ec6mRn?hYwkWcdd23#E`T%^$B*F)_!ADDwG2|y6ev=|#mj}=&VdIfn1^~X;USQgs zI=lzi8t2G0Ptbxd73+BJGck9Jq#G91Wj&eov$9!C%0* z`!+Od=`fm^G0yYtb)2eNbM1HBTTooVc*wDMi~#c|yQf)<2XrIpy?06z={*&Y7^&~k z9i$%BQ)h}jMjwHQFME?V*Nf6P8jI(lr1g31QPFss0wTu?1t}my#GycXk1qPi#u+R6 zXrB52083>){yVWrJzl!Dw4Cbdi;X=FSWs*WY05Z4o*J%YI#A=Y}%VWzQUG zeCW)p-TNGNSF~RITm^v+HV(Sa$MAO>%Y`dh&nbG z_f>HiZ8a1iE{qb_lKAp-*v^;dGIMOqymb>k2J6~oeoE~}_H8d4L18Pt0Mb#UC`uS~ zCpGUwyY6_iZt?5R(*|CQAc*Te^T%PyF%7A|$se}A6Pg%h{{;tZSXvLt|&{6yW*mfZ6 zY0^*RqIi^M-IV)&cT4`b;-oxHc1?B7=y8#@p0+OFI4S$E?mf}>=6Wg}9CYvCLZBT03dmii zP!Y*k)u2FqE;pp8ky0aGMySz&TpzTiuf+5=_T5`wSLznoH%b;==2!IX;twM7Zgq4F}%Ub}OSq=y*dXx7y`SnnNSCoN1?;o6?IshfX z$U;#gN6?jEu@z(G-yVAipmY8dk;r36)>(*{avT-{h`#@UNkFP^57mO`C|~P!Y5_zg z;+qs6GZz+bAr5>D;3&|#AWh!?;#AgMhyXTt$#=b)6_;rz)@bRKl?zvSl->YK#aN}D zbR&4(*m*6`8nvg`S93qb*8P$sRNx9ScB-;3a0@wStmH&LR*?}sKV3uuHg6m^FaKss z1t%X_2|mwHu_aeWv6z-oEp{v8I7%%RaOPYXMVeQNNaO?2ic`~z7zf+uyU}c?!&R>B)_&<9gr~y=K#MWQwN;#!60RmGsG;HYy|6;J@}NVE z%Q)gi1f)e%h+~)RijO|yW@E->EXL^rYgeFxVnP)(KnPNw%ZMFs8qxPLJ7DcvLZ}kX zqKc+o9;h#08&YsleNG0*$ierul)gFt$x1UG;wB!AQ1C08RVsz%D-Gx2cHS}bre4yK{A@V@vT6Xsh=re%gwCk zovgreOUge>XzYjSFslhZtCSSm*HbmAQ$06rX(@YP!3F%<9uqdEA~$DF0a?fcKd1X| z>6l{2eQdE`<~kyD3D@>(HjQUbegnW4W^&cfvj%4?*k751+qm1bjZ&M0ufh_sA|}3Z z^a$7#wEw|1Oo%vTydZ%1v|IzW0{*NcTwd5i6o6&_mja?x(Z0|EcmNPLhA4zq1ugDl z4mwyD(lF$Sf3PZMvc^rF;WNZg0u6sKy_={0S`;|D`p*aCM$ak$F=3^?3q(NnLq5Wk9FNe>=A+G-x%nB%Ao><)t($f`Ne4zDc?)tX^VB4Rp5SYkBH+g)m zBe*9kdFqT*1I^b4M6fG=Eh80p1zturu@scJX$v>=1jq={h~I|KlY;;1?rBKbtUVhT zqHF@_zEN!1azCc8Nd#H8v3mIEl2}#|3`9(*@mWWLsFJW*Vnj=^BxCtEt~&ViYWVS4 zh4GXJKQjJU7HT2_U}!lxSu@7EiCbg0c4mnHcr0)PB+DSVGjujJ%>n>Qg&guo)z?s9nO3hG38`ACBLZO#M{FUMM>kSjZ19Y4BB3mZb&hV9{@G;w&>-5S7 z0uL{^xDC-MU~VlLY8rZP`q9kyK+yTO(}RMaOTL@uOLY2Kb;qy4CV}+vh(#o$r{ZYm zK5l}1KZs?~e+Bc8>!$_Er^>|jiSfB0z8KBOAI+dhO5LD@z^jeIZp*=Mx3ton`?Av| zx3<#ICHnz~K?vWISZHd$H>fenTe%@k0w$lpcYB1anki+GEO=3Lu&mG-lb{HEq*h$n zE3*(PgJR{ie*bPU1JE)j4B6;XPHKs{e+7Z%k62ysc~MglWc;&TN5**5mcEaT&C4jm zm_e~oz_NLbU-&@=5x8+EGYlfSl-5z2&uAYI(_u%*+;79Dj?_Mf0}Y4$2DWHF1he8H ziv;`s2GBA&D!=>|bihvCCgsK;%E2OkD&hOP`@KWH+wZ?B@C76wY{roAE!g$akZ_k; z%n{$;)Cs?zrS}XNL8iN}0rtP7*QvPCCXni3K4JC!Jbr5fEP+k97+uk*IEGfJ&k3b? zKUMS99z&u6Fh2c2lMRN9PX@ugWr*X)k7dqHL#A)OJRCmaD5fS$PN?K930#a{LfeY= zYjs_)4fdy`l*IxcDxKH&N1slJE~tIHRg`#!(WxUyuQuvFG@eSd`Z5P><#@RTwvrA0 zjeONe+?(Tj9!a$4ZC`FgxBz+CKX`_Teutawgb(Q2u{k2%F8T1#hVV!VEAY+rPjp=e zFQeIfBC-MKtX-4EkEpjxI_AY}(}}e+_+uBI3kXw$KZn@R}L2X9RDXSQ#Tbdx^3iTUDoHp=u3K)2SZ}%Cs z9YGJa#CKZIf>z9;^25ypIeVz7WEg5^mR@J4WEM|@M_@mHJ8+n2$A=eko(SOlIbNhN zF1v^!AECI{jsGx%dW0Ahm0!A-}p8j>b%H5a+-57LkzRadboquzJKUt)Ej~|<4 zYlB*ipaEM5J>_FQ-okc(R&8V-r!A$?b^|nm@mWRQnHn zapLD>r-E_z;b|t4C~GUk`i)ziamEr|?h#^$Si5U6Mx<+6`z9ub#{+BO1wFboodaU6 ze#9osBJ`o`0YakP`psYQ0P9v+|6yzoiT`$ zur|z)Bd+NvTVYq^m{)YE6o-bUy7q(v5CMYkk)R7HF9z|mh#-^*rgBF>#4ABet?`XR zln5gSOoYLmBJvRiobcYc3VkBF|&CJsnk5bI$VOFR?#pF5y0948)d z*Jj))5za#&Ks`OxGFqU`r()QHX+lb6Ea!eIrWT^*@Q@X>PYQf}gOEPhAXaCfRr?p% zhO6B@emC9{>YUiPCQ(iwvvYIx60JEDQWAIMcVEW29yCrvwO!{Skuls_Tl28t=Ojr+ zpF1P0>kqG%l98Qd=kp!6bc3nf?n##69(IKA*(SHTu33R&8dB(k*)V~M`de-6d_@4T zqvv!M;&0e9=o=_cAO5dF{DWx2#_#BUQJ(3h5&w`;{27s?(7>ckQikr!FPO$H8ZH0s z*~!BCr0dq2$nNS#;6}DqN>y!I`%)g^C5HIfI$>9GUTz(S5!no9dW2FKbH75OzhAgUN6YDxKOf*ce|BN>MMF<0+nFAwvF^FHP7 zJz*e^{Kel}50!jU&}t%^wu2@_5%%j|H8U>^Inngo6fZg$3>hxI+eU73U=SzK2v@en*^0fsXMRh#NbC}siqN)Is^m} zjs=*uvg#%>NySqJN{%ty)>%?w^|# zal@j_azx9h&io4G zi!sb!wT?2$_dwCdp_gHdfB7~n7XNlzFdttqe_9D$S23_Px2RZ8yg+s15)CVzA7o2+WmT@92#Ym8G549s5mc++> z4;#8yfrhOtx(SJ<33QC(o>+YfZV5dll5yKRjb$Ay*H)@=G!K*saWw5LB7OR5;ue&KWo};A>~KC}0C^CTZLkvX7JmZbCOA*ELQ10vP>)qfE)=&YZr~*nY8lQp zW?Qc*{*=Ql!h{lkU1YbcIC26f3{~W(3|M({-m)TKwf5$3xM7>ur7HzurVUJ5tl&Nzn+wJFgM2}FN<%4Os+>MAEwzN zDWUH=83OZee?-kEp;;2>kPamiR{SsWphnh|Z&E5vucfWQ-1jI7__ zz$bxy?u(gT*7bABIHW!Wiavv&pPqVZRAPf^6J22R62J)H<(=WdpTU{fGqCqDR3e0D zaBeVszNyqFKN8`nLb%KI1_DZ!G5v3;KT*^-Gkg*MY#sH9f-cmu0+Tip6~`ijj`pV> zZQS6!Wm3{mupYR7JWoZ%Hi?un&MN!Zy9;*d+z?zlv`-bT*GN0OP7lD zk6m(Dm$&BLKetZH8d+N-E12)C!W)gxG}=@#K0EQnwzCs!f0qCo@m-oBjl}8WST&oc zo22!vB!*;k9haBjNAwX<$vQLVhN87E)u!;`FRqWZtJd7|b0o1N&(1k* zeXrhJ@|N;a)EG()sCgM)UJhK{(cEgduzb0IidJ*4&42ryYa9iCC$N6v==tNf#X-wQ zGS|t+&l0aC}_ToHt9 zg3>0xWNo}tEsAe9*mFGND`+ZHMu_N)^;^F{IdQhS(5=zvskE4SX5Jnvu6YPw;xL{v zsS>o^tz$uwNI?>|UxF;}s?!e-Y?VRj`!F}F$TzF}j)CuNSJFCZjvtuie)UoU!8{HL zK-&IGB0huy78f?u7l7?H!$k#9yDQx+rfT%-!bzqY>Jl*g{e)V6=scZ2%vV5;(|%lM z&3SjcpClO_G6!Jubn(s4+|zGfejG7y%XRtCQK(jvohGAHQ?Ku9A1|scQ77+Iu0&$G3QYYkOume9N`#%up4# zn%=)Bc_IZY|+hraie}-o8`Kcf25%1E4-}sHem{-~0QDWn-M?Gy;Iis@EezA8; z^yYXR$5NPJ)!%Oh((eXjU6f*dlDb@mxpB&_%vWjU5Xw{|3~;Ya)pYdE^D#!Fr-_vt zNThGYh+RbWDlX=y=!4YvvYgU26FxkasSR%vUFb%6oe#0}u`jt_F=3y++2-w4ABp4- zJ@m;dyznlcu?TtQ;5JKo!|idW?v3fZ5FLK)xJ!F4fyhx?)~Y&HMt>$wKIO$EmAJ|+0e*7_^JBI zvS7FaMRgdNbP~N@>(Z8G%})a9Bl4_=9rR*3A6x5PBO88kD~sp9ZyZD86-GzVzOvFX zz>0jZq$xCip_AuAH50VE-T0=!hPW$Ymw7@QdLb+@M@}UvA+BDWW9KoxUT07#WLuAy zTWr>>!ZdZS&TLX}e>A_(eBe8^v^mq~$3fOtVFH66B_@-;ukDGs)$gKo9nIgd?yGXw zrXE_@pYU1PQJHRW62lw4ttK26=|jGn!LSMbJ@`zpnX&I#UUveI13@>x-)m%yiG_-VS zoTXD@1!i1Gn#x~HS`V!VO7wYdg^;`qH>#?;Fy7kHCU96xTL?uzP8-@>D;HQhxmJep zw(7dHr^UOx?C5?NDl408GHCJd=pkltkX)RVQkY*jQ-8EAuZCx5G}nJ+G|$=bNXOV+ ze)edo`!Zvc$Q7NE~ay7k`)5aamV(u z%(1W7o$r#ShDxZk-&p%CNYbu9bn#s;o$1Lme&O&24x--Cbfdgtc^jsNO_nkG_h-Q9!UDa-Yc_!&&kD(q$pL=(KD2F6Ddl z_4sXtiAvV{v889Pj;&r#J2+h(zNY8t65eb}`@UMHWjaz8=)c`&!mTE7&&@+|98Yh% z=y=$w&V{wj)v9xHb}zvj?)md*RUk#a?plre zVrKa&^ERue{)*?kQ_Q5pp1Mcg)@uQT&xr4|8>J3N(nO%vM#MaL!Vwy(z3<7mbion~ z&aZc&8JD6e|WlA*4RA{D(;55zr~>M=RmxHTEoreDnD zu{)9L52vWwBn{!AE30~JeCS`a!j(D6t6MxcHN1_ztlJ895#-t$yniM5mN!w0XH;Fw zje)4pP(C{GimX6;bs)d)$J|R%b6>$OKY!f za^>4QU{ziBS@mnRm?&k-ZA4j3z6GIbe_|x#Nw=D7M3N{5Qe_%Ccv+t>-~%^Dq}NW1a2kB-+L37Dj&|xsx#YR zSYw_U(=6T@qk|~x3MyoKO@1F?kI>xVdy$+qc{JSa_PN|0@$%krzLLqFwaDbg8GGrx z)>Mk(dVS`?^5A60cJSzY_G@9jv+3T+gJXEn%ftJoa9ASy2il8{$=jPX$BxMx{3V$p zn#wr64yC*OINly&Hvw%ky28z`B8j@RiiCmRJFkwNPAG^O!%0$OKb1;0IlXfYQ96jP z;)w3+%hQhefQC6qvLnO6uN+509%>wB0uIV(e0Gr~qrG;JruUG0W#-87s^}+4&yI~P zo;PRjV)xj=YEvXay8qRr8=-mGo;Pg>qo@9wQ1wvG#l_Cu4X6a6XBai_cPSR}TjGq% z>>+}a7#)iH=th(7CGp?isa-gvfUitOIvffOuUFSd*HuVFR4od>E{s;A{)Aqj8EK~a z9EU0Qn!UbG{h+i+^>+`i&UMt{P>u@l1@W!8!(u)Tt_`sFf}tGxRMq<>o4e*>t>}z! zg!{WFqEHT%O_=41Vw$Tu^X;FzIOs_+J+bKN3jSLnZ}n%sU5zNSo~R~1cjM2fAlP^P z`q5T8EEb2T6di1iJ#;=y-4me5zsFCsB+!oPUfMu(Vo(uS&E0UKF@~g7PG!Y)(H?6m z)9-1}H+a$Bk($rC=WUm?w8cUsr?5;t?Q!IN=z z_O2tLMDY<6L$0gpBOz%0_yi~W%p&u10JYE8U$(n#e<+_{Z;X?&gRZm!0JPa|=9$md zo7110=CqiOf3={6T|L6w+OS7`JeM+lQzKi=$r;7tI@zx5h+&y|y%LEP^$T zv;*hp$1RjX*mNXI^$TlUY=8U)0G}yOk>w1FJ>M$ z&j;HX+Y(ebqbs&v)^{ct980mxeY2=N&ESxnRU6rT98YT3@4VtTLr?JP{Jt!4L~(`b zfz$}6?Z=o?%BY)>g82e&Hxa-zq5=So#0)!-2==M%cHjKTe}O2@w)G>==V-Mr(QR>T z$5L}nQjEkO*Mlz&Ez93kK}$K)vfv7<`r(PQPq~~d;1K;dGDX77-dX#8 z8NRJd@%JDjHIe7vN9*@@Pv>4m_mO(c!#bU6xFJ&ov@kp9L=0oiJxV>uN`=H@(ZNaseb zuMlg86AFcse){&N`^EY*yAOKN-QtwRk#41tqn`r5z3A?4F=+P>6Z}Z}W-lqDzaZkJ z5P-6c@g^h&OAn6O?EMH;cSFCE7(Rw9aTtFQSQbfje{tD< zmg*Y0F0Ay1W+0Ta=5#k~Q-Y*D7KNqsRF7PX%cMOzv*7U*c@#!Q+lyoWsv#sH>Q$=$U!c=B-o} zC5sZ3YAcorR{58x*><&8kBb8B1GQIV`8@}d?TlTCSD=C({wPCZ^HqJR$<#LlOFrU) z6hAO!k$$bC{>oha6|f!_`8x_(ST@q~3p7?jVj z0>t(Md*nJJ|MEB(78_2$A0RqJx`y)%5ae}PH&W1i1Mj8m>D8q#5FO`zj{59gKL?8U%?i{%-u3&#Q{drv z{nM&sk^lUW{L{nWpN2oQ)-(4xJiY_XtGnL2nqnDP$MhG<)YG6(`aHnJM&W(FEP>4gmCV2G=LMrxh8U&4RBVdrS;(^!bA(DAl9ZJPFB$illO!Xjt?*&@d)DSHLilZh^cHQH0GTck%g9~fc(%;~_)DrV{MR*iz?1+6<*=&d1eJVSPE;fYb zh*!LLcd1kAIn}hMYeBm(*-nC}yp0GIt;`{*b&lf~zeC5E%bQY>&LxQBXvB za^VkcUvHiI($Cv#swk1mZkpE6?_&)=-)`++4m!%wy2TX0ZH>o^(978mWxavs2*y$R zi=O}=3nOI-BW3i16j!1cU5s}d9}{S!|8t8as1%@yCBEvA{Y}AsQ~1Ijn`_TMH@;UX zfQ=`@b{qJ2+`t!M8JcL6RA5DlCO2uRp4p-{<- z?u^Cf@TJz1iL0qGQ9d2kVswe@BW8T~=PX%>29<9slI+8j&*;4Ez6Bloh+9ComS6`Mqj5HhUwBjFXUEt$AZdOoIZiD0YHiz5yB(a~U- z9`QD@h{e~-q?;77V(hTW=mS2v;<*8bJP@~B4u@T^fKwjLle|RC;4Aqxx`b^yT;Q9+ zd@y<-F}3mLKqiF$8t@)y3}6&vb4aff_Nw?kkj$ciI=EWi5^Rx?%i+%ZOyx_h6CE(t zBBc#Dnr~!ij-^YTQDinv<`4AJNXDL4up$~>gdG=>1f5|=vXAQ#zo$4poL1P#PNO>=TRb0WZ18zKNfd=#6kAwOl87uh4F*;ilFt4#U2x#vC}d>y1Ti_2)0n=BQv|^)pmtxwF0#vR zb}%{PR{KnahX?h_CXT=X7H19>n~_Yq7-59-a1T>xa-(vx)Ek}sMqon*X&BB7=I;*7 z%a1f=0ANb-Hx46LlE2cXxQY{qs2zJ(Aw9SCS#Qc|jzQX;Y@j_>CpLumx!a)=08??U zmhvz=@o?Q^?46;z6Tdgl3`s3hB6ty8n@XLUr z?P_as*?EKYsfJ}Ed6EqMgGx*lt=v1`c;C7_4Zf%Q0R<-S;k2loIG%-v+sYm?;<*~L z9gws7?trDRTyE!1JqWG2Pm)?v32W3w*xHlUW@LPX^vWj*1yR55p`1G%t&o8-m2>VQoJ~e(aSgm7eN*{`xb)pFYy;~x4<9e4V*aY^_D+RR6ic0TUOV54I3NVMf9?XBxE_^QBp;%V9vRN~#Xt6#6cPsVq2 z1HLi?qZl6fC>B<{(!T4ypXNL9YO&B;vcNkUD!ov@iF3K5;1w@l{Ap%JDWivUq-)iHKqs*-bYKB6KoUzKXMD za>0hhTVG&J_oRTHINgHgg?%I^OI7H=x6bdO4=6sb6L3qUEUue)}9cJ zY;vXx!AhS2n?j?RhS2hh7EL7D3frY{{H4CH1AO4r3^&^5sk)gpA0D}DEbKSqF?b5Z zPhoXfM>N9j9HcKp28NvkFmds9t$PH+P`H`7n3!jS&}1KeOswrOOVea{?4j5cGvWJA z6)4!3W1lo%-Gk0RAh&4Z6{j1dLZ)6uP%qP2`IMCJ*@#u;XYM;sD;E23jhp!ZScHti z%kK@bE0UA1-0=nF+r3i16#NKe0bkr+XknepKgPRoVykY6Jz|i^Z>B1wBJ4X5zA~4y z5$2x|CL?VZkOSA7IVg18@7*qXPp1mWy*}fJ^p*6YEAR}>?fV_2yzYA7?aL@~d|Bzd zH??OPaoFVhlI-CJ_44=9lSzx4R;3e9FHkJGb@EFK+fB+xY85GjmC?w6XfRFE?!Ige zSZkHfD=E(aRD1Z#@D8WHkzlsxPXVs)T>Ft++XwAQ2wnp>zt!GJ1htFPTRED*nO3pX z*0VDoACIl}4^}%Tm&co@$IPB(r02UjuE&$BWHLMHC$#qM$2))KBeU&O(|SELL{SS) zVp>UjrrvM%xet0rC&b<7?CuW;dP-SOS#h$oPfrZBPaA3f_9*^{36fmty<-daJs?!R zrz8~YC7HQ(iK@J<-+jpi^Li|jIz}*ZZx=7p%*i{(c!dykqn%xjhLqHNQ&eUc?s3d9$&yN)g?9yykMq}{mCqihLZ%=>-IdlmA%oG) zdbX*DW~==W5?mH`gQTE&38|Esh**J3A>8&O=W)|QtyZ$Yfk6iEMAL=6p|A%^dHcw) z?*VAV4J@9VEUO^RFYnQhcEbxzW3SC}kKu8Sbam@(_>LmYN7oet35C6C6P(rEWX-n} zT*iwc4Zw@iJNB60=IfVS3-Sx(a-Q7S!aTVyCLe1ZuPP1d_k8=(n;W+X1?6G~%B*M9 zA8I|%D4s4%%xcIieKYi2HhoDHHWZF2kGOhE?L*&vL3k42w*pz+$SXe$e#u$+Gqh}n zJ+hMd_5C*nyuH(Ke=^YRizFYc;+@H9lsdcxl%sOgBTl9>(ttPmIK`|->FN2fN1v&V zaNMQ@5N&-d@VdCUhgMe%8~R66)$W?J+EzF9Hzmt_=`a(Wpka?H7c++@H69qAHZNU! zyuj`l;GrE*M0|8bY&3AA`JeCDwQSrpiHjTu zHSPKLy9&__H8}TaD8`a`7}`1T@TL*VqtS-Obq_eEd0C!2fpj-%SB{my@-j2pI z`sOot#n*Id!lZ8U%0{f31greqA!j##GPQ~sLBSeIey-*rXJfuk?5jU`Y@M0w4rU%k zxB3ode$SJ=2DKl12{iK(lZ2Np6Qc{;#)+I|xhV?Jkz%7qtiI}9Jc|QSX`K`TunoL2 zlyJR)8}A_bUg?o!0D;DOn8?{f0s-Aq7@hu^+HVpaS6Lh-FU5X;9NP_a0cJ@7DpE}J z@X#K>>-m{GW_uE!p72y-c+X-Ehcv|*@XAzYQLy3P5^WJs0J6$A;pV|t#ze3Ft5~S+ z_D1WEy~QT;%?$(YcGO4(xwnjMlZ-1@&fW7p8|JnA@KtUXYK%`UAZVQSRWvW=-)4yCiNYG=q{sqhH;X#7>< z@A_sX`aTY`ZsT8kT0MBlwVi0wOi$>zbGo$_iLf0?j19P0iDLfnJ$DG=TBU{AK=xfl zX7ysxP%q!n)~i zGfR|IXifn2&%NQFs>TO~H`xB|2qD^3uCltG7^wQ-#1A}8~| z-~Ch0!Ni@QX6eQmMf0g-9(V)kPuW`u1zQ=#&8a598z5*^v@t3$Q~$3^2K?O)whdtG zRwH+hM92jOAd6XptJdM?YdjcZG}h20v0;jBmKAOP;|HLp)tURgZw{Sp)evcV@wO2g z_?Q^9B?agTfBZ4={dC>G&A zY%-@?*`-869cc+e>suphTmIz;qcjFWsS9s9zNc26Z|xkRbBAuGhYXxw(u)pdZ;d-x z@YWG)x3M$b#D#lR_uHgf0_~-#YpJeV5(rE5wFn&Q+$z)758q%3j6d;GjA&We@LTUZ zHN1@g_~h4V!7&28@oiQ#Y+TjGy-^?hU#5?C1DIJzVFOR4@W7mqJI3ut9rdhUu}p<0 zV^rWmSv<*T(| z?Pk|Y^^TdjDxT4o-d@t@{LAm8IPJ9&=&{Rc`xOAYi}!MC^fHhuvz~nwnP+UQ=nqy@ z?_)R%K@%b+`}VE!zI8>H?8KwVvSfEti;AM z3>J*fDyDlk1aTwBlrJs^DL0=<1lay5@*KV0A8;FTaO!*it5#EhvF#P(N(1Wha--%W zgr#w9TOxW5T!k{$H*T80G`i^uFq7hai|p$?Ioy!&-RU`BnO^KIG~e6Uus?gwZ9~F? z0SGiU!|Wi!1)v6Rl$-9M{Vlfn51rQ?vk$9xlTU+vT%V*{XbaA%(r+!jAgMb^ZR>d2;v&v-MU%iEN_;?1Uc(y+iZLFQn zYKzlhbX%_I@xT?1D@~RLKSs^neQ%(ArWuKan-kaE>;!m7iP57F`c5J?%WuzYBFPJ9 zczj$E(RkXbdGwK@k-ymn4Yt*YG6=)ZwY69*_fQfmdLi|K(HFHP&I-+EzvHD(HQE?> zMIE>nddiZqkR9=RVy7gun|{}6pV`}KloDuvZ1pbJ`_ZhCelRn#bw#GVvmy3yxt*mm zzYLPBd^z@3eeeWCwp<$NVh_K28 zwoeh5v02F6;3~rLosMGJ?i<@-vWM@@)UEUNb#?cS!QG(9$2(N=h$8tD^>Dt;*tVD$ z)yjZY{ZQ=fQ&G>nV#R$H*w_lD2x%egDy3*4R6g@;?W_z*YFa=4gjgAJ`rm)zL7)1S z-Ku;lyf;fJHcH|zK83Md{EqHe`yFj@H~8?kj^~R0&mZMZ4KdLoIPH@ODTXsdze(Us`e)zLmzqlfBwwh)hFxmXT2S>VA4ElgHwr=bv?d zud7t2!aDU{=0q2&s2d(f*@eFpo#@^ZC;yU3I*SEY$Put6NsTB3N1=VJAL@Vz^K-Rf zNg)c2{3h-bTt8@1Be@?GF$h``bZoEW8~{0_?=TI>?c1z;2rPWsRCHs;VXts9p(|~? zZ{0g$kU8LZQu>V|v*OK3rV73iyvHPSdjuKW6Gd88WA?B5oP;aB6k<^JSB&^}>bs6#6 z!PGynV!vS0OodKxBp-Ussax+Q?ee7vefco8KD<@xRVh`Gvsd0A1FzOtM($6IC-a#j zYf1YBq5v1-CD?|?1A_ww&g{%Aa7kC)+rZ3G-e**BsIzX!y`KteT+gR1hH5v+B`g+i zU!AUB?Fs$*+_7Ew#_@#f{-=Zqtz;U8lesz5-Q|c7viHRi))XJ>r&ihRNiEUUEZf@L zNAsE^J)eZ8>)ySsoygSd`s?*`?E{~-rl;~$8wOu@P_c7`p5BjM5BoyjJd}A$Zov9D zvU$7+Ei;{Er2KKwcB2M`#&kOfOqzSvt zj9t%b($z|->M;G?gJbB$-DjMf9!hEPiI*%NUN0z9=Y&3^=g6qqKOz-zreO%+QdJ4~?o!1h z+@AA2bRROFh2D10D?N2rW!!a7jd6cI+Anhk_4W3R$`zsjkWF0sqE+gYLJpa*wW@Hj zZNB4CYqyeKR6^%rLX+MqiQk;^@B5+12$;~j1%OmcvhZ&`A2uk@V(9yFpXrn*HoAZW z1Adej-&D670zY(7%9Lj8N;*;TDLXL1eh8qHS)Sty=Oi+rtldZX8uUK#1EpY$dU99y zbn<&Mb0i>TG%EIMd1?05+#DezQeqi#B8OT}Y{8CJ+wr2CR11}UO{~5$_Ge!G$?v<= zdaS;I-*vx?Fe0#ofA5jmpgxNQXz~XA-{@lkDXMjir?GAWBs5**af3_lz=tzQ=EUX< zPZ5_Jth4}*PMC!A>#)2YeK9|fFO8ZRq>wmF%TygEb99%t)kV7=H?P!&0wPE6X0{!z zTjiTAcPzhRwb^RYE-hV7tFND$*|E_fAG}GoY5x7$wSMYC{l|m8Ri>-2aPtaT6f~`t zZ4ELWj3`oe8G82R%jI(@2wJr%HMHqz0iy_kBz!!Lp96v70?mKHStr!0JnsY+Ti8Pb z_|}yfF9H?l9alSn)@=P&IE8F1zG+T*N1Gi-JvqR*V2znJO#c?(RxQ%hFN<-F39oL9 z(&tTF604-<{v6V2IoA-Hp$ioE2SX_Y&>jTRlJq$`f&HwIfOkE18JgE$+hq=`krXG0 zP@#uc3Mo((-}9r(&9ByG%ZAH=QwpGa7f&vYK^>+%pHo7RbIBz3gP1D+oEoVxNTusd zqzl!24}O+%GJj=AmhyRS_EU+n2WPL^%&MB1%H;0g=MgpX`k$g2ISew>36Y1jQf&@r zJrFP~8LUKqrgKJ}B~4D;#EV);(yPRT0B=MY31&C|I_u|{zm_zz%#;i2G90jDB?FV_ zzX|7I2+fEBpSY4*( zs)IB|86(xXYm-@n^4YlcUk2wNeh>qN=O2EGs48o(8s5%(m8g?iIvzi-`;L(!ks5Qz z{dS(ph}YK;vQ@SPJtXo+tKgzwrGt%M26%vjOFa1PupN$OgS_x+UA@iDhT{*%sXbhp zzPIuCgY>$HsMH}2m7}E*A(J=GwBo>2QU){r@Ki4^z3yubZXxz6)r5QsqkQuGfD<;Z zF>Q6+oYWze3nqVfx+2B5wac`R{QSIu^1B;*f87b9D7R< z12ZvA-~&i1U>B_hZfmcPvG}!w`HTOY zCue+q(X{gs!e#@~3j=F%S}ttSmb4^T`~)KiW>4WsUY+v)iwTQul#HHPQX&!s;7Bi! z0KSuQG7&l-QaWRGz-!u=xc-6046Oni7~tTUvtL}KTkSg=hqEGxnjHEVHxs@N*kRo5 ze6<6Ij7D))1Jqo_Jvp8oQi-EwUBP~e^m26Rirj+uTg;X8TA?@u5ttI;IRY6ubrOA9 z*b9`E33C-#KcQVQ<+Z4*lHy^q)nKQij<4zAq^kwKTdae=zkfVHMIDVPIdC8Mb=I>?Sj$sj zpl$POQ08DodU4(z$IC1Q#tKL2|*k|L`$5&JBj z@mORMga{yO<2m*_pyu<`?^YK!kQ1w~k5lljeNWnohB1H?%*l60mXoE1>m65l9mWAFb;?tD| z*6`86IkmF^elbKSvPxbl!k^+pIc=&n0kcmslX?~wZSHc%Idi=^T0jA7A!nd^(T)pV zQh8tsYDo$1g{ja>DDV}i3hreAcHZs)&`1Ac_3aMqG42=Rowqt9bbD23)i+ zvQ@W#l~QNNKUfqA=EUpEDaBuD#Ov?6dxYgKWn8b**~dHE#YgtkzKeD^D-&0K{bndG z9tMBLK-tVZ92g9ML?uf+Lk&;&X?w+We!g*822n%5de;DSN9V{)H8w43tX+4f-M!le z8w4JOG}_VH*ijW!t3msW2GyOtb%ES1Bg#>%o$!ku_YDF23?7C2xZ@Pwv5wy_QMQUb z-Wdz9X5f$I@XGL!yf{N2lE4MQQ! z+`Y#!!aw6~Ylw|p- zSy&fKjW%-o^hSAI^9ePsbTn8Oz=r#c;WFsWJe}b(Sdlw7dcP>YI{n$jd{tW(GCCK- zj~K^XM&m|btdHL1VlIati@WCVPo(dT{<;vwy#{nR-JSrB_MD1k?!K`qYsnVA+G?#A zt3jZ$L~)KPI(Xwep@eS1A-;q~rP$+zG){hmGE?!mQVE?}JpFUby8*V)>b_}nQ}s8C zbRNAjPO&!6>omCtBejH|7oRNDOofT|E7kI6Ra!oQT1)ou^@|YBryW1{m&}n$n+3uH zhp-aE)bS?FnN^86hUCF0_!oAlBv9U_bgCG*8Wn!Rquj-ILgr&?>Y`yc zN>VYkX(mijNk$J|h*TNC!M4-(wfhw8L3e^%@{-5dq(LQGrQg#1562KU5tV%H4%He! zLCSL#_xW5rQp4OXC7l{bDM=*g&M{W{&Gf{kPS`7JOf#faK85T&1^awtK0!S0IJIUx zj{!&SMb?0YyY9B%zi_#j97rjuyzeUrQaHQ?qkmYM2F~Rz1;EKetejw$yd>FB3R=MK z{X|E*C4~3MmezDu>C^;tmS?-qMO16cM5FOZCK#CFCpH?ICpvM3DU6aO+)6!C`Ctl% zXZ9#?k)E#8p2gh`4Bkmm-{o1sCmw47^FV69npi)`Jl1dWI})8YtO!yToMNKt?sFFA zbF2b4{xgsNu{MVERV1c35-=abeOXr{#fqQL=BodaApg)@3`CKC>4BVICY;Z~#O~zO zAml6Ii6i;BaxLC&5R-T7^_?|lk*)w6MMCu8xumI`aU<>fWhqma#As>BEzDvL^w$Yw z3t7^4C6ynyGd+%MxP9Q9wRaX4OAkg1XRgTFI~WeS7)qN6e!`-bQ=pm}$?4KDW8-P( zp*UNgMMx4bt9r!=;O+A=GjnK@>TQVHXE!Q7Q$(Ps@!?e_qnH|vNMlpcU}HrfmCxmP zhXJ_HC{`tUA11P{X0sT}?wZ0BR*qm{gZ*ntXi7hcirg@$Akx8M!yrRL^e}@51$h>R zBI51@lEovOi_>bKpRovQmKsM^6#i4ZvB)NHQ(r_69X0~G*AM79d_`2c7ue4+A)=xe zZH1xC$f}^6o@YztADs)Q2IyQ$xP(VQ=fWrG%T;H+tjelbKk#pXXPL;dP~<3*CUlB% z;|dF8&PV{Z?ktK)r}CN`J%F>@@rzY)#jaC=unWm@Bjm@o*Er}nFKFmU^nbDmhMpE95cKBQFAR>@EC9w#?KsXR}~c_rRdm8AIn z@4h1DFC~3XSNLjQ=$|uti|8{ZXNQaK`GnNYjC%@zTt=I29_c>r&L;;W=N<+W))A(M9{MpH@bPU^=0Rt*CD>>vVwo6k?tU zK~_K@OFX9o=9PE7H!RJw8aZ?n@fgyGrV|1Tfb>^-mi|i5(q9RX{vw0-VuKy5*30Jg z<468v@tD$DDAGR>1yh6G;3>%PP^ZMo@qE{Oe42RsE}O!;gAgO43|rhh0LNm~7i8UaZR(Z-qVE zE0OvuOvxx>t`K`n(N)@;emcWdx+42@^!`GAahAlrgK!1uB*?X-hriaZ_FW6Rr*s$p zdV2nu{16YTbv2Dtx%%1MD>*+kfe0=Ze zNs^erU$Q#3aOCU4EOhLP{dD}n9w(_(ZPUBZ^WyGa?_h)D=O$!-ho%JB-WiliY*%jL-PEbJBUKufum;!P9eGczySCrpc{xxu-r4vbzJE zp>*O!UOMQustVyOl^oh$J7S&`8BpSU=E4Su8O7_6%n25e}EDT%llYDXdM?P-Y4&P3*L(wQwm z^pSM>mzM?J&^%kDZgcf)ac;? z^MO2U3iOB^^ay00mg9a_7Q`WzGDJCIhG`nEUOAe_%P%9zp7#^ovLd$F^vDvJ#WuQ+ z)feJuu4W_@YPoB-CKN`R&oi=kTTcv~Pc~ZXaxpilw|Ye zmzldIBNr}F_y z;S|Y`i3D9TwJ_nnLUO)_%3DVetD}WSfz3d3_}Z|Y8BeWpnmeFfkvLc~5~Ix|9i{T- zQ3bgxhG+-UlaSW((QoiN&ZdCVc7&^6+riVdLsSKs&3k&M-F&Q!-TEa#M)XoT&&ZJra(Q%1#h>q0YfJNXphFf?97+7aW>af;*giQGCM-whYm1C|C&3=k z3NLLN>-pXp+5NKoNqu6w=Nriblxysx^u%pg^_&P@!|Y&G>0+h|>pmIi^Zn(i9k-Xh z9=gC6kU|MJ$Vb>?$&RMni-Slwv+bKWq0d^b>r*Sd?l;}FGdpfY32$n=VmqoGgbW+9 zs&R7{lM;fTcUx&bt-i$Akzy!sY7cKcfLp}Kt$k0NVrm;i8x0h+B}*pp>LEp#t5iy= z$!IzB+WU6e^L)vZlpy1?=puN_S^XaG9FSXBrj5Y{G{}OQTTsr{{7B$w&wb_li1a8~ zxb}TO>aHD0gn{~wy!coXw_G7=gJ@;DAl7+rLPUyV!N3{KvB^k_gTsV)LNbE+*AxZ$ z!R_8O+Ba#)`TPzMJ6nI=GG)FG36kL+-5;W2*s682@D(4~};yr3LFFk7_NCxWWjp_4qSEQ3mx?A{Z(wl;wrXqssM=6LRP$#~aAP z9w}5fRG!rGo{O!wr$dzst+(7~0?A`eW4?bhSZRI09GJr1L|4b8w)H-kG2oPz8S<5s zi5}i1OLPT;lMv7ydM~ZuA(;Njjm}3`b~utuA%rOM2|C&$mP-XT zjyEw|Qdub3Mtm6WSM>$%i z-A(Vi=oFe~HXo&?nxmj$+Y5jVltHsa@UG7LCWLZ6JvS$YJB%m47dk-AA9pLvnd&-U z@pgD+IDoC6dIgrpxKVdDwKg+`C%*j3jeEBw_1F~ut#{VwmVER;L#epH{gv`id%j3!!lFDm$vFo50 zpgvoWem+eLbU{fNCW3Jj+cR~cS~2|oi^#gTr8AIQe8~F=3IIUi@fd~%&{7UbN>nqs z^I8SM0x>yXZj4)OVEluZ@p_c-FM>^pByk!^SogMMeHR25Lxi~G1My?te(>FWk~boN zaYL6>E%q1Y<{~VRNEG;ujDb+du>oxPqY3p;q}<%~Ht+z>?7JsEq5)71Mkk8-_dOIx zTknYDi!6ck{{qVi6{8nZ3lD6CwVxv{hSY@-$`&s6Hgz8GTX-l2(E0-&@*zR6)f8rG zLXa8&13+|Mr7~e@9gf1TY0eKmteB1#Bsck%=$T$dDbnxr815qKB6{6gcvVVPGuGsu zcPOpOseD~fa9E4R_lEz!!oy6ww_}OMNW8a@mJ|RupkEy?C|j};;V~dY1z?l>8_cVp z7J?7eeBzcFm`rZ+LJlb?JnN?SI7lE5${nl4s==x`5iB(TMFWof6B+>!fK&hkfaYKK z|Ic7Dwd~h=xCg6gdur?-cjR2yt|QD2+hT^Tn||K&fS+LiI{yO$0CX&{WCbet=-$*T z3iE-kj*bf{A9{QQlER!BOb@ zK8IMBA!jFCEV}mLKYtD{t{oj0NaGV55R|7};_3vokG(t~w4NMzCdVengUce$k}IYw zLV3q|$7c%7*~k1;CzX5ESS@7P1hhW?2^zFMH!fkT+=bpaUsr2+WhY%HZzA$fW~?jN zH308_Qmay{II^o+CQy$ZuVJe~x2q9MZN2P02-9lrpN{Z)93ysW}>LnzLxA$sxpW_?O{1!{>+k}tlUPX|Xfg(beADEQhW zqDL&~_D(O0`8vwIq>@?FP&B4XRF^|dcldtW52XVhfKY~Rgwlm#CPZdFBgpI%}uV8`yo_`wIVn<}~DhdBr0M8TwzC<-gihQ{~ zNR2Cu8&qel;^B-rT-38ZL}z7YwWGZgMq!v<(yFS08HF+Tuhk@0#b0PzCufposio9H zY3Hz7AF9J`@UMrw^Tm0Gwjom$F2I^IFjoHc9oj{jpRTHLYuk7iU_Sddi0EW7jpJHG zhJ1?DbE%n2J5g8B8QytwhU*p?;T}nz{F~$AiuD1**8d0jY2`#0^1HRYYv^#oV&UiD zE2aW2yIaBs>AcsPXg8Jo`t%t%U4KcIfq%9(MSV|uzuH<)4yFZb96dop`$3670p2># zoD@bQU_|^1M4-aUc?h9i`n?c=&4M0>+PCo2o6(<36UqT17JitVB8F60>G~Byqr&0< z!G0FBrg!!>e&BCBJA9rml)PU$oSeo~UVVgnSM)%G5BLq`AH_sX)Jy5E%I8Bx4}Hb- zRa_P;)W4g@;~J^c0;3I<_dCGDJ{s)#zaI7p=~-MfLycr6 zb>!SxGt0yQr~C9YEW`8DW)*;-e+_ux7YB1{hx+ek?za0(v}5fT#16FY-6kHxi-WiD z7Gi3Af7BhWCZvE6Ou!Qk26L2vOMBt_OW}FpdGLyn*i|jKF7v}>rMMjBz3r#VOy}_d z!1euq0#OR+q-wt_v8*~}9&FqY3wXY7H(qZ~m=+W^pr}Ph0{kRq&=Ede zEcn*yKcGuTKEWnWv;$WOKFA0f4ZQ}sUikh{ctUsryrLy`l?$%>{+}n0={#cu{DTxg z1s;)qa&x7xQ@+jFqLA_f zkd_Z8bl2Y6;X?$}I6j*#8Py9+u`fr0DnG{YEB9-Elr(4;+l05xU~)}C51RmuV#xbKM1(aI8qop+@vW%B4{s5XyI_~J zUi`GlYa_e7<$f0mQl0Rv*RP7UiYcaYH_;$p> zWj!Lh3V*}u__*))1bi;@FE}qjJM0NTPeD&OD4^x}7PAUbGcwG3tovCCz!OhMN@`>T zW3S)O4&CW7-P;lyf1?GnqD6}1oJUdq*ydAdN4yMG*H;_NIa}F?GH=(IqsZFVnC*UywRJnwB#L^8x|dk z0faed>%#woRbn!S!lL?HztK3pBLxqlp5`N~I6Pks*5PFYw}vH#yedZ zfHIOV2>d_f(MBw~rbiNM2p$$jEQ2g{n{z0$j6?c8t5j3^Jads2mUPAh0CDfcCLYji zKtq+O{=Pp_3ry?=-2$Z#1psDrpsc~48Z)%arCq3F=@0MF+v7Dx ze)<_XE@{S+g_U2^(*y1NG zF(xG2`#f_kbItdpDEq!scu|kep5fJVIY`<6g!b3BtC$>+0$7jV2_92(_Nk$-l)Z}49di|$j*t4LAdHYqx~ zcIKcoqAc~sECpAVG$RHm-pDOUK;{mvuM)SJMT?KSy7a_{U|*5B`ZojGECArj!}Lql zRlVCr6u{72lBiwoE%S{6k|Dwcs0scU#qlM_3ZCmLrkCQfDF5}qe=9%GQ$2s`{Liy;QjU!s zM|I>}J3WB$Q__SYoIGFmY&HPJ$#2bbfe~Yj7Pw|0eVTdfQ)YNN7J%|q+phD649e5z z;?DLDrvNVp!9qGDSK$dVEKW!`RfTUAJl)~I($gFP;DQ%m#zv7-h5r@63v16RYb_HV z4-ulW5Tt&iKpq+m48eawdr~*~t*!d0t#&~vLd&^tkSM?MxkbusdSr#aNt?<9X>iFU63dO@}8mBt@gTb&m<`dSF2IC|8 zzoPM9?TiG5=x4AQ(~YfmLm>jix-X!S@=jNom>ym8L%`7MzID@h4KE?%Eq4rz1=Mnq z4vgGK^G;uC8|p4_K`7Yr{{Y`)p88tdw)0w*eY(vY`RBoJ9)D~MzD-@!RqfAzHVqCi zo}O=`3EDtzqivul$)4$8gYA!kzdi$6MSWy>p0S<5>o5}+4@Zfyz_c@ZP^iC;e$N8a z?WZq(5ferPhQMhN3wrwlm|EAP9wiDaX3GMH!I)|J2Oz850}GuKm%kPsroG* zW5MN8ww%CwK@267=F|ZUn|?SQ$cDihuA>vk7Vvd2+R){G>LLsrsthe2*)QrTqz9Csd zajBwm%}FhzoI{*}&p}xi!CD(4d`W4>Z0@S)DGp&UqCl0D0!fB{KP)QGqBFXPqD+`q zO6)p~ZL=eY7x#)2mp1lLjJ2@DFr5dSpA1aI>0nF2Vk5~ISs!n$e*otES67sbp`9xv z`^&;vuf`EA;5c9ip}(qPeYGAfDh+=>*9^<9tj4}EY{umXG5pyB2#R5~JH8mc$6n@x z2mB?y`$8=Br7=6lmrez=-|cU-d|Q)UcEEBh-_3AO(}e7yxw9L@SY9NgW5ySuwXa1w$$!QI_8xGce4 zLvRR$0Kwhe-CctP`wzT%@4dgOuf91|yW3C8PCwl}($jO!w+g5B5gKW_TJm_bRt~m} zK??GEFud@jUS(2aNH)jcbFggSc=P-P--Pf|T`pP3fq9OhcPhiM+W7`jEaWL@L$Ich zfHOVH@#Zt$pPEZ~OT)2u%+RF7e@jEt|M;tmi{WLC1xQtZYz_t_YzJHpBP{w9PI@3BcD8AtXme)f7ep6nf3 z0qh4z+CWUv2olM9+4$jpj@KZqN(5xB=CBS>SqUH}2Oj;0#Cw0bDpL55VBgv*5Au0eE!bMAgj1mu??*P{*nI^?$g8FJLXkTVEC;5?z66RVvUn-TA2 zT*J0UXn4fF@MEVkj zsc4HK;G88p>I=XYjm(j>{5}-2d$10sLL5y&9s*o;^u4pdcjEcLy>m8~@<~dni)J7; zjQ533Y#c=12WxD6n(^(AG0;P%8j|hFk=)2@iTG?GxdZXrqt~SD$s5p?`nb4jD2pn- z;-@O9ZvZANCvsD^pBB3>_bx!n4=@e>K;kkd@*PpzEpdF_z*iPCl@$?cs(71fs99)D(ip$XnmXgFy}ApBdj$f7dXBJ4Zee` z0eQO0fn`nnoiU{)BN;mo~X@X`Lp~MGY{um0;1QMAzig)M~;bIBK$>mmDFtb=+ zC@y*BDc}+cj1s!gTt?Ym53n+U6aj3_0|_5f*yfa>X&@582CDYP{}kopD~G;lKMWWw zw3MU+V?cR<4L57bgatgQy^leB0pwPVs1YidhQI=mBKi{_cG%xkgx#8vbFtc)7pqDt z#c;+1hMgdnP?|jlZw%2Kngb$DlyKPKI1i62tQcz=@zO#bFy$JhwJRKCC0EAHhy9Z# z&$J48;$Oi*dmG-=I$}~agxOq1mRchF&@Ssb zqJ3zDLnuj!s#*(ho8N)AhUl_}sIF$dZI-y03@jbF6~k0{!0z_bQ7}^10P&c=th|C$ zsKHg{$;!V6ODlK~0~N@~ugb^R)KbC8PErKOE3nOCm?t=sZ0F02Q2-OPK$dVvZd4#w zAl1B%Bh8gMwws z;a@v1P(lfWnFuIH26NfCd;YQS*-*Q*+r!fpc-Me88s&1s$@^=jts&*1k!}@}22R=F z1Y)txArpP^i@=aZ^4Qt$wk3I8?|g;>vKARKm+BlQJQo=$k0d0QfX1U0EfU>0CP3>! z1Sbb!%;ZI4h1%jK<}GisrXS(%2VZt%rvPBq!+?neCnZvBh;lCAr?uiV{eaGnN(x|- zt4oPA8QS4Xrr&xHPeB+eL>|feh+Ea`%EE&>gW0aR#$bc$2%Rsdt3>|6(;&t(^f5`$BT7?Tfd z{TpqX&y4SY8SWP#2z;g5K9MBUst#|e?puJldCz2qqFY;#q3aF$p0Ug-9+Ux0vKx7t zY#-4<)9n|G*UKz>XMGsJtc(c3`T=Jowc+~q*-gMeOJD6gN46>A`HziV8fHcwX+#Ek z2OLKmT%Tn)DtI(HxFh&dBLW!rln)GveXykl!dsGJa}lr{e={qZ{|~7NuyHctgiYw3 z%Z3-J2{`3{q$Y^}S85`fmggU-iS-c5o@P5up?fL^r|@Q>C)L*Q({xMF9%+lE!}5tj zou4$wfmB5x2W~9*z?_V*@-wdB0w%AlWK_Q}vfpTvz(rB3o#uyhV zX5x3G)X5S8AYQ~dR#MrMNe0R^OR_=iX)fE#qRl1;9i-qqRJUKZDrf>vF8nRCjmweG zDVBM@3U%Zi@d2GD*GXRWBoeb6DeW(;*pZY+9nTyY#Y`n9$ua+BjG+I;M zT48!gqsD^HXqOeU<2S$IIKAqQ8k)8!N+HWCc0YwsMq<+=4z-oWo71{XN0{bfa}AWJ zozpjoM0kvW(-JQ*#DhWfrIb-iTJ$YI%3(8dr6bntTrjaez%xa`K>~{zS zP_M~8GT;FrtLpi1+rfEw==_lJg<5kKE!^_yPfa6)i!KjcC(FYIfD&lHzrvt}@C^KJ zw#z?%dNzHGFWz)-z+AmU0U2Vhew|!g?_@@B#ab3#itheQnr^F*4t{LYbSbB^dfFPH zPkpci$|3KJPpYSrF*$6mgzRyATqdRqGbk%BfQo|Z;bZENt(JK%O6bqxMdZHfZ6<4S3>T8btOER7{6udB;FyO?DjUOpPznz z^jgK31c!+^sBwDaqu<;5C@KEOBe7?Z@IB$Nb4Uh~*a#o%Mo;H3H}!tl44Bvn9+F2| zRuoaF2RhE%dXr#9%MCq9dzAg77gY(RJHzbPlW9cm-Era^pRTk?{+Uoi%e*FJTm z_0~OaZ1S!1)L!b4@=_ivB?9+G2^eCIYzd%c#E{WFYPNOOlUb#1o!vAUA3zWyz>sbB znuF0^?^%*&~`H9LWP1E_E z>`~%SBiK}A&ee#KE=_M39hbW2{9)(}qlKnoq`b<`-qtH>ha1ZM44oep6Rpnn`TX=5 zE=(MVBQ{+tqHKi=%e+W#EbK7DM7Ya{ZN#qWv(q^wBagxS#X9 zPY{i9PDB}{m<0QAikqlYk5tp;6#+pAHRBpE`u_?-#3x9>7XgA0eXDAKAOz}&GlTdI z!YZQKiy%b2^@||HCFh}{CxLK9FBQF{6Fc^fh+*`mMiym&(=dYN)HACGKy86J-R|%!+_j$(OUJ8mq79)TpUT#Icf-qS0uIh6$3s_#>Hblo z-=@W^#B5Bze4ZnIn_qwFhtjs(xB0}igw1`?X<)%7_*A=LI
&>`P=`_^J|&($2p z>*2bvV&J(5$Lm6&87kgSaYsq?TIVt6COM^u*gJJ4yvV}DcHifrbt3{he7=8`dgDt_ z{PnfZ;f-;qX!Ci#OMcVW?1m_G>a%8nr08Ds7i#2|63nbC(#WhyfF(_8a{Q0Xgl2VQ zm{E9bz8B8QKy znm)fG{OX1Ageb7C9N8X(yvp;2s90Bhp2iN9!fra7#EItQsGB}i`L09VyRg0Wz7tCO ztsZ&3Oi?jJP24S@=BSNKcFgA$xqmo%#HetN+1hw`EL2;kui5J5`xz$D>10V=mXAhA zK#!kFTThan(9#6-Iqf#r_;@}6{)Psk-Mb{rk?g+TnZ?sJ$jtE3g#(K`->*0QL^-77=%NzDHX6wWH zq4-5Qf`0L7;cC{1Sm7lJbMZrvW$}ZICD(02Qv2l+dM4V^}0bEANSrApThrgjKJ1DJ&c{j(mu5E z=KobRr{%(2zr}k!c7OLl#evg~Zo;^FrI6LPInz75H)J!+Y&)LevV2)SEAI>b&hhZp z#l=CgX--g+pZMKn?nr&_u-!B|)hRC_8ik z$_@!M8f2ibUiZEwFH~6`+tNv*z0{8(iL9663O(_8=MDrG;(~~5xLo2l+ zRum1p+#4r4HNuAbpWFO_Tfw`}HG>xrS@`Zr>u-x}%IagD`H!fzHz`V^GghvA1t^7p z8P`p1Pd-9G;fq@9aB};3lJ__x+l}c-gqzTwt`1eQBu}u=rOdro|)p& z_Hjg#P@=8k(HILWwb7r!;mp++%2A23`oxM_NIp#)iVDTbAr{z<unZ3=5fj#2mfvx=^a!7_y@2O zfHhl$PR=Yrzq*>S5eIZ`J||uBj^-%#j<ADPQ9!3q(dFC zvkrosMd5OO0rQ>*W3elBi+qc$M23z!he{cPvP8!BKzm5DTQJN{X#-Y*+G@hf{mvSV znmH2V2Z6(eEEcsd-bR;X#*4}Uwmh#x%@|cA+-ZYkYJ|?N)RAjE8Su*as-%`{49u`y zz^fbspv?dk3@&C^h=~Xfz5Q%IwPWVqJ+m2Td}*l#F_}ai#nz`9>y&2Rd&yw z%7a!Qqu-IMc>=j8t)aDUn}=Se_cQ0b+Dh{mX%iFEAdHW2-yl^3>3B6&jZ&%-yr+CL z;L0EY0r`Fz-ga4lsW*YG2ECUXah1ba*xMZvn1AFIWZUSM#j5#A$;S4K%9enK7tXAe zi9$@A4ZWe<#hg{|d7!tfYrtWYmYRb$`7un&T99Yw2XTbd7OlS&SH`D@)GBd1l-d@o6|9V^32z1JvY=BH06iYQ275*q|OE3Wh)kXX+FI)U%77g8fg88MxE6+DLWk7<6 zOb*47<_mX;b@@=L5|#tS>x=!6(jD6N@R)V$@9bX;GKvEw5;4KYvOp-IyU@jZ+5W1n zZs`rc=g}SyG@3mHK4HIA3u9AXL05lhA`iSwc&=HESvUmkynD=!>xY`}X8lI(+P`Tq z@HUnNzZYrY<}x5Z`y@Zg>GA7B0bJJ?+Wex_IT&Mb_sNM;8Qu|jf_vI5$Q-`4qwO;KYbo-hwX;St*V6Uf;0kW z4M^E4+j`*`zUF*U(bOwjtYr0&NY0TPqufJxmJyotwTEkf)B$JeHv=IA57LfL9V)9toFeXY5rbi~_yIVO3$t)+h)356>TA}e3=kG`7czt)H zJrj7LgSr7U)zszA@mxKf^_$4+k%HTL2yTZ0W@k%vC-KFNdyvlHeCtj*n3^0(3u3CV%JjCq47|B=c3g3 zqvMM)ib+2>c+-DLQ0q7~B$OO8%>1-|6ah$?S4b4%sNP`|^jqN&O#~Avj!^;X32+OL zHi2BC>027g_sghLSfjEBu{mP&&LXM1`7BPX13}Ohm8b@nZ$|o% zaB#YDkHXU2oo=0{j}1?f4ZNiz4<}qrE>*w>OCwWJ1@N!^dKOcm`6VbF@hU&^fB9HH zPH8>%D|?yyoLbi2N+3jfIo|qXIf4Uh`u}q4cQB1d5WZJfnd|Kot&HYwPtU05?)T;j z=WI`-sHei7fwT(bTz7dHd&(GJ;ie!hU&r2yNf}i3H9XVLa^oQ8B&DJ-jD3V+$~gX5 zTme%VMEObh3v?$Mp|mS4C|oIl zpb7X1ZUPcul@h*kwWvUQ`WLAlCMl38y%dqTOono-$rvk#mq7w6@{*kSBZkX{=;0~ zJ+V_TB0gH0cSn%N%L|h}vRrA4cI`b^^qY;#p3~*?2Dh%{|06xro@4+h5rxHv&8EEV zkXxfXLwAR34tCqYqz&x+M?@tdBN5|OMTIt>S+kj)`V0_RidXqgUc@xm^WDhR_?*<0 zf}J0Il~jh3se-LmKhJv4FbM%FeF`p2_fEo znzzy!uQD#63`_!`r`3c6@@U#)^hP>hoM(sGW9YgOOrkh%@Ic+*KlY@k*jj&jnJd(>2x<~M-7~Fh z)#a-K+9DLKbr^uWNPBwKsElSA+?Zc+ua1``=FW-(ZGb zI~X9)Q;eYCyv)up$m%=@37nZ65f$>-y;cvT5it2{w|Xm%u>PFaecNL{&RaZCBF2t9 zXo@krUN(zlMy$MH%VDXOO&xl=+Z81}62@|uIW%25X@Cr(3 z(0#GRvtLor@UAZteHgaxkb`;?_9kdlg_R=QGX_KWZWm+KWrcn>W104u^8VK5Vh~nG z#d+T>v^lrHJ{!p^(91y>|Jgg7w|g@wR&c&#P+Y$1spevM-NsdMK52x_XW+U<%SwUj zSO0)F)dS6t&cr9HQ_Qc;ZM6{mD0HIm9G*(|<)@8-R_??SA?&qm&!i?o0;A>u>$`*bmuoK@38II6YK z)fjFipLS3l8C;6o;T~VX$${`veRg{rp;u0jb^hpkvHk=^OIi0?rH1er(le0ir@m~-Y2 zznp|UGj_JuI{4d?pX}#SSF?89{AY#uJPe8Xj~#eslPI~e5V;g9W3mNoo&q6ZKM7bq z%Aa=>J!`}Wn4QzR2_@7Xcv9uBeE(uy^!9l}B6e+v+PdYmsp2$U?R(rE3;$5z)jSf$ z)9~fynM@i$3yj?esV2W#Z){QU`&~3c*l_IBP>am83TM)ZSN$ItJ>%?)P5sAg$B~Ja z(=Hsaic#k8t4+G+y;|RuoymQ_;%`VZ>J%xdly{?tTAaT3?q`74(7D_DHMDO;>fzH( zl6OhN2U6f+<2(P;Tx2n=*e4tYp-_=z7Jjo~(|kQg=!da=rNTdXLev<^;KC45P5tY` z>H7-x$eIb$!x=3*mgAV#!2#-+7S3_4jWBAZ#}clGZwieQ*uN(K{HoMd82Z+b}JfIY3r+t8XjyF+%mFmR{~#zxiMm# zI!H&%Su&UW2vMj|GVhtY&{d;y)l36u55{Z{4QBkQsh;`Em2&H@#w_y z%P;Mr&XDokVk})TRG+x1ynnKR{uHzkwiV{+QNx{5f!zL~5_lgjcPb72}X$HEMX%=glG zAm_I95v4m2-}u|>O^qmcznIyqR*c6J0fC?Kbo8D^yEdn#T)2ujnnq*^1;0I-r$O3Y zPdkOX*!87%YC6L(Jr*T*4mV!6Rh^F-4>L&CN>TXPUG_idd*c?$3DlCny_g~>e`Aae zE@(%ZQc>r%P{m4eXxFK!Dq4ZH%_JnCT#OJ|C~N5DvEGD@`>FF2p1V=4FLXQab# zC`*SzP1Jvr2z-7tXcsLFTIJvTQd}&rGOJ6y0o|L&tEsewfeSZ!N9nuU(>pVYF;?)2 z-{TT7XzNbmetvhl((aqv)xwo-!cG(1Q@Gc;w=f9HTV4MS1OdBtS@~>Z(#(TB>CAYY z`M$(r)7FdU;Up>cf>{`a|jLX{3<#83(d@&yHN%LiX@s?8a!P$%w1^{bk6fP_&M7GuzZhr|2F!!uTuhXKUK@^hb7?!A#L^&{jWdK}t2t+t!`uWvw= zY|^?~Hti}KwC9P`8?@bm3_42O2*DQ4eYUfO)l1?@bx77!T`G_Mv;VW?a-9IDTTzD}hjLr_HFL*qD`gJW@y0SD?Av`sD z=ytVJkr$6sJbRMSj|8p8bmu*Gv)f}in|cgF&rTL_uIu(NU+p5{K=d<)#}M?acyzzL z6SHJTe74S-CL)?)q$SARiG{M&oIADiOa)o`ey97&;u@hBbIQ_WzY1m z$+2SMfsMOHo-+Qd+w`HL#$yk6&lZshD{vKMU>$1k8yZk+`DrzoyU^JE~Tl z8IDX~CcDO5MW}|TF7@IJF1&9+Haca}_rL)PfvFDqZ;lnHe?r&d>gA$GXtL1N*&IgM z(kv!oN0-ou|4r+4lsGJi)^rIC6u^vWT+gSb zo~wR*)Mk$hjxLye!kdG9iT`Ouham=a%=*qTvG%UJU>8dDaI( zE$)W}e5E3-L$6Yt9-4J^g)9kil;`|qA|WAU{&hTvIn@~)eg|_T1DGm^xmW@LusN`! zH?D8^{R!K$!pOAB)Wzq>6A%rBEjpeES`*=_g}IGz`J)7tqI@FLIKdYMCo^lSuyNFe znKDiOSYE?g!WSw;P82DdI1L6SY4j(5@0PP%+a6?h?+-dpcwDo0CPqS?Kn(q5Ov%Mx z@pY`Pv>(7^)^Tv^<(WkztMfHGLZ;7`TqgrGzEM3eqUb$&ZG}B~rds;s_n?)8L7HLv zev>?Dt3H#70h0`Jr&MOBeiNghT|$Jz_{iI_V}ZJ2!G4FJ@#N?`NO;?hVhCkoDPBZMGUTGyeD!D-XX=N34y8$&)fBC2JHV z6IFT_2RzXJ2(m?8DZjE9!8?68p{F)AjW?k4rfY5hnG!)S!{9ZED{Oh2;@EW^KMy2RTUf%qAeFlkJ)=oUY<5@SAWT^)6)iaaWXT)@ZMxh z>(ahf;-l4y_YZzX{+10PrS|VVWJUlP!Q1Rp%y>o%!p8MYMS7z{swWuffb!MZ_L+N} z_8BJwYNR9zZ5$lcs~Ng|tM=F*Y8%9*w=;ACa%EUE@K#@}tW1o`tJE~;%T&{5==z4V zpk&Lxgx7i21L;t#Lh3rS4F5)tI4S;G@LO_)qis-Jc5AQXlIj%i&S(AFZ5~+uHP% z_&?OA<&JmiulE~0eT2OB^IYAuTfcF3k5YS_=ACau>dHNfP3bgOUv4L#COy41IdlDB zZ4%fC|C{5Zo=1H(JNR-ny-*{%Zt9l`4u)Phx&XKuc??Zx$8Yg)HHZv_eG^ccuE|A? zpw7mVVWhokOH2x5eVcMi=N zMhMkHBC|KLudz6!#GkTnF7MwD{wa=ZT7W4(U)-fH_k0v>venUlI2ZlxL3}_A)P6yA zv&OZVq7(RYrH8lcjF-oZ<4G`tiR)=ti%@_FE_+8(%lgNRHKCgO}Xg;Ntj zT1+Z(lL1;{jJZk5a$hN@&@EGUbAB3(P5h3Eh^-y+lj&eEOkx@QzCLWNiD;6V9-%H` zQgS<@>}_1q_{E4J(vHFGa2$4!aNBskVqgT`0Iq5XRfEZBlSKjSB)Lp!pbOqJ!Gj|t$ z5$gL(@MD3gQgjD#y_`(YhS*y&q#IqhPQ0C>1*|c=Z-l{^S$K4|c_f`1UB=A_?IwNm7?ZUI?#*8{o2 z3ROE>%UR-s-HRFmKd`x^bKu+!(@1ECHht;mU9mcF;rDv>GmbQ0(w(xc+m&-7Uyz&o zC^RKJo#uA6YPqm%bLDLlWe-~*ppaxq{C-z=Fx(9kJt%BzY>~yy1R{t8$&nq386z~% zn-RH`6{g34K4U@{gVns5SBI#HVVdQuc~hgo4{GP-xo02MeAp!ivGoVj z>eo}TA{BVuihT|&QH`)!(=$_aBLw7vO_Obt8#I@!du;3H>;&}rm@`fA#637gjq?wsQM=;ddl zU`*f|#aRocJYIDn{~Vk2q(bnp+mtp_rtfDvU2yixyLlnBF#LY!iKKGY5Sw#tp`+;nR`>+S0ke zG6Nc4)+!}h@8`{j)t;m%fi(n7@jbdgK(*W@j4I< zLs`UAfFwHt`7wcLrh{$|5#dH7J~H5`0Yf4?iGz046rm;~3d8g{CTiYRGy-O7tMX{W z-8jRcpR`T8)zu?KhI34nowAfKKWu4|%{DtX1#^j~*X9q8q@HA?CeUG}a*d9D;Ix_1 z<%fOPnArI>g0g^U6Uv3N1}>7GJ3O{Sz$I_a{{3#sqSlHZYxNBmM0&t5Z{TptXs(xG6-s;FqfT@qppwZn|)^|ndW(P?pc|p3po@g4l(Cqi>|};aU!xsC_v~j+YzNsF&z1ooqp`7 zapll)r`ra72+?!|ncb^!u6X`aw&}G6G07E4yrBn6aJ6Bs;YOkc ztYt~|{M7Lw-iaYEyGeoyDU-ZZ8{IT2cNVge4V*qaC2B{?#UXwklWU;x(d?E)O&%Twy9 zdRGsZx(Z%?iw#1pajhW+-SNQ8`Y%AoRscASsK*8e>!>5ZOL2K6-VXZ)GH#*{%HMyeRcGtCgWfF7Y0+B+62>wVt(4T^;+vnCkWetsxB6BV0 zZ2Z|XaAx7-k>+#18#ZD-G`LYvJpP$hSy4FV;iFoT`~et{&ACVVz5!$4nNB z3K1g|ZZ{V0S$8O}zJ9Q(vf289>06ggxra(?`3k4)^Vq>GvDI#W%#`56J3AM%LVsbu zMxH0w=1(zg(^p?2Zr5XXhF!|jw5Bg(`O0oNA0G46?#&+mOrA@l5jbFuEd09ubo^t% z#*Wo|eS>h&{xGsB&(4D*< zu}H(#49O;NMxPW06i?nMR~_)1Y?omic_I>@l8XR8D;|j(d^Uj}A8#hzO!n9B_47on zB{(9lAVa^~V>1)q)U5<3_HR(D!|cmb<%LwZkOBL6Efyo%h8%5Qp4|C-4_b`l!zRN} z@rCubdyYT_jeMlSBVxo~;D0?~Wrp5zH13AbD!`MG+ORuta9c!w`cdRb=hi&EO2?1i zSyc|%NAd8bW;Xt^G6vJ?o-HOlEE|J&nD~Lu<8AbxUstYaXDl(oB{N%#n+AV6Qa^6; zmNl^Y;P>tEuM4`J|Dx52)o5fraQi^6m!->!-dB6qK<0z7duQ8SlR&JwqP(<`px7dy z$iHti_Hn@4*Sq}bOxp8GK0BA;Jm>;n;u)3tqoQfL6`w5kEaIFFd&aj>>GYx}s(eIY zT}BFRQI3jaxa=cgsSRW|X48wHF9p8^zKtvt-tJ3waqCCxEMeE}v5NBU$$ryS!%^6( zYUB)`fd}YA^-E<=2N&fiv#ko(&qK$IJ3SrU$BjXn#wLYY(#V6RRt*@~BXE*@mJw!N zI=Ej(X(@unX_R!gHGTYz3!{=Oqqww7`gvR5&re{l*oa36mwp(`vqQSv=5A0|vDEe$ z)>dw;X&_h1@#pKJ^M2sk**-_6V+>zOu?(pYQCeswZG{56-(&yc!rSpy@ z50Ww{$`2yn<%t=WM&CKTja6raUX9HaBxa!6dDcLYK-#@k^;h`ujUzjH@#6l|`l;UG znbZRvS4+gb$d5eT5#L^ZMtRh&i5n3s3zS-o<4mqQ^~zNoBwt{X1i$Zrm*?2#^3Nvo z>38Wn{R`h3jdQ(+KK`FvPq!R#!jEG%SH&n={6oE~A){=4(k2`p$UZi|e;2M=G5fyD zaISn*d~#5FYS76^7A8{U&1!A+Woms6<2kTxU=hAw928CCA`()NguBMUuaVyoo_TbW z8*1xx%5L`3yZ0-ugU&2;!tP)2a!|G5D&57&POocfsuPr* z;K_PMN`Ho~F(_xsmT%lV&3kf1M!vi*f*x75{VWkTS z`FD{6I#11>UfPw*Ss!Uu=P(CiXYz8t82e&It4hQ^Z10xcWayUlKVv;}q56DmdY;<1 zd|zT!o5c1WYvmMvHmK@-$fA+JkKXRE;KSfU5BS;3Rz?hd?`=N>I)nnSi8mI_$P@2m zkrUq_b;3nOWCjw_g2vtzkLiV(H%O^TbaGCiA)P;4f0lBy7%^%6Q+C&__Tqi^EOk1tw{N0Vz~2_x z?wMT>o0W(HtCsS z6)loLvAY0ucKU<{G6VG?x{9%*^J@8AlYC5eYX7-v8bN2^ z{5}$+To)YR%b|vL7^+(Tc|ODQj0*7C@LIrtcYy(1J99bE58%KXe8yq=0@9VZ&GGwK z@Cx(w92;|GgwQ>;HEb*!=^x+X;y_I54nZQZs&=*+7{u%`iLj8QEUA*btVw~Yt({_E zeLFqAm7ZVyDU=r6yWkJ2Po*!a6!TI#(JifxKUQnSj)@p2HxcK(3|*lcu^Le290u)BAuZ?a^zFSmmJO0#6UsN z(11e_drMP@5KXhs`4C_B^OD3YiLsu0wkI)9es!tfjh8xlm+ zov{^gScu?$?MJYVH-`Q!{BpyXNG$gLEM7=+@htNyV<*j@u$# zw95xV%$~uh4tF}*sA6%$MmY@8$(Pm#JOgBW@yu&pz%%m8<$IP|1_3lf)@{fk{Vl{{ zubt$za4Km`Djxri=8WcS8la~biUI#hEoInjUp*Pa-FFxEvTrhSh<|tEpWc=FKBarn z2&h$3>RZ^Co>J>7f;%`2-|^Y*1Dqi^iM$&t5=W<-8U)~nuxo4)T#}dmf(i}zXP(g9 zU5`?E5m7}2O0W5y@uD3Wd#g*XM66EgK)?Q3Ik|FURLPM!6LK$^J`!j zy@V}7!2azpFYQIe4qfZ6&45U?$fnY1pu_%k?*tk86TT)Z?xJ$Pfj2(%q^>-~@LA?G z(7Hppzo3B50{ZdirH$JRT$9q)-LWQv+K<@v!rF~jqdQ-^;Xl0qL=NrLmmaSdv#bPa zXHa7?1bQ3BCl=9$sr{b+pZ>d^rbpS{sDOtjPiImT+K!uKdm_f-YYN+=9&P{*0XeCg z201XR8e|~C5_W}!iVG{>Vu|tw`VEBtyryN+{%2O2CzIF!z9-5Efb-+1e59jxw%qGHbgg;RK$z=@=`t;~{ zklx0V`U|1|{U4?Re>c+Mhe7MNdz<=a%y;g8@WE8T!8)l}a8p!h$~NBOas?P-qzJfe z{?9nbpbDBtYs#hyGQ_~em2bh5|9G|XWyq`V^-N63#NaZJ+ zA>R>j@xahJ6u~3VPyHT62qjOsf~g5dTr1Fx`M7^GV}E3UNb?fqnLBmhy`7i{FSViA z5C#jWbi)^&lsIw*IcTjB8H=j4dO0*{&TO{eWdrz53kMj~R!3I&d9H|hBT8RZ@1qer z>uI~Zp)N$JCGv!&FX|{1Z-v5GYZ}D6$&5#b=){s%3z)>X1TtZNHZ_nUY35Czlzf z$%quX_kOa&&1zDw!>cxbHFJ_Z?%epDwjRYa$ab?C(!!G%LqI6lcOoCE_+9g>$01Il|2>dYnMnVWrZP+pKOhFO$jdd^0vw;ks9{>#hFK?yB}EY zuD>mIrB7zKOd%>^BH(3T!6hljROa9xaTqc!CURgNFdqZfQ=r$DCr(`1+hcPTdP^sS znk`_>Dytc=Yt)o}Utz*{V=`t;>s8{)w{a@p@!5GGCEa({aQ8ipVjHy^A)*2C#%-Q=nbAsNxyd)rJhC} zvmW`)u^Bnl9>8EHf6K4>foLS+uFk!AWY$+|eMDzI7b`7NjnGX(p5IR@qWfy=A5}(x zolE>iQ<|hHi>ka7MoD^o_9upVZ+7`7|Mt>8arwm3Pmd$bFJ#?#bi-t!Hc+*^S{8HjYwWLAsMH+sZg zqY#%rE|9$)a+jAl>YkO-SqaK1pT_x?nSbq99#=Q)hPnM-JW%+ZjLyvm4hJ9{ghJu1 zTiH+|e612CAm%WSDxJs@WAD>(X zcB(%_7OFHUiR&;PXCcu61!V+j6ig#!e;tK3q`(>|6D9H&%HMHGmuQ$lz^9LrZj=EA zc_NF{nkLi*7=QrpvH%cD-2cH*AB?*iP$y;5peD0E0~>fe1~KTr2<-?#lrkj^%H=S& z|EHq=eAe5ZS@UC2lNh^))Q}p}81}6#xOSV0QvlgQgWk%Qh=q1X7h40hC5=Pbq9i`M z9)dYixbs&K68Q_|2Jf~Z24a>kI}l8FZ~hAu(ya>XJ{Z{)lrvQD7c&a!KR-mWF2Vdp zz1!v!QFyi>{zb?jOxe%{n4E>sT09EFE<~tigtxyNAu9O`3LaKWdMmzaPYdj0irS2$ zk|nZ8*bC%uB#_1dAQ;n=#UdR#<)eUoK_!R;(u)fAqzJN|Qk3K`XmkPrHhq#gSq#W* z$bkQVban2jfE{i zgEo|a>x5nDmLCuS5Qh@)H$e-bL?6d?_8puS;^n7t+RJYxdQ{YAR}q6_9MoV&2Tl?e zXYhZwzz!%#UsJGvN)8ehIN1Mg^~*Oto#lIAVD0pYNMNFH5a6>@^exgNFPr_lAX-(C zs)lpa*RA=3h`}iyDsDPBc#!|UTaGzcfQ<?P?xus=I%t4*|>^qt@h1dagGG=?#2Jf@V&Kj5%|1{AAy4Aunp zJ_gwPL`LbgI@n;eZg}z~!A@8!6aLJBK_s8M`kWX5 zz)&A?zzWTs5u8@s)uh`B?H%4bJY-vzLRmb(_Se;G$9Sl7fJ4&%^@o3sJ(#Ge68$Y* zwi*j#n14<%7#Pq}uN~&)bE`DtrT+g5_yqD>uN~NtB7$~OX_CL7(TYLk(cFd&$Y+zT zn!ozTqpx1wwc6f-{lDOMgme`oi=t7(MLWWiYDn*ZO=b!Fi#&Tn3DYJbC|Nhb8jr65 z|FM&u2R0FZl#gWDz#0f;$qP0N{sf67w|v+RM-EFKfh9HcR{m$l=ey{z*Bl$cov``Z2A!tN~kbfc3-T|vWde9GhrvTpx8^)3sWe8bmKw|QOKA1z{c2PqiiRK<0**4`FCQOYB@I|nGgfOJ{8eY`xP#5Vr2Kpd*uMEt9AhjRPH?+Cdf zk)pU8dD1GUcv^|$!jJJC8}%yn?*d?OK9faYNv3#7p|uy$kdZ|E3mP3vLsM+Y6xn>( zbQ&Yx2o~Ku*uVI^NlW=2a+DiY^2{3oI44SE)xc)i(Y(iPFU{>oa|DrV+;77cwUA1) zxcr~a>uSmySk57R)`upWLS6-i4)(IOw^*T7=s9={cUZj)IXsBKw(@_@Dg+aH16U|S zcKjxhFmq3z%Sf^{1AdvQ8CVa%Bi4ZbMPP>sl%A<(KrtKr*-Ik-zc9F`g0I&dSEvb8 zr@^lYWHW_woJ4nViKz0g$}un$odOP4*e?ewIfS|S&xyGjv_Z9I0|vITc=8{h|01-b z5K+{WRy>Ep#K4UFKW6B9h5`NgIJQJq6N5oAz#JNcFJJNjFdGe$fd|ea!!8LzfLp1E z7@+-gqyRoK8A({!y%1_kelreb$%!a;`1`99|1%5<(#hwbW9f|bSSVmAh7v)rfR?Y`L%M_2m1>46?}Dq;u`!2Z@%R+OcdpJ0Zba-!*gk(T^WP`ndgFk z4~06|Ki#yxjIrdXdG^Jk4txiqA`fRc{aQ^T zmn?hH@cv)V#~64%h0J1yPWA!l>#r=GgrDZUpBr9_uXjVgV4yaAf}oiA722S|f>mv1(_Gcn0H7YeJ@>^Q3A^G34nAENTi2oknUccS# z|MXJRtl*bs@_*lh(PfZ#fflNkPN24Q$D)h|+u*m7?`ST4)ev|LUINEAA>hgkzHM;J zLF``=*o)IdO}E_R2gvXSm-`Iyzd4Xz+1IXpi^OqZ=?IGNNh3G$SFkBGdpYvp=8Vc( zuJ0o?PauNf@2Z_BgM|fO^(B+Og#1`J532m9{4=N|ua%k2{T+Xek0`eB)OO;2CpcZT zoS`V2AS(aK<@QNBwqvK+0ozsz7tByR$ezpW z@o=S9TS#q3V4`TahnVM;RPIkUJSmUn+>d}=jQ_xnA=n_nrTqOBo`jB#E2V51 zauM)WWf!%)U#rS9K;$8aByiu`s7c-Uqsg5b_uNs5L4YX_l>}UU?oQ%e!@D2xCvfK7 zMax;1gk8M00ng{M9<;VcTk{y&ES~f|$sYH@gx!Rr42K6RM(gtUy_*Wt0h9EG7fez)-|p$552 zcc&-q5g1ju4ZI+CvzYzMMlFi({5jR&;%Ueb;))1CL5OWv%%EOr*Fi6ud`zi^D)nBH93<^$DIT0)}3?%^Q{&H z@Q)P~z_&UkU~HOX5gOF8Tr0MtFp|}M&QTL%h6i$w#L6>Cy(xIZWl<;}du5uf%Fxsp z&{sjX^-W33j;_#G#H^WLdCXg&3r zLkY@0(>fS)Y;P36_qih@~ zH9Pk7$w*XGw|Fj=PZ#M5d(GreM=pg@U^NE;3-&u3HG@#&5e?xVdS#&`XQS_A2|F(g z%z@u+abiM_QC|S~^|*E+lg&YAMCSlQ{VIGRwtVYUT9d1;M#~SL#V>{o6S!4Ir)+N5 z#DP9RC>C|YV_-_BwUx*40Z`LBo>pa#U31o_^F&

Ivzr^^~hx>NU%Uid3+}heAy{vd@!zVz_ z#^P+Jadvy7amMPd;r!O5OE-&z;QLTV+lCkq%fs(#H9|h@E?1TEyz|}q)KQGr&0YI< zwwUfVBjCCGOU&yLa8-}cV5B%fulOAK{u-!lUu^!!D}TyMdapYiHVBJ1mgAOdbFr3C z%zt{ts3)plR@K;kocDdm(Yk4J*iK?=13iN-hu~JkK6mQ*sZ>j(Ig1sq9Ozp2dMv#V zKh5aMm`wa1NJ#8aB-dQBq zB_h5(@E99I$Lq^Wf9@Zod^mRdZKO}`AF88db*8&yJ@Du)deCv@;BeKLqj^kgw_c;W z=KrxgtdiW!+LJ=3LoBu0bi5_8IH^WkywIMy@T74sa%t)7RYb1Tx3W4>RK7ffK!1!G z;jVl5rmPe$>QP^ltDt0U`DWi(GEQi>9Q!6C<+cC%IpLP_hK*}=vwbHl2vmHc{gnkr zx_N;cY!NkYcN%`0ql@Fn$-h^| z^`0Qt?zvnryIYtl^TcpbyY2Ah_-v7WoBBfaC{`iFz9q3Xe{=3A=0JPMgXF*}ca83JJu z&2AXh`Iu%H%6{3?p^?*jv*W42wYGdg8!jAguiYAQxs|dexlqDr!d{ib1-%9?SgGb3 zzM3F(0y%HX(3wHpALN$*DiJPgaHfRzDp*Z>24?<@+h~ZJK1mTa)c#5l_UU{Yu{&*u zEBTXqBd;XRcfejZ(fdlre`*4@_;FkiX91)&qC?c(^D!UFvhkaj*JAtF)1mws2G{v# zUnK>d5v%a}3hIzGU+!1fYR8v8kD9xa9s0fRB6fhg@$T(B;wXH+X1qP}a(bnSw4Ekb z8VCb6caJw^Tdgw&{o94*Bru;LwxY3HU(+dtX8*d+CUJP4F zTr^5C6R+KI1MUh>s9qU=Nzh|Ev(?aEAVZ{0%m$CE>=uOR4Yum>xt!{Ko7Pcb*ijr< zFq^9G95AYOBh%f)te?2nwz?;D_;yo4e*X!u%+V}n!)OXdL~M@vRNkL&y^~JA&qi!o z7;HDpVT#9s{2o5SUv^%QqP7ze){y{)E@n38 z4lq1EYg|^;0F11s(rwPj=}u!zCrJn+N;t#OunsHSZ zvhR3jv&;{Eu5ta^gY53Q{J;rdqYRzTQfC zh+)BuaC<^-Dq>yxjt2qm6@!nPWesvKoRNQ}ASA<5{`?2!EbYr)Hi5^0^PoZv4);yp zj2M7T;#QM=8xzsfX}AF`z)ZHBx}eeVyUs;6_AsUvi*Ff}b=O0+3T6|=%|aRpG!?31 zN40Xm7-4h9u;R=g3^WB%htz~;e3+4%`27t?eJxoP10VZT;HEnhS-5dm7!;ACKh3x+ z9bU1;=}dO`YuclXk))EuE3})>=!X@gMdc_wm3~&d&FI1S?j)VY7x1*;t=n3%FkxMs z@EYW$)X4kL^!4?}?1(Qw>^V(KHsnR+G4aE0xOIX#Yj6E!G z4NA^290{+qZJZ=e)-?_nO}U&U1=JU(Tbxz>u>E-tF>OdV7$Zco^32CDYhHJGe4$;N8lB%a&*Sv+FH{+msI2DqI6S5X`6rbg%C_+oA<%DvY<#iK2t zy{!4V#)A1Wi@nA`XUL`YZBPC+cd7GTCd>%m;d7EIw3$~{0c@XeGrhuxvA&Q%a51$^ zZ0En zoQYJ-vGS{G>{BBEGSX9z)?jSJJ{5fIMgLQ}o{9pftx;Zlw#tRls=g`4Z}i?2zbWAy zFdNH$RHYm&n6X#SIyjzZs$r!e4F#ICftMkNyI)+LZSxZROf)Ss{u62GdcIt2aA@hu z2Efz)HXPWGH@zt=zh~8$8dhab&4RHB_?&2KGwoFWAx9)*wz$XekVEGVj-F8&*U1; z7!&6qjSjvt166=qOT3zdfDU{@s`}LHoarMGQ~&LXPd&47iHln+cebhEENd`cjSM$+ zk7@!!&(+xIxrPsnjm8Wv&;WRBPk8v>vGQ1&qQ3ucw@&pNthvSK(xgAg$pAliU#>$A zb`n|_l*@-80^B_lBE}@(ACPWKLpJ7{S4mdEKBU34HU04>J#aH?aS+Q4FJd+j63{Iv zeyaj~(<=C}egEyak8?$1x3EWxR;`=Uj!4#CYfq@@jbw=Pvypv3dh?iCAUrFbqV!MC zCJEyDpXp^IFNFx`?w`=C+B}j>gZj9sQ1>k4YSp0k6G&AII}evy4;js^rD?jiXnQI6 zqY1M!5tsEYGd5>MlXZpKQ|0_0s!^J|#jSGK6mbh9#zoBuNvb>E6~Zdcezyr0F;7r2 z2M3)~aagS|=KoKB{6F2(8STfpWv=zfpUE(BP1!S`clt`^Sm6@w?H|X%|NnI9$11#@ zi_gw{t6DpjMHIi88!K0Z-mBzzP1ISZ=(3d+CoJd99N-cfD>t5tA!Vg*q6LU;LL(7oInXRI-h3p-uN*K z&g7M0nrRa4t=&$Z3jBWzx_>Wn1K*50j%YfhO2z@fj9ZL&50vdZdavGSK(ZGg$=%dR zX%*|-5_^t?X%1WCV4P?Yc$4>w(s7G+Oe|AOTr$V>vm(nkYLMp7ssNpq94oswg6n{`g=RHB3M)s#(hwjK{NxxGKao|i21cp=`AK5W#&=wF@%=_u zyn$a?gF5nTU!m(N&wVyH8vTLjZU#>Fd>cO_D9$1EPEOQcqHdaVM#XX@WwVAG2MIoA zp+97!zKqH`OF@M@$9KK1gvcBRTT0(Cc}5jZ*25}g{Z6Kq##a|Hg)NF*%CLHUz=eCF za>Zi*1W($6_7i!WY4OpO?2nn~xlCNXrE0$#Yp9QHEacj2-m=+e#FAIcIa*($8rXqX z87eKAT2|dp(m9>VVMryLL$rQb+sj`2=^y@VF-vtED5=Ii&YT9rYC@Y}MB^`#_7Pm0 zS$a(1nDvOMEl$D01~|26Gao(zAKz+vT`)xc7hwCCd#|)qYeV|N&|JmTs+vQpN+q*O zC3-5O$Y=3O{elgmw}%RgN}5-vbX)l*+$qvEoENvm^}31ZqG#^ufNzUaLeLb%+peo#b85VE``sHJ-FmsP*{NbTFM_~tK z-<{JWnyJ`SMBHCkHwgjGJ`j1F9$(sZGxp%A)X3M`(m27#W?j9$0h(P*p8C9!?L1%C zT%==8xKlg8{jcolUaWnks&V#O1&~)ZigfSMtS;cY7rt+JOA)#eQ4H#v(U!r$rfxzU z0Ck>epEXQg&W#rx;MTgFbylBy-0gpwtExK8-`P;PT0WZUUVYz8PqOCKFx(q%nyar7 zuX9upH{BapvI&fY?RzS8vUY4Iyg6%hAf_-y|R%d=A&aUSv$G`LPdc3C)yA3 zZnEmHMQOFCia6K?nE{nR4J@ET8uLEbvebWL^&};-dXy5m+7~v(8PJE>&|}k#4)X7Ub-P6tdXZeRf zBbpcBSwJAgy|;hjVW*FkVECJE2THBV9~P$ATE_cubTkF;n&g9Lv4$2t1Gx4uWz!q4 zelu25hfqdlfXU=8Kf)=P0spp3AUuy+bdAc0L=-94U|cNRIUzrt56BSuP9&UI6fHY= zgr{r$B}R7qvijRLzwq@|$|uC9=}fXs3me?~0YI`r^j^iwhO+6s%A%}(c85uJn337^ zW*KrHORTecox+@Hpr$h)MFyE)w$z36Dy2OOH>bJSd_TybZ{$jYSnNl3_sCdGNP~WR z#A5XB?55c7>?MW6&HEL(!%bfl_cgSrhT>|>Y~%l?AG@o>1r zk^Ry3u`0$#>L{i0KZMbB&W{X0Gsod%2`d_ytR86 z_@6!Tfy#6nlQKUkWI_suMXEH2F&a#N0f=!^QDS9f52coOLyn7>>H+krWW<WehZ65D$%RH&n>I)X`?d}Tgrs}LG85q_! zx}=yeHzWI2xGNm6FH&c$NE&!rCz8)jh7u-bugD~vsfN=UYwaUyR=PX(5)Ev@~2$QX&P+l+>S8jGMnA$%c zpAl-#dQ4Fpr`djcmTUqq&v>?-_!i?l`NY1x8LDGfZq{1N@%hb*mi4@ax2P@D&2*SL zEk)K@!&B(PYV+l;+uQQ`yT$s2yG2Xohf}+kJAg*uhmZCg4b0DH)6y^{PR5dm>bB2t z)5xA-J)4F5l?GdiS-W~Ezgu&^Mcf!6m{~rown=kZ9dOE;fZOsueoe&@6k@v~<5YhYVUCDuw>+ z_1Blb^60&@-ZH^jT2t%5yexro3oRp+9IGPw(ee4cJz>d*Hc(Edh7KyuX#UpI{|RB5 z-slDkBcES+BLuwsV~nWp|53<#SjqMk&}LMuSKQpac{Xs@K6nT7UrTmZKYuNTHTeeq zqp@6qV>fw)%lE59PnB_}M_*Nwk2@a0xLPJRaRMI9_hoXa-|;DpCh=`QqVY@cI_C(( zJ7blr$Tf5cRX{=W~|-(~MmEj|GYmu9KX7O0FcmChpO30%dzd|+J$tBK z3|OhL;@|d#8qs|-(njQ!YS&2Ej}KNAwlL0`7&l5W>JC-W8)@K>5~j(jjxZhgCAqL& zM$oE#w*f-&VX-N**eVpN+m=_bjOSMWi?A81y~{7oQQKVo(;vcw3htEfwvWV? z@$E1JD-3jt00aB&qpl@Fr#GGE6xW(7MfByG=GD|3w{>MrL_B3*Y*Me$bj`SAn<%Y| z&MZcB>9GCJFGRh(-0gq);)qrMoG>P2s~9hfO2m9V7zRH$z!T~)=0aT)#oh&48IT(V z^=T@wE%3;14S2!ZENJUAFdwbEIy7-E;Mqh1SvDZEnEjwxL6P~_-ckVraq%RhcxI6- za-e5oVfq{=k6I)yhum5~i{vmNgK41i+yGFPNonI#1J)lZ=gRLK!rh!ZJ<%NE#SVWMI zT>6ATvBM_kDV{qrZxE2hVb2y(bV!EZmO3zkZ^%dC`7q4pv(qXgsHegkzqCh1vR~Qt zg1qauvX)fnu+-8pQr8qsq`&YYAW4oNMScw^xrS`pPBu2d!gyX=X$a!*IVOms^B>#X zlw7|Pq>&Nff9K=wbr3^Qm4~RDRnouQPj%L|nA1`Psf|X7z}0xGfgZZ%etVUKw91by zEKU{;kP;xPHixN{hxh%n;O1ve6+Ol_u^y7VO+s7euH*%K>P@EP)xQtj0&RaWbeYM! z=9ns7P$txG#z@}&g6Tq@bNy;36-CiXpy;)DQG`~q`A0x|nDt&EqJU3Afv!sx5^Szi zSb&T=F~4S%^bCj=RVFDyn+P@+c1jbG_$^$$tm64vF7?7sSSh=3WZaA$V#@hODi!3e zCLmRM-XiZQQCb%PEeJa(;LSEDwD9{TI378ghWH67bMU+TP|P4R%=T3&Iv-N{V6+@= z;2cK5rY9Gd)Fq2&15!F486RDFOwuM-u6^7zH_u{sYD61^BPF8EA$acTQ(?bedEZTV zKYm%&6Jr(G9=<-E*xu!%(0-ZZ>V9a?n{KZPSL3uTtZw|LME^O#eWD8STw z`+2$7Te`WV+UKy@rTz(8cdIQ1p8f3Z_wtTsbV>BUUH3Ns>b}NBryC#>o*eN9LYeaT zN9$XrakecRVvzhn1p%-NHXyo;Lx>;vUMMv$GoA(>^3GhUFtdhne10tshfpXYvs3;{ z0n_+9^EXautP;Q9u;PA87Zx;ljM~PS4R{CSFwQ>otW|j9bc6&X9;irLVn$}rhh_k0 zfo1jMq7mFnOFHg*O<&Lk76uR?vqOGd@VN3T`EqUbU{Ge`DfnxV_G0xLkeiG-Am$>4T@i@9 zJ9|m@lrrRkD^i~gq$srKmt70Yeb`5J3FdCUt79IZuw(c8g?=YdC2^@0z~JTD^a|U> zuWLbXn$Y`3BT1LM9y%9p{@dk5n%&8w5CIOVnflB5)Qu**vo=~mu1jt{LHx}28Z~)q zqj)aSD;hI|LV3J=pYLewioHzCQlNC9ZjgWoHNti@ED&3tAl~mzTr(dJ$>a0NG-XCw z?~=h;ZLjw{qa_W@27*uS?$VlcEs51qi{ASB@`f;d!5i;Xo(R#q1^0x+|0A^vseSjt z6Ia~uyR9quasjhUj8^RZ8F!&R7kknX2xS>_Q)uXjx+dv%_;?)!d&=>6&2C0wYCccN z^yG!*SrGqdvDx*TUm=9Ci$w0h9BL=KC3VRr#jED_7>ac>C&LRVHj2e_QaLnWLz-Z6 z1!kEz{BH5Nm3>VNrnQj#(G3NsN%{^s2I%-z?*X*4KqM-@m&sC5qpIN(*#={&L=_`g zX$06rGnI1BjUIB^I&>8p2kYzM7d*1o#te4HO#@p$Wn^Dhc zUBUnWkz&Ggs->Y3BFXvt(BZDc

&>`P=`_^J|&($2p z>*2bvV&J(5$Lm6&87kgSaYsq?TIVt6COM^u*gJJ4yvV}DcHifrbt3{he7=8`dgDt_ z{PnfZ;f-;qX!Ci#OMcVW?1m_G>a%8nr08Ds7i#2|63nbC(#WhyfF(_8a{Q0Xgl2VQ zm{E9bz8B8QKy znm)fG{OX1Ageb7C9N8X(yvp;2s90Bhp2iN9!fra7#EItQsGB}i`L09VyRg0Wz7tCO ztsZ&3Oi?jJP24S@=BSNKcFgA$xqmo%#HetN+1hw`EL2;kui5J5`xz$D>10V=mXAhA zK#!kFTThan(9#6-Iqf#r_;@}6{)Psk-Mb{rk?g+TnZ?sJ$jtE3g#(K`->*0QL^-77=%NzDHX6wWH zq4-5Qf`0L7;cC{1Sm7lJbMZrvW$}ZICD(02Qv2l+dM4V^}0bEANSrApThrgjKJ1DJ&c{j(mu5E z=KobRr{%(2zr}k!c7OLl#evg~Zo;^FrI6LPInz75H)J!+Y&)LevV2)SEAI>b&hhZp z#l=CgX--g+pZMKn?nr&_u-!B|)hRC_8ik z$_@!M8f2ibUiZEwFH~6`+tNv*z0{8(iL9663O(_8=MDrG;(~~5xLo2l+ zRum1p+#4r4HNuAbpWFO_Tfw`}HG>xrS@`Zr>u-x}%IagD`H!fzHz`V^GghvA1t^7p z8P`p1Pd-9G;fq@9aB};3lJ__x+l}c-gqzTwt`1eQBu}u=rOdro|)p& z_Hjg#P@=8k(HILWwb7r!;mp++%2A23`oxM_NIp#)iVDTbAr{z<unZ3=5fj#2mfvx=^a!7_y@2O zfHhl$PR=Yrzq*>S5eIZ`J||uBj^-%#j<ADPQ9!3q(dFC zvkrosMd5OO0rQ>*W3elBi+qc$M23z!he{cPvP8!BKzm5DTQJN{X#-Y*+G@hf{mvSV znmH2V2Z6(eEEcsd-bR;X#*4}Uwmh#x%@|cA+-ZYkYJ|?N)RAjE8Su*as-%`{49u`y zz^fbspv?dk3@&C^h=~Xfz5Q%IwPWVqJ+m2Td}*l#F_}ai#nz`9>y&2Rd&yw z%7a!Qqu-IMc>=j8t)aDUn}=Se_cQ0b+Dh{mX%iFEAdHW2-yl^3>3B6&jZ&%-yr+CL z;L0EY0r`Fz-ga4lsW*YG2ECUXah1ba*xMZvn1AFIWZUSM#j5#A$;S4K%9enK7tXAe zi9$@A4ZWe<#hg{|d7!tfYrtWYmYRb$`7un&T99Yw2XTbd7OlS&SH`D@)GBd1l-d@o6|9V^32z1JvY=BH06iYQ275*q|OE3Wh)kXX+FI)U%77g8fg88MxE6+DLWk7<6 zOb*47<_mX;b@@=L5|#tS>x=!6(jD6N@R)V$@9bX;GKvEw5;4KYvOp-IyU@jZ+5W1n zZs`rc=g}SyG@3mHK4HIA3u9AXL05lhA`iSwc&=HESvUmkynD=!>xY`}X8lI(+P`Tq z@HUnNzZYrY<}x5Z`y@Zg>GA7B0bJJ?+Wex_IT&Mb_sNM;8Qu|jf_vI5$Q-`4qwO;KYbo-hwX;St*V6Uf;0kW z4M^E4+j`*`zUF*U(bOwjtYr0&NY0TPqufJxmJyotwTEkf)B$JeHv=IA57LfL9V)9toFeXY5rbi~_yIVO3$t)+h)356>TA}e3=kG`7czt)H zJrj7LgSr7U)zszA@mxKf^_$4+k%HTL2yTZ0W@k%vC-KFNdyvlHeCtj*n3^0(3u3CV%JjCq47|B=c3g3 zqvMM)ib+2>c+-DLQ0q7~B$OO8%>1-|6ah$?S4b4%sNP`|^jqN&O#~Avj!^;X32+OL zHi2BC>027g_sghLSfjEBu{mP&&LXM1`7BPX13}Ohm8b@nZ$|o% zaB#YDkHXU2oo=0{j}1?f4ZNiz4<}qrE>*w>OCwWJ1@N!^dKOcm`6VbF@hU&^fB9HH zPH8>%D|?yyoLbi2N+3jfIo|qXIf4Uh`u}q4cQB1d5WZJfnd|Kot&HYwPtU05?)T;j z=WI`-sHei7fwT(bTz7dHd&(GJ;ie!hU&r2yNf}i3H9XVLa^oQ8B&DJ-jD3V+$~gX5 zTme%VMEObh3v?$Mp|mS4C|oIl zpb7X1ZUPcul@h*kwWvUQ`WLAlCMl38y%dqTOono-$rvk#mq7w6@{*kSBZkX{=;0~ zJ+V_TB0gH0cSn%N%L|h}vRrA4cI`b^^qY;#p3~*?2Dh%{|06xro@4+h5rxHv&8EEV zkXxfXLwAR34tCqYqz&x+M?@tdBN5|OMTIt>S+kj)`V0_RidXqgUc@xm^WDhR_?*<0 zf}J0Il~jh3se-LmKhJv4FbM%FeF`p2_fEo znzzy!uQD#63`_!`r`3c6@@U#)^hP>hoM(sGW9YgOOrkh%@Ic+*KlY@k*jj&jnJd(>2x<~M-7~Fh z)#a-K+9DLKbr^uWNPBwKsElSA+?Zc+ua1``=FW-(ZGb zI~X9)Q;eYCyv)up$m%=@37nZ65f$>-y;cvT5it2{w|Xm%u>PFaecNL{&RaZCBF2t9 zXo@krUN(zlMy$MH%VDXOO&xl=+Z81}62@|uIW%25X@Cr(3 z(0#GRvtLor@UAZteHgaxkb`;?_9kdlg_R=QGX_KWZWm+KWrcn>W104u^8VK5Vh~nG z#d+T>v^lrHJ{!p^(91y>|Jgg7w|g@wR&c&#P+Y$1spevM-NsdMK52x_XW+U<%SwUj zSO0)F)dS6t&cr9HQ_Qc;ZM6{mD0HIm9G*(|<)@8-R_??SA?&qm&!i?o0;A>u>$`*bmuoK@38II6YK z)fjFipLS3l8C;6o;T~VX$${`veRg{rp;u0jb^hpkvHk=^OIi0?rH1er(le0ir@m~-Y2 zznp|UGj_JuI{4d?pX}#SSF?89{AY#uJPe8Xj~#eslPI~e5V;g9W3mNoo&q6ZKM7bq z%Aa=>J!`}Wn4QzR2_@7Xcv9uBeE(uy^!9l}B6e+v+PdYmsp2$U?R(rE3;$5z)jSf$ z)9~fynM@i$3yj?esV2W#Z){QU`&~3c*l_IBP>am83TM)ZSN$ItJ>%?)P5sAg$B~Ja z(=Hsaic#k8t4+G+y;|RuoymQ_;%`VZ>J%xdly{?tTAaT3?q`74(7D_DHMDO;>fzH( zl6OhN2U6f+<2(P;Tx2n=*e4tYp-_=z7Jjo~(|kQg=!da=rNTdXLev<^;KC45P5tY` z>H7-x$eIb$!x=3*mgAV#!2#-+7S3_4jWBAZ#}clGZwieQ*uN(K{HoMd82Z+b}JfIY3r+t8XjyF+%mFmR{~#zxiMm# zI!H&%Su&UW2vMj|GVhtY&{d;y)l36u55{Z{4QBkQsh;`Em2&H@#w_y z%P;Mr&XDokVk})TRG+x1ynnKR{uHzkwiV{+QNx{5f!zL~5_lgjcPb72}X$HEMX%=glG zAm_I95v4m2-}u|>O^qmcznIyqR*c6J0fC?Kbo8D^yEdn#T)2ujnnq*^1;0I-r$O3Y zPdkOX*!87%YC6L(Jr*T*4mV!6Rh^F-4>L&CN>TXPUG_idd*c?$3DlCny_g~>e`Aae zE@(%ZQc>r%P{m4eXxFK!Dq4ZH%_JnCT#OJ|C~N5DvEGD@`>FF2p1V=4FLXQab# zC`*SzP1Jvr2z-7tXcsLFTIJvTQd}&rGOJ6y0o|L&tEsewfeSZ!N9nuU(>pVYF;?)2 z-{TT7XzNbmetvhl((aqv)xwo-!cG(1Q@Gc;w=f9HTV4MS1OdBtS@~>Z(#(TB>CAYY z`M$(r)7FdU;Up>cf>{`a|jLX{3<#83(d@&yHN%LiX@s?8a!P$%w1^{bk6fP_&M7GuzZhr|2F!!uTuhXKUK@^hb7?!A#L^&{jWdK}t2t+t!`uWvw= zY|^?~Hti}KwC9P`8?@bm3_42O2*DQ4eYUfO)l1?@bx77!T`G_Mv;VW?a-9IDTTzD}hjLr_HFL*qD`gJW@y0SD?Av`sD z=ytVJkr$6sJbRMSj|8p8bmu*Gv)f}in|cgF&rTL_uIu(NU+p5{K=d<)#}M?acyzzL z6SHJTe74S-CL)?)q$SARiG{M&oIADiOa)o`ey97&;u@hBbIQ_WzY1m z$+2SMfsMOHo-+Qd+w`HL#$yk6&lZshD{vKMU>$1k8yZk+`DrzoyU^JE~Tl z8IDX~CcDO5MW}|TF7@IJF1&9+Haca}_rL)PfvFDqZ;lnHe?r&d>gA$GXtL1N*&IgM z(kv!oN0-ou|4r+4lsGJi)^rIC6u^vWT+gSb zo~wR*)Mk$hjxLye!kdG9iT`Ouham=a%=*qTvG%UJU>8dDaI( zE$)W}e5E3-L$6Yt9-4J^g)9kil;`|qA|WAU{&hTvIn@~)eg|_T1DGm^xmW@LusN`! zH?D8^{R!K$!pOAB)Wzq>6A%rBEjpeES`*=_g}IGz`J)7tqI@FLIKdYMCo^lSuyNFe znKDiOSYE?g!WSw;P82DdI1L6SY4j(5@0PP%+a6?h?+-dpcwDo0CPqS?Kn(q5Ov%Mx z@pY`Pv>(7^)^Tv^<(WkztMfHGLZ;7`TqgrGzEM3eqUb$&ZG}B~rds;s_n?)8L7HLv zev>?Dt3H#70h0`Jr&MOBeiNghT|$Jz_{iI_V}ZJ2!G4FJ@#N?`NO;?hVhCkoDPBZMGUTGyeD!D-XX=N34y8$&)fBC2JHV z6IFT_2RzXJ2(m?8DZjE9!8?68p{F)AjW?k4rfY5hnG!)S!{9ZED{Oh2;@EW^KMy2RTUf%qAeFlkJ)=oUY<5@SAWT^)6)iaaWXT)@ZMxh z>(ahf;-l4y_YZzX{+10PrS|VVWJUlP!Q1Rp%y>o%!p8MYMS7z{swWuffb!MZ_L+N} z_8BJwYNR9zZ5$lcs~Ng|tM=F*Y8%9*w=;ACa%EUE@K#@}tW1o`tJE~;%T&{5==z4V zpk&Lxgx7i21L;t#Lh3rS4F5)tI4S;G@LO_)qis-Jc5AQXlIj%i&S(AFZ5~+uHP% z_&?OA<&JmiulE~0eT2OB^IYAuTfcF3k5YS_=ACau>dHNfP3bgOUv4L#COy41IdlDB zZ4%fC|C{5Zo=1H(JNR-ny-*{%Zt9l`4u)Phx&XKuc??Zx$8Yg)HHZv_eG^ccuE|A? zpw7mVVWhokOH2x5eVcMi=N zMhMkHBC|KLudz6!#GkTnF7MwD{wa=ZT7W4(U)-fH_k0v>venUlI2ZlxL3}_A)P6yA zv&OZVq7(RYrH8lcjF-oZ<4G`tiR)=ti%@_FE_+8(%lgNRHKCgO}Xg;Ntj zT1+Z(lL1;{jJZk5a$hN@&@EGUbAB3(P5h3Eh^-y+lj&eEOkx@QzCLWNiD;6V9-%H` zQgS<@>}_1q_{E4J(vHFGa2$4!aNBskVqgT`0Iq5XRfEZBlSKjSB)Lp!pbOqJ!Gj|t$ z5$gL(@MD3gQgjD#y_`(YhS*y&q#IqhPQ0C>1*|c=Z-l{^S$K4|c_f`1UB=A_?IwNm7?ZUI?#*8{o2 z3ROE>%UR-s-HRFmKd`x^bKu+!(@1ECHht;mU9mcF;rDv>GmbQ0(w(xc+m&-7Uyz&o zC^RKJo#uA6YPqm%bLDLlWe-~*ppaxq{C-z=Fx(9kJt%BzY>~yy1R{t8$&nq386z~% zn-RH`6{g34K4U@{gVns5SBI#HVVdQuc~hgo4{GP-xo02MeAp!ivGoVj z>eo}TA{BVuihT|&QH`)!(=$_aBLw7vO_Obt8#I@!du;3H>;&}rm@`fA#637gjq?wsQM=;ddl zU`*f|#aRocJYIDn{~Vk2q(bnp+mtp_rtfDvU2yixyLlnBF#LY!iKKGY5Sw#tp`+;nR`>+S0ke zG6Nc4)+!}h@8`{j)t;m%fi(n7@jbdgK(*W@j4I< zLs`UAfFwHt`7wcLrh{$|5#dH7J~H5`0Yf4?iGz046rm;~3d8g{CTiYRGy-O7tMX{W z-8jRcpR`T8)zu?KhI34nowAfKKWu4|%{DtX1#^j~*X9q8q@HA?CeUG}a*d9D;Ix_1 z<%fOPnArI>g0g^U6Uv3N1}>7GJ3O{Sz$I_a{{3#sqSlHZYxNBmM0&t5Z{TptXs(xG6-s;FqfT@qppwZn|)^|ndW(P?pc|p3po@g4l(Cqi>|};aU!xsC_v~j+YzNsF&z1ooqp`7 zapll)r`ra72+?!|ncb^!u6X`aw&}G6G07E4yrBn6aJ6Bs;YOkc ztYt~|{M7Lw-iaYEyGeoyDU-ZZ8{IT2cNVge4V*qaC2B{?#UXwklWU;x(d?E)O&%Twy9 zdRGsZx(Z%?iw#1pajhW+-SNQ8`Y%AoRscASsK*8e>!>5ZOL2K6-VXZ)GH#*{%HMyeRcGtCgWfF7Y0+B+62>wVt(4T^;+vnCkWetsxB6BV0 zZ2Z|XaAx7-k>+#18#ZD-G`LYvJpP$hSy4FV;iFoT`~et{&ACVVz5!$4nNB z3K1g|ZZ{V0S$8O}zJ9Q(vf289>06ggxra(?`3k4)^Vq>GvDI#W%#`56J3AM%LVsbu zMxH0w=1(zg(^p?2Zr5XXhF!|jw5Bg(`O0oNA0G46?#&+mOrA@l5jbFuEd09ubo^t% z#*Wo|eS>h&{xGsB&(4D*< zu}H(#49O;NMxPW06i?nMR~_)1Y?omic_I>@l8XR8D;|j(d^Uj}A8#hzO!n9B_47on zB{(9lAVa^~V>1)q)U5<3_HR(D!|cmb<%LwZkOBL6Efyo%h8%5Qp4|C-4_b`l!zRN} z@rCubdyYT_jeMlSBVxo~;D0?~Wrp5zH13AbD!`MG+ORuta9c!w`cdRb=hi&EO2?1i zSyc|%NAd8bW;Xt^G6vJ?o-HOlEE|J&nD~Lu<8AbxUstYaXDl(oB{N%#n+AV6Qa^6; zmNl^Y;P>tEuM4`J|Dx52)o5fraQi^6m!->!-dB6qK<0z7duQ8SlR&JwqP(<`px7dy z$iHti_Hn@4*Sq}bOxp8GK0BA;Jm>;n;u)3tqoQfL6`w5kEaIFFd&aj>>GYx}s(eIY zT}BFRQI3jaxa=cgsSRW|X48wHF9p8^zKtvt-tJ3waqCCxEMeE}v5NBU$$ryS!%^6( zYUB)`fd}YA^-E<=2N&fiv#ko(&qK$IJ3SrU$BjXn#wLYY(#V6RRt*@~BXE*@mJw!N zI=Ej(X(@unX_R!gHGTYz3!{=Oqqww7`gvR5&re{l*oa36mwp(`vqQSv=5A0|vDEe$ z)>dw;X&_h1@#pKJ^M2sk**-_6V+>zOu?(pYQCeswZG{56-(&yc!rSpy@ z50Ww{$`2yn<%t=WM&CKTja6raUX9HaBxa!6dDcLYK-#@k^;h`ujUzjH@#6l|`l;UG znbZRvS4+gb$d5eT5#L^ZMtRh&i5n3s3zS-o<4mqQ^~zNoBwt{X1i$Zrm*?2#^3Nvo z>38Wn{R`h3jdQ(+KK`FvPq!R#!jEG%SH&n={6oE~A){=4(k2`p$UZi|e;2M=G5fyD zaISn*d~#5FYS76^7A8{U&1!A+Woms6<2kTxU=hAw928CCA`()NguBMUuaVyoo_TbW z8*1xx%5L`3yZ0-ugU&2;!tP)2a!|G5D&57&POocfsuPr* z;K_PMN`Ho~F(_xsmT%lV&3kf1M!vi*f*x75{VWkTS z`FD{6I#11>UfPw*Ss!Uu=P(CiXYz8t82e&It4hQ^Z10xcWayUlKVv;}q56DmdY;<1 zd|zT!o5c1WYvmMvHmK@-$fA+JkKXRE;KSfU5BS;3Rz?hd?`=N>I)nnSi8mI_$P@2m zkrUq_b;3nOWCjw_g2vtzkLiV(H%O^TbaGCiA)P;4f0lBy7%^%6Q+C&__Tqi^EOk1tw{N0Vz~2_x z?wMT>o0W(HtCsS z6)loLvAY0ucKU<{G6VG?x{9%*^J@8AlYC5eYX7-v8bN2^ z{5}$+To)YR%b|vL7^+(Tc|ODQj0*7C@LIrtcYy(1J99bE58%KXe8yq=0@9VZ&GGwK z@Cx(w92;|GgwQ>;HEb*!=^x+X;y_I54nZQZs&=*+7{u%`iLj8QEUA*btVw~Yt({_E zeLFqAm7ZVyDU=r6yWkJ2Po*!a6!TI#(JifxKUQnSj)@p2HxcK(3|*lcu^Le290u)BAuZ?a^zFSmmJO0#6UsN z(11e_drMP@5KXhs`4C_B^OD3YiLsu0wkI)9es!tfjh8xlm+ zov{^gScu?$?MJYVH-`Q!{BpyXNG$gLEM7=+@htNyV<*j@u$# zw95xV%$~uh4tF}*sA6%$MmY@8$(Pm#JOgBW@yu&pz%%m8<$IP|1_3lf)@{fk{Vl{{ zubt$za4Km`Djxri=8WcS8la~biUI#hEoInjUp*Pa-FFxEvTrhSh<|tEpWc=FKBarn z2&h$3>RZ^Co>J>7f;%`2-|^Y*1Dqi^iM$&t5=W<-8U)~nuxo4)T#}dmf(i}zXP(g9 zU5`?E5m7}2O0W5y@uD3Wd#g*XM66EgK)?Q3Ik|FURLPM!6LK$^J`!j zy@V}7!2azpFYQIe4qfZ6&45U?$fnY1pu_%k?*tk86TT)Z?xJ$Pfj2(%q^>-~@LA?G z(7Hppzo3B50{ZdirH$JRT$9q)-LWQv+K<@v!rF~jqdQ-^;Xl0qL=NrLmmaSdv#bPa zXHa7?1bQ3BCl=9$sr{b+pZ>d^rbpS{sDOtjPiImT+K!uKdm_f-YYN+=9&P{*0XeCg z201XR8e|~C5_W}!iVG{>Vu|tw`VEBtyryN+{%2O2CzIF!z9-5Efb-+1e59jxw%qGHbgg;RK$z=@=`t;~{ zklx0V`U|1|{U4?Re>c+Mhe7MNdz<=a%y;g8@WE8T!8)l}a8p!h$~NBOas?P-qzJfe z{?9nbpbDBtYs#hyGQ_~em2bh5|9G|XWyq`V^-N63#NaZJ+ zA>R>j@xahJ6u~3VPyHT62qjOsf~g5dTr1Fx`M7^GV}E3UNb?fqnLBmhy`7i{FSViA z5C#jWbi)^&lsIw*IcTjB8H=j4dO0*{&TO{eWdrz53kMj~R!3I&d9H|hBT8RZ@1qer z>uI~Zp)N$JCGv!&FX|{1Z-v5GYZ}D6$&5#b=){s%3z)>X1TtZNHZ_nUY35Czlzf z$%quX_kOa&&1zDw!>cxbHFJ_Z?%epDwjRYa$ab?C(!!G%LqI6lcOoCE_+9g>$01Il|2>dYnMnVWrZP+pKOhFO$jdd^0vw;ks9{>#hFK?yB}EY zuD>mIrB7zKOd%>^BH(3T!6hljROa9xaTqc!CURgNFdqZfQ=r$DCr(`1+hcPTdP^sS znk`_>Dytc=Yt)o}Utz*{V=`t;>s8{)w{a@p@!5GGCEa({aQ8ipVjHy^A)*2C#%-Q=nbAsNxyd)rJhC} zvmW`)u^Bnl9>8EHf6K4>foLS+uFk!AWY$+|eMDzI7b`7NjnGX(p5IR@qWfy=A5}(x zolE>iQ<|hHi>ka7MoD^o_9upVZ+7`7|Mt>8arwm3Pmd$bFJ#?#bi-t!Hc+*^S{8HjYwWLAsMH+sZg zqY#%rE|9$)a+jAl>YkO-SqaK1pT_x?nSbq99#=Q)hPnM-JW%+ZjLyvm4hJ9{ghJu1 zTiH+|e612CAm%WSDxJs@WAD>(X zcB(%_7OFHUiR&;PXCcu61!V+j6ig#!e;tK3q`(>|6D9H&%HMHGmuQ$lz^9LrZj=EA zc_NF{nkLi*7=QrpvH%cD-2cH*AB?*iP$y;5peD0E0~>fe1~KTr2<-?#lrkj^%H=S& z|EHq=eAe5ZS@UC2lNh^))Q}p}81}6#xOSV0QvlgQgWk%Qh=q1X7h40hC5=Pbq9i`M z9)dYixbs&K68Q_|2Jf~Z24a>kI}l8FZ~hAu(ya>XJ{Z{)lrvQD7c&a!KR-mWF2Vdp zz1!v!QFyi>{zb?jOxe%{n4E>sT09EFE<~tigtxyNAu9O`3LaKWdMmzaPYdj0irS2$ zk|nZ8*bC%uB#_1dAQ;n=#UdR#<)eUoK_!R;(u)fAqzJN|Qk3K`XmkPrHhq#gSq#W* z$bkQVban2jfE{i zgEo|a>x5nDmLCuS5Qh@)H$e-bL?6d?_8puS;^n7t+RJYxdQ{YAR}q6_9MoV&2Tl?e zXYhZwzz!%#UsJGvN)8ehIN1Mg^~*Oto#lIAVD0pYNMNFH5a6>@^exgNFPr_lAX-(C zs)lpa*RA=3h`}iyDsDPBc#!|UTaGzcfQ<?P?xus=I%t4*|>^qt@h1dagGG=?#2Jf@V&Kj5%|1{AAy4Aunp zJ_gwPL`LbgI@n;eZg}z~!A@8!6aLJBK_s8M`kWX5 zz)&A?zzWTs5u8@s)uh`B?H%4bJY-vzLRmb(_Se;G$9Sl7fJ4&%^@o3sJ(#Ge68$Y* zwi*j#n14<%7#Pq}uN~&)bE`DtrT+g5_yqD>uN~NtB7$~OX_CL7(TYLk(cFd&$Y+zT zn!ozTqpx1wwc6f-{lDOMgme`oi=t7(MLWWiYDn*ZO=b!Fi#&Tn3DYJbC|Nhb8jr65 z|FM&u2R0FZl#gWDz#0f;$qP0N{sf67w|v+RM-EFKfh9HcR{m$l=ey{z*Bl$cov``Z2A!tN~kbfc3-T|vWde9GhrvTpx8^)3sWe8bmKw|QOKA1z{c2PqiiRK<0**4`FCQOYB@I|nGgfOJ{8eY`xP#5Vr2Kpd*uMEt9AhjRPH?+Cdf zk)pU8dD1GUcv^|$!jJJC8}%yn?*d?OK9faYNv3#7p|uy$kdZ|E3mP3vLsM+Y6xn>( zbQ&Yx2o~Ku*uVI^NlW=2a+DiY^2{3oI44SE)xc)i(Y(iPFU{>oa|DrV+;77cwUA1) zxcr~a>uSmySk57R)`upWLS6-i4)(IOw^*T7=s9={cUZj)IXsBKw(@_@Dg+aH16U|S zcKjxhFmq3z%Sf^{1AdvQ8CVa%Bi4ZbMPP>sl%A<(KrtKr*-Ik-zc9F`g0I&dSEvb8 zr@^lYWHW_woJ4nViKz0g$}un$odOP4*e?ewIfS|S&xyGjv_Z9I0|vITc=8{h|01-b z5K+{WRy>Ep#K4UFKW6B9h5`NgIJQJq6N5oAz#JNcFJJNjFdGe$fd|ea!!8LzfLp1E z7@+-gqyRoK8A({!y%1_kelreb$%!a;`1`99|1%5<(#hwbW9f|bSSVmAh7v)rfR?Y`L%M_2m1>46?}Dq;u`!2Z@%R+OcdpJ0Zba-!*gk(T^WP`ndgFk z4~06|Ki#yxjIrdXdG^Jk4txiqA`fRc{aQ^T zmn?hH@cv)V#~64%h0J1yPWA!l>#r=GgrDZUpBr9_uXjVgV4yaAf}oiA722S|f>mv1(_Gcn0H7YeJ@>^Q3A^G34nAENTi2oknUccS# z|MXJRtl*bs@_*lh(PfZ#fflNkPN24Q$D)h|+u*m7?`ST4)ev|LUINEAA>hgkzHM;J zLF``=*o)IdO}E_R2gvXSm-`Iyzd4Xz+1IXpi^OqZ=?IGNNh3G$SFkBGdpYvp=8Vc( zuJ0o?PauNf@2Z_BgM|fO^(B+Og#1`J532m9{4=N|ua%k2{T+Xek0`eB)OO;2CpcZT zoS`V2AS(aK<@QNBwqvK+0ozsz7tByR$ezpW z@o=S9TS#q3V4`TahnVM;RPIkUJSmUn+>d}=jQ_xnA=n_nrTqOBo`jB#E2V51 zauM)WWf!%)U#rS9K;$8aByiu`s7c-Uqsg5b_uNs5L4YX_l>}UU?oQ%e!@D2xCvfK7 zMax;1gk8M00ng{M9<;VcTk{y&ES~f|$sYH@gx!Rr42K6RM(gtUy_*Wt0h9EG7fez)-|p$552 zcc&-q5g1ju4ZI+CvzYzMMlFi({5jR&;%Ueb;))1CL5OWv%%EOr*Fi6ud`zi^D)nBH93<^$DIT0)}3?%^Q{&H z@Q)P~z_&UkU~HOX5gOF8Tr0MtFp|}M&QTL%h6i$w#L6>Cy(xIZWl<;}du5uf%Fxsp z&{sjX^-W33j;_#G#H^WLdCXg&3r zLkY@0(>fS)Y;P36_qih@~ zH9Pk7$w*XGw|Fj=PZ#M5d(GreM=pg@U^NE;3-&u3HG@#&5e?xVdS#&`XQS_A2|F(g z%z@u+abiM_QC|S~^|*E+lg&YAMCSlQ{VIGRwtVYUT9d1;M#~SL#V>{o6S!4Ir)+N5 z#DP9RC>C|YV_-_BwUx*40Z`LBo>pa#U31o_^F&

Ivzr^^~hx>NU%Uid3+}heAy{vd@!zVz_ z#^P+Jadvy7amMPd;r!O5OE-&z;QLTV+lCkq%fs(#H9|h@E?1TEyz|}q)KQGr&0YI< zwwUfVBjCCGOU&yLa8-}cV5B%fulOAK{u-!lUu^!!D}TyMdapYiHVBJ1mgAOdbFr3C z%zt{ts3)plR@K;kocDdm(Yk4J*iK?=13iN-hu~JkK6mQ*sZ>j(Ig1sq9Ozp2dMv#V zKh5aMm`wa1NJ#8aB-dQBq zB_h5(@E99I$Lq^Wf9@Zod^mRdZKO}`AF88db*8&yJ@Du)deCv@;BeKLqj^kgw_c;W z=KrxgtdiW!+LJ=3LoBu0bi5_8IH^WkywIMy@T74sa%t)7RYb1Tx3W4>RK7ffK!1!G z;jVl5rmPe$>QP^ltDt0U`DWi(GEQi>9Q!6C<+cC%IpLP_hK*}=vwbHl2vmHc{gnkr zx_N;cY!NkYcN%`0ql@Fn$-h^| z^`0Qt?zvnryIYtl^TcpbyY2Ah_-v7WoBBfaC{`iFz9q3Xe{=3A=0JPMgXF*}ca83JJu z&2AXh`Iu%H%6{3?p^?*jv*W42wYGdg8!jAguiYAQxs|dexlqDr!d{ib1-%9?SgGb3 zzM3F(0y%HX(3wHpALN$*DiJPgaHfRzDp*Z>24?<@+h~ZJK1mTa)c#5l_UU{Yu{&*u zEBTXqBd;XRcfejZ(fdlre`*4@_;FkiX91)&qC?c(^D!UFvhkaj*JAtF)1mws2G{v# zUnK>d5v%a}3hIzGU+!1fYR8v8kD9xa9s0fRB6fhg@$T(B;wXH+X1qP}a(bnSw4Ekb z8VCb6caJw^Tdgw&{o94*Bru;LwxY3HU(+dtX8*d+CUJP4F zTr^5C6R+KI1MUh>s9qU=Nzh|Ev(?aEAVZ{0%m$CE>=uOR4Yum>xt!{Ko7Pcb*ijr< zFq^9G95AYOBh%f)te?2nwz?;D_;yo4e*X!u%+V}n!)OXdL~M@vRNkL&y^~JA&qi!o z7;HDpVT#9s{2o5SUv^%QqP7ze){y{)E@n38 z4lq1EYg|^;0F11s(rwPj=}u!zCrJn+N;t#OunsHSZ zvhR3jv&;{Eu5ta^gY53Q{J;rdqYRzTQfC zh+)BuaC<^-Dq>yxjt2qm6@!nPWesvKoRNQ}ASA<5{`?2!EbYr)Hi5^0^PoZv4);yp zj2M7T;#QM=8xzsfX}AF`z)ZHBx}eeVyUs;6_AsUvi*Ff}b=O0+3T6|=%|aRpG!?31 zN40Xm7-4h9u;R=g3^WB%htz~;e3+4%`27t?eJxoP10VZT;HEnhS-5dm7!;ACKh3x+ z9bU1;=}dO`YuclXk))EuE3})>=!X@gMdc_wm3~&d&FI1S?j)VY7x1*;t=n3%FkxMs z@EYW$)X4kL^!4?}?1(Qw>^V(KHsnR+G4aE0xOIX#Yj6E!G z4NA^290{+qZJZ=e)-?_nO}U&U1=JU(Tbxz>u>E-tF>OdV7$Zco^32CDYhHJGe4$;N8lB%a&*Sv+FH{+msI2DqI6S5X`6rbg%C_+oA<%DvY<#iK2t zy{!4V#)A1Wi@nA`XUL`YZBPC+cd7GTCd>%m;d7EIw3$~{0c@XeGrhuxvA&Q%a51$^ zZ0En zoQYJ-vGS{G>{BBEGSX9z)?jSJJ{5fIMgLQ}o{9pftx;Zlw#tRls=g`4Z}i?2zbWAy zFdNH$RHYm&n6X#SIyjzZs$r!e4F#ICftMkNyI)+LZSxZROf)Ss{u62GdcIt2aA@hu z2Efz)HXPWGH@zt=zh~8$8dhab&4RHB_?&2KGwoFWAx9)*wz$XekVEGVj-F8&*U1; z7!&6qjSjvt166=qOT3zdfDU{@s`}LHoarMGQ~&LXPd&47iHln+cebhEENd`cjSM$+ zk7@!!&(+xIxrPsnjm8Wv&;WRBPk8v>vGQ1&qQ3ucw@&pNthvSK(xgAg$pAliU#>$A zb`n|_l*@-80^B_lBE}@(ACPWKLpJ7{S4mdEKBU34HU04>J#aH?aS+Q4FJd+j63{Iv zeyaj~(<=C}egEyak8?$1x3EWxR;`=Uj!4#CYfq@@jbw=Pvypv3dh?iCAUrFbqV!MC zCJEyDpXp^IFNFx`?w`=C+B}j>gZj9sQ1>k4YSp0k6G&AII}evy4;js^rD?jiXnQI6 zqY1M!5tsEYGd5>MlXZpKQ|0_0s!^J|#jSGK6mbh9#zoBuNvb>E6~Zdcezyr0F;7r2 z2M3)~aagS|=KoKB{6F2(8STfpWv=zfpUE(BP1!S`clt`^Sm6@w?H|X%|NnI9$11#@ zi_gw{t6DpjMHIi88!K0Z-mBzzP1ISZ=(3d+CoJd99N-cfD>t5tA!Vg*q6LU;LL(7oInXRI-h3p-uN*K z&g7M0nrRa4t=&$Z3jBWzx_>Wn1K*50j%YfhO2z@fj9ZL&50vdZdavGSK(ZGg$=%dR zX%*|-5_^t?X%1WCV4P?Yc$4>w(s7G+Oe|AOTr$V>vm(nkYLMp7ssNpq94oswg6n{`g=RHB3M)s#(hwjK{NxxGKao|i21cp=`AK5W#&=wF@%=_u zyn$a?gF5nTU!m(N&wVyH8vTLjZU#>Fd>cO_D9$1EPEOQcqHdaVM#XX@WwVAG2MIoA zp+97!zKqH`OF@M@$9KK1gvcBRTT0(Cc}5jZ*25}g{Z6Kq##a|Hg)NF*%CLHUz=eCF za>Zi*1W($6_7i!WY4OpO?2nn~xlCNXrE0$#Yp9QHEacj2-m=+e#FAIcIa*($8rXqX z87eKAT2|dp(m9>VVMryLL$rQb+sj`2=^y@VF-vtED5=Ii&YT9rYC@Y}MB^`#_7Pm0 zS$a(1nDvOMEl$D01~|26Gao(zAKz+vT`)xc7hwCCd#|)qYeV|N&|JmTs+vQpN+q*O zC3-5O$Y=3O{elgmw}%RgN}5-vbX)l*+$qvEoENvm^}31ZqG#^ufNzUaLeLb%+peo#b85VE``sHJ-FmsP*{NbTFM_~tK z-<{JWnyJ`SMBHCkHwgjGJ`j1F9$(sZGxp%A)X3M`(m27#W?j9$0h(P*p8C9!?L1%C zT%==8xKlg8{jcolUaWnks&V#O1&~)ZigfSMtS;cY7rt+JOA)#eQ4H#v(U!r$rfxzU z0Ck>epEXQg&W#rx;MTgFbylBy-0gpwtExK8-`P;PT0WZUUVYz8PqOCKFx(q%nyar7 zuX9upH{BapvI&fY?RzS8vUY4Iyg6%hAf_-y|R%d=A&aUSv$G`LPdc3C)yA3 zZnEmHMQOFCia6K?nE{nR4J@ET8uLEbvebWL^&};-dXy5m+7~v(8PJE>&|}k#4)X7Ub-P6tdXZeRf zBbpcBSwJAgy|;hjVW*FkVECJE2THBV9~P$ATE_cubTkF;n&g9Lv4$2t1Gx4uWz!q4 zelu25hfqdlfXU=8Kf)=P0spp3AUuy+bdAc0L=-94U|cNRIUzrt56BSuP9&UI6fHY= zgr{r$B}R7qvijRLzwq@|$|uC9=}fXs3me?~0YI`r^j^iwhO+6s%A%}(c85uJn337^ zW*KrHORTecox+@Hpr$h)MFyE)w$z36Dy2OOH>bJSd_TybZ{$jYSnNl3_sCdGNP~WR z#A5XB?55c7>?MW6&HEL(!%bfl_cgSrhT>|>Y~%l?AG@o>1r zk^Ry3u`0$#>L{i0KZMbB&W{X0Gsod%2`d_ytR86 z_@6!Tfy#6nlQKUkWI_suMXEH2F&a#N0f=!^QDS9f52coOLyn7>>H+krWW<WehZ65D$%RH&n>I)X`?d}Tgrs}LG85q_! zx}=yeHzWI2xGNm6FH&c$NE&!rCz8)jh7u-bugD~vsfN=UYwaUyR=PX(5)Ev@~2$QX&P+l+>S8jGMnA$%c zpAl-#dQ4Fpr`djcmTUqq&v>?-_!i?l`NY1x8LDGfZq{1N@%hb*mi4@ax2P@D&2*SL zEk)K@!&B(PYV+l;+uQQ`yT$s2yG2Xohf}+kJAg*uhmZCg4b0DH)6y^{PR5dm>bB2t z)5xA-J)4F5l?GdiS-W~Ezgu&^Mcf!6m{~rown=kZ9dOE;fZOsueoe&@6k@v~<5YhYVUCDuw>+ z_1Blb^60&@-ZH^jT2t%5yexro3oRp+9IGPw(ee4cJz>d*Hc(Edh7KyuX#UpI{|RB5 z-slDkBcES+BLuwsV~nWp|53<#SjqMk&}LMuSKQpac{Xs@K6nT7UrTmZKYuNTHTeeq zqp@6qV>fw)%lE59PnB_}M_*Nwk2@a0xLPJRaRMI9_hoXa-|;DpCh=`QqVY@cI_C(( zJ7blr$Tf5cRX{=W~|-(~MmEj|GYmu9KX7O0FcmChpO30%dzd|+J$tBK z3|OhL;@|d#8qs|-(njQ!YS&2Ej}KNAwlL0`7&l5W>JC-W8)@K>5~j(jjxZhgCAqL& zM$oE#w*f-&VX-N**eVpN+m=_bjOSMWi?A81y~{7oQQKVo(;vcw3htEfwvWV? z@$E1JD-3jt00aB&qpl@Fr#GGE6xW(7MfByG=GD|3w{>MrL_B3*Y*Me$bj`SAn<%Y| z&MZcB>9GCJFGRh(-0gq);)qrMoG>P2s~9hfO2m9V7zRH$z!T~)=0aT)#oh&48IT(V z^=T@wE%3;14S2!ZENJUAFdwbEIy7-E;Mqh1SvDZEnEjwxL6P~_-ckVraq%RhcxI6- za-e5oVfq{=k6I)yhum5~i{vmNgK41i+yGFPNonI#1J)lZ=gRLK!rh!ZJ<%NE#SVWMI zT>6ATvBM_kDV{qrZxE2hVb2y(bV!EZmO3zkZ^%dC`7q4pv(qXgsHegkzqCh1vR~Qt zg1qauvX)fnu+-8pQr8qsq`&YYAW4oNMScw^xrS`pPBu2d!gyX=X$a!*IVOms^B>#X zlw7|Pq>&Nff9K=wbr3^Qm4~RDRnouQPj%L|nA1`Psf|X7z}0xGfgZZ%etVUKw91by zEKU{;kP;xPHixN{hxh%n;O1ve6+Ol_u^y7VO+s7euH*%K>P@EP)xQtj0&RaWbeYM! z=9ns7P$txG#z@}&g6Tq@bNy;36-CiXpy;)DQG`~q`A0x|nDt&EqJU3Afv!sx5^Szi zSb&T=F~4S%^bCj=RVFDyn+P@+c1jbG_$^$$tm64vF7?7sSSh=3WZaA$V#@hODi!3e zCLmRM-XiZQQCb%PEeJa(;LSEDwD9{TI378ghWH67bMU+TP|P4R%=T3&Iv-N{V6+@= z;2cK5rY9Gd)Fq2&15!F486RDFOwuM-u6^7zH_u{sYD61^BPF8EA$acTQ(?bedEZTV zKYm%&6Jr(G9=<-E*xu!%(0-ZZ>V9a?n{KZPSL3uTtZw|LME^O#eWD8STw z`+2$7Te`WV+UKy@rTz(8cdIQ1p8f3Z_wtTsbV>BUUH3Ns>b}NBryC#>o*eN9LYeaT zN9$XrakecRVvzhn1p%-NHXyo;Lx>;vUMMv$GoA(>^3GhUFtdhne10tshfpXYvs3;{ z0n_+9^EXautP;Q9u;PA87Zx;ljM~PS4R{CSFwQ>otW|j9bc6&X9;irLVn$}rhh_k0 zfo1jMq7mFnOFHg*O<&Lk76uR?vqOGd@VN3T`EqUbU{Ge`DfnxV_G0xLkeiG-Am$>4T@i@9 zJ9|m@lrrRkD^i~gq$srKmt70Yeb`5J3FdCUt79IZuw(c8g?=YdC2^@0z~JTD^a|U> zuWLbXn$Y`3BT1LM9y%9p{@dk5n%&8w5CIOVnflB5)Qu**vo=~mu1jt{LHx}28Z~)q zqj)aSD;hI|LV3J=pYLewioHzCQlNC9ZjgWoHNti@ED&3tAl~mzTr(dJ$>a0NG-XCw z?~=h;ZLjw{qa_W@27*uS?$VlcEs51qi{ASB@`f;d!5i;Xo(R#q1^0x+|0A^vseSjt z6Ia~uyR9quasjhUj8^RZ8F!&R7kknX2xS>_Q)uXjx+dv%_;?)!d&=>6&2C0wYCccN z^yG!*SrGqdvDx*TUm=9Ci$w0h9BL=KC3VRr#jED_7>ac>C&LRVHj2e_QaLnWLz-Z6 z1!kEz{BH5Nm3>VNrnQj#(G3NsN%{^s2I%-z?*X*4KqM-@m&sC5qpIN(*#={&L=_`g zX$06rGnI1BjUIB^I&>8p2kYzM7d*1o#te4HO#@p$Wn^Dhc zUBUnWkz&Ggs->Y3BFXvt(BZDc

y!65WN)hC&lz7cEtv z7gIxP7Z0dn^GN=YkVTzHy6U4tGiu47tYWziefVZL^RZcway2<2^Cvz=@VqG9!4UMe984AG7E6SMo^ zPU2>8U|5_ST*JOsO;On_OBguP+AGQu#!fyni=tKy_z%L4djtI|vy1gLwPZ%ku68wj z`6)c>cj#tx>uritIyj8=suj8jmlb1vksPXi#W4Ww}cDRi<80jIT*mRB4=IgFTmO8v8qq#S2^WLf+d7Q;j))o)*@^n*YO?I25C?78N0asq?pFoML37`@Z*(ml^4`g^?T+X?Uq#dgF;77twb+@$L?bc zMVX?T0kK>|SV)3PjjI~YF|3=tfQ>JYU>YD~Ba-`0(H%37_Gw9Ne78gi&y^XsY(=*6 zpu>*hKVBt!esJ5Ne5GL6n9E0y!+McCAkAg`_9(9>vXIz&t5_OKNs+~T#WrJ#?3R2WBbX7 zr>ZKeD1b%PkCT8T%K)hNWgwEw;+xZlUlEv&Qb{D;;`9Y!sbbqu0f4A2k6qAr^0|Il zJ&v^aqfr(87G`pm+AXYm2a}5)_F_L`<7J-Yt^tl-!v3-45PaiTZ9o+Di(W4Q5Jmlb zJ^gaG5)efJ>jPLbM&&Tvb7VK(c>m#3+9u%HVQ)O!Keli3PM%wHL&7-lbKztUJEY|6dk|YP3zD!Z3peC+JBMXRaC)iLRx^c@vr?o3y}Ys(`pgIOPXZ#D9_l+ z!fLnZ2iRnAfy5rM!9XC#lGPzwJtggbN<4;Lahqfy%@N*TYuz{(x}LHmx#O~H?N&jb z&IxDZz~y^uCW-tpD!PqYr9;r3i1Rz1cx1=d1w@{AVx44pown~94wUEc1KWE0ZPg`_ zf})laaU)IPF!VSW@q#X}-XXsc15{XnFWP*Ur!~y;Oq4BOb?yJ=@+P_A!)x_j{AIJm zeu#S+fp>+p^Q`sAUduDfo8)s7tj$+;**7+>V3k32ixi(%3(ss)WZ`_qjj1~ILAgJb zBoVxjxO1D_JAO|sSsb!nCU*q%ogrQ2khPPad{WA>q-`rwZ;XvdO{%PjqsApP0@PTn zcOO$z73J9gDIq0ptPIeor#;9g0hAi8vn0gkS7a5SQWN{{5;eKl==yhdjOLWR^nxlt zrRHb#i;W`C>K0;PQUWOEU}wKt$x?iWpT#^v_XU#laDO6A!&!n^HlWqQVOo@Z<<4U7i*o|J>5D3unP*mC*#vMi z2JTPj#_VWnP=E^>9v1-p!Z8FD9MPpB>y%{Zu^yOe$6cJHBba^LG!VcTQNUS z5NX)hq%f(bXipq*)e=z3rN{tExj{G+fADX}lBF#hr#;&O%;5T(`h#%lfB^yqkibc2 zLZTVxWb9r6SAU867?H|zuZL>4zv+uZfu=Um*Fby5z1J{VS6{+bzB<7A3Ezo|hmT$p z!EUO##O%PvVqzVC4$eA;wf3J03N?14Fn9z0?fkb4LtWD%of1sgw_^}}`MLgulGP$l zaJ0#xac+{}4<$y;{vV8#?_xlw$C2LUQB-3wljXLBP@ z)tk!Rsgrj(!eJtfSPmGPLE zlF|Rb$NqvZ*bey)lN$|V4&BS@d&a6#!a*q@bA{>mqJZi>(KA%NvuSH6+4(8QD7jqJ zj42;2fp=WnsygLq3PNGU^Dx%A4zqV#0eJ?BjMidyT{*l2b8;;{AX)}-OIuh3EdKbG zJ+hxag%hIa`l@ZBnt!l4+2 zJd52cS#-iXjZN;)46XI|c?B1u1g&cCojzMyno`&|%nr9ljGk{mL$sC;{8?EK?@Z57 zvO4&^(Re@EWXTY;i%Aq+oP%erztjvT4m1PIT_=Vf)AdYV#Dld(k<0;%QAqTz@eeS@ zvt2s-xmJjC$9RNRFrIcq$I%L%!kc{Sp@#!4d&H)0F=#k8)O1i2bw<>GQ$@DHt2Mg637D-%`w> z#3iXGI^ULjx?upWx$$yL_~9C;*Hcjs8q?5s0uLl1qzB0Tp;(Tw*I)*+j-CvX#oMSp zub~&DS}QV@m!!;1h}r{($JOxtBH&9-Bh`NN<(}~m25rkWd9{4wI9W?BwR2eE!fu?f z_v(*l1*`e~%5Of{s`6&*RuYRAQ@(7wavJlS)l7Ex z`@8DvmR7QjDyq-4Ly>HIu*86$Z>31H7#uM-DMA7{&?ITw*s3Mtb_ZR|Eq@mhaetKx zeMDAAw5!GtmOK`GEaI1B6!AaLC6|rw7`-hY!ULZ*TEk>^YPGZ?eO@%oqW3Vc!zvX# z@G)+_n{Zpfwjw331WbCDrN9h?^R!=i_WxMh98a;Ixx!5)*UxrTZbu(X3w89jFgFF9 zY#WA}7jrAXkr$sAfMYYi?+Fpm>_UTiclep@;g(2;5iUvrkFiIl9Q z8@eqG?1gc#q{($omBsPY8gsyPuZH4jyV96c_E6?&IW_#;PGKZ>O z+Yoi$UFdd2jZH*168vlVyLkc&*sNp%fAtBx3w;9UIMBfv2pueb3sB5}b) zdGdd3ej%<@f`2W3$6tG&NZUZ%#m1_y$eWUHKa{2}FR>Di^<6r>8f`@$`+e%ov-M{3 z^DoQa(#kg>DK^#Mt(c8mLKI8-z$gj#*h`5rg3}3x$8+x&W+x zi6)Q6!m%SsZLXPP39m87mFe3^ zGX|%*GHETrc6uX5HwF9zWpQIxtCc~=FF%}gL8@CWaes7d1sAd6n}adkh{G75!X##K z6f?7+zFE=12GX%=YUk}QNn7%71RlH=(@I>{UD^ugm<62ItsqIQfUBn-eXsXXz?)(I z{k#jg!B;-qW%_yOXOcZ3n^EN1OutA|&urwWmO83dm z7b75_=SFVI9>svsK5KQ;d8zD6qRfx&jIl_PglUIRG`MNCic24den~xsW@ZbwkPjjF z-7@Vd!E26_VX7~y(AZn6e)o+w07lD`Wd;$g_vVC&2B}FqIn=kPiP1RHAq*kqyC66r z&hShQ2qUH#nNUR}glI`G5c*4=?WAW~kgbEqc!2<0jx*Klgpo|kx{e@pWcostVb^pm zt%EM{;FXNEwE;YmD2dyg-av_)|E>d=n#`rHzZe zb70^;K?hb_Q+l7v(B`9aJQnl)DY3+$6tl!=VvyKkwH0W^sbg<~ZUnGtUJe=#lG~E+ z47Sg%N;gTTgzRx(4GPn1)K{D|nx9?I*wW%+_8V6F*KxKoX$@UOl#aIdi6*;B=JqhP z-szb^Kgdi&U@iaC#F%J(3}-f&6iloXL%#g>C-?aEhvZF)`9z!TFH={^;$Hwf3c$U8 z3;>SN7)G!e7fdxQlI?#p99-&$@R__4(drjXser4RDAF&W#xWO65AzhAZWftswydB)whvsE5a@ZB3m1!Y{E zQ5bYDri9{<0RH=r;hy~ZFUjaM9v+fQnHY3L7Lbc!tt@9u!2x$z78lgiONws$oI~P` ztmiL;C0N@m+Iuljh79mRjPb-meIj4WyVI4%?Bzh6@?> z8aopSO1gxmHDqSC_@t9z*U6rP+b%+SI>e*jn)C)7L%UE-A_wDKxs2yFh5Y7a;Bz70 z%+-ojJxa#dSijXc=UF zsVJTzvwr1pP#7v&Qf$FdzJ~oOp`fQ2AN-Qss3YgHQgO?9E~lTrJ?F3?RcVug4Goh9 z*Ux~8jIwLD*q%|af`}4WUqJlNQiP41=hRK60Feq@X?E68s=ab}vOtXb}B{Fzb zJ)I8W>|LD~`>u1`&_0EKn9;yO@_WGu%3X9fA7slMB1_VfBqD%>{v5|QTtJkFq(f?) zhy>tezcM6cUxR&$#QcuN@PZi%JIIW~M5oIi9Nu3;iJ-;aGO<5Tm{7gbnd_XVGGyU0 zQGD&RvYzFf`aO=;-cvo~xoTw&sUDe~s=>B>OoHvVwWK&&KIK74zh8C$+}1*Cqphne z-sWKnxx(5=-g zr~63zRkEr>XmGX$iPQTgQQjfGSws5U51O2pf6MDpmbc0CbxhS8!@Jy#A3R)7gSrJ@ zQj4I)cUuyN$o$SDt)YTrBYO#ocDIF*>PgN$Tu4b#zO&E3TmZe0@XbjP;EW5*QGP@C z{keG0tDJW@UopLsvhj=+wECFo=55>Yh?73LA)oi{OUI9{IDYS`OnR1N`H6g;+|a;J znpv3qNX4dJohx_4ec+9|P`^S$z$e|YF5*Uk|0KbV^W|fLahHZXv z<>RMwMwqCtV!ue1&<@3Q5K(xZ6X>JFK+S$krJ#KR9?L&ZBrbxCh~%o^`Y8kpATjN! zU*j-Q`@ROAlcBI^zh?{@rwOni&e(?IZNO~sNmTg<8U}OaxA2nYedD7KhNK^v4a)kx z3B|IM68PKWNrOJ2(cn_r_vd}M5kljBO=$olG9CSht`dyPkd!AYKnF-x0dx|wZ<7r9 zg973Oq%z2c(M=_&N0LM6dc@|to}ew$0GUNe!!ksJ2}q3&Hw{rC{`^PNCUyi}$L$22 zu42-K1c5&w{;(H>u}RK$h0cwuYajj$vIuxfy+p^=tvtd@-D@$-rb|i}6-(=)6^2QC zCcW@X`Wg8%jIWP?pI?S<(3XE$TLrWLYm4c3;_9!&!x`Ma&=F1}Q|NPB3TBH+*K(kD2+@?F3Z;5 zt{^GhL>nCPf=T~1MgYPeSbaZ6!9*hIULxt;X|#U_wggK!Jw$b~30o}JrrWdk6)8;g zGl{RH0@2F$EcoKlQ4J`6V*r-Uu>ks*C;&ERjwY3DAq&am4lKuQuzJ@+CK00tte?(Ruw@xGRWLM5gvVdbAw!o)t4 zeEc;lfRF(zZ_k_&a3=vU#n9CeN>*bvB(6F6pIBqQajW33kE}5cnh`o6jg&+cx(d8$iXml$ROgLJ1vSh>ha72W$4jlO@hmJ2FKAS3~alGFJ0k2}GT zq?eRO&&U9x*8&#qV&jV4K`=v5uz)ZTF)CW{D`8mTte;X<24c!FB!Ne^-(NWy2s08} za`^$yh%E3#ulN@MZr8-77lpDw)Av)PURLjbQKhNT*RGYHOP?xlJ zqmDr~8Gt?4q$e{cGuhseY-l0_Eg!4HLvBfxX89sukZhXH^cNXI|;s>hdlxvuNeDtke z_CF1k=t!QY8H{Xu^0@}@7NiGUE*>0cujve9Q2GtHa9f`XcZ}Zuh z`VrYzfKEaG_?pqQ`_pKnI7;4<7Q%MqlsmJU$i9PD1WZI3GHgtvUR6CO=(U?d92edO*I(3s~PwyY1(-1&(>i$b~%6uX^C5mMMcR8dwB#2Gl z2O}qhm=1;+Cdn{1;Ke`Fj)W{CGGKz|)=|6p&RIHvW8e2Cc{8$nC(@e3{gZBG_i5k0 z6cl17*={Hy9UGe{Y;xW*5rswREZQBV4WT*x0&n})D^J@|^KPrnfX-{`sK4dL^61<0 z+5HS|u+UaW`S--OPaMywNSMsjKgnXyc&AS_+uUNXV1+`qFB>@6~g_FZe2`bs^X8zc3>N z4vmWF>*<)(2A+1<9R`|3yanTpU@N=$z~}Afm1_S(GtwA+VR4|m`(jPgHx53^q$dor zRo#LVn6>$*T=zCX3!1>Xh>n`_|}ppyKyk;G8UsHKD{#++AB1p!vlM( zsoZ^`o$ZaOQa*B^*%oyN2-$XmZqd(N;2Qn!^A~Hkbzu(f#8@5irV8nK9fucF)nkST zJ>Vyg3R+#pxo57bOQ`*`dkQYxMhTH3ulxARe7f&%P~0dS6>C4o1~vQpazuy3O&qTH zFI*14-yfv87pU@^pCGPrzJcg&Y7&awEx0N^Ourbh#NAY;FU!-lwr&l+XKUmi(49Ns zo>(3@I~BWA+q!1(1Un2wisSWKO+q~D`CD)9*PPui)^-itC#HYYTj0%{ZPlZOEtWB~ zrs&M;m<;u9xcIO*8~%1TB2SyQu>t2#&U(<5WqUhmYqi|6Za~lbAdsy)wdTm}^LxXq zW2dXLE1)8?feHq{Li@BX=HXSDV*^aCEEAntmws3-{3d%I*HPeO}v0$ZWfYa~JjN-Shn+ zFhi}{MFXCe_u_-Qn}b8m=69@%I~l^%x}Rz$`7T!(iIf$Mkh7Q-qBAkhw0l3+s`2@~ zo+vm5%aa~XyFo~~CoAg(>e7HU!@k@ku40k*(Py;!j&8|lQiWL3u$+~vTShf<#k6-x z9_~amat+#ALyM3jpHC!Db724 zRs2%!8Az>nk}R0NCKPRcWj84AD%n+)FMX1fp%fWQTgyn7IUP(>?x`>{P{e2F1r7=Z z7w;M$V;a)Sdj2dhQ$3*7eS5e*gFg0|I?l>zsV*HJ<{{|_qts*{74^AD726PrJu zs^x}CV!$P~U;}Wa{Qz0}?y0By`JH_-NlM!*v5G=mJ9PnOSlll& z*)Y+)_jp(tp^;u*e3k zSYvRP%{t__49(5q>Fw%%RAC%HSINy+c7BVk%-WPcX#>ZN)TlLsNI)7&L5lJV>L0UZUwh|Ihj`RZ*XVCbi=jMSTW6g`@Ty*O06vl3Xa?cqy?vi}8cyhmhD?9uCrqf=XvkH>F#jgI(GiZm{Rl zvUeF0FBAIVVtzam#w8>Ff(e0n3jB`_Xfn3f(EE#P5kWqkgw@hXmTR%i8Cgsg8<}*R z05_DI@HzNhhk18e@7dYa!A8-udmdoDPwteb>nJRD+`L#>K}5LSEY%JtT%G!wh8m~Wvz>A{u*Hlnme^eBi82|SKX^y-0CP=H{u`@7X={P!C?T?j2m*-`xl0Y{%87rOkQOH`S#Lf`5(e+`wa--TC_R z%YhLYZ^(^#)dF>X_Np6|*h`gEZqzN*U|4M^;dXvrJEj#Xv8O1lWb-^RD)+Q!)1@o8 zMz-VAhUxV&l#7@$_#npArbyeVcjt8fWr9M}$H+(Pwrp3!&^iG-CJQNh6{XHX+o~xj zV)180In2Pf2p`-0&&^1@BCEI;M}oYB2c=H_R;%alvsOlqHZS9+&i1!mD=xw!1^9*) zy2~BpQQd-hgb9dIegt(3t*Qlk8VOu(9gQUfH&KW>$Dv;Bg8rYfzB;U`W_y_KZV)5{ z=~No&MpF9FUFXmt(wz!OOQVv9=1?NtQqtWa9n$q}c;9<}_j$g5&NH)W?>%c~&02G2 zX3-P8S8dB;2h*HvB&pJz;JufM^r<+1EAYfrepQGVe<&1h98TA^Y~ z`?K<$jxGsDCyQ9`Y?O{>^+T@*9q!%i^0PX=uLPt`!rlIU#DVwX{yAbJ)Z4g!{rUf1 z$cPlMY`ehDa#x)*mH^`x%3%#-vayprll-j7}^fx7S0y4=Z&tN7b~h6k6< zi$CzcNf}za*tK3x(lRZ%#V5KG{#{o!}r2B@=E(RB+<8J?lwcIuB3+YbQ;dE~J zlOSQ*D__pag(HSOG3r@c@e^UkgxgT`fRm|)7&Sj8u|(>A+>P*)mMTAI@=~aoQ(V1O=o7G{pq8A}Tq0{6)T>Z^?4wrbF=csbulM_utss zeVhsc*@7;~KjNs%I#5H0I<&`Z*w*FmPwFvp`_*x*aQh!dv?6qlUa_4Y(Wm#~r3 zMf1N6JI1a;%WXkD$YonRX&F71X}_J8}@Mj%4|T?oxwa=4ghMJ?run(^2;y{B`D)Rf@ng-(Q*k%SGk-^9L1WO z@6QW42@bPMSG*E~9|5mA3rHX+1_9B6yxP~S{g%|6)K7b_<8qvq5_1H$4+(M#J&DoP@N#IxB?5xrkl~{| zQJGdt&6hm7`Ji(7y2tTTlo?$c+Fgdb}lG)pxZX5j{a2^T6WEq2M zo#FrCu@l|Fdy@Gi1vw3l-+6C@L0G~gXiu8Iig46N>D0QK@HCgoBYQ+hMBPBPoiKzE zO%*STMnuAEbzvpaV(xfw$v00x$s_v_6m*2N5~*T<_DHt5f)0$XD@p8~D#CT#Ug|h8 z8&AVS$UTkQ-s^F0|EGZ^_c*XL(7xiy)5b~CgoC%)MZp0~#Q*UjFe7Q8?HX8-KNGn0SdEwTn!DtY2$3`; zl(uolqs876@MDhPqFyj1M9p+X>(ZhR7sm;t1Ujh;+B)81rj-0?rOz0@v-|)#<|72w zOFLe_7AHj$K2nS+0Z_J!gsVMuqHd6&kK6Nk`Kp~6YHa`KF;y?_1zD#vhf$m3-G3}S zyYsH$PsQp!!~L{CA+HpdZ1Vy5W_>!R{eT4uO-dp`bQgkk`d)>&&oqn@DtYOjb#cCn zy*a-%Q=yyDNct>qu}Pm7k{u0ew%5$LH^pm}<;j2pq``Ued?6 zz!N0cc*@g7fcbrx>A9(AP3usg?+Cgq=@}#xgA$RL(KQIZ(l35VILf%v*O4ut-?S!A zNTB%_8OdRQ_K0_zhOR7x->MEP6cc+g3g?tQkU!twi+&w)_Q!Q89Sgc*(IQrryfE%m zGbKzBgF6+a^y9`!PUSME(Qk3C+#g9H_66FlT_7>?sV&zK#bM9h^;u7z95wYhE>7v< zD5HIX`?~$>oy523X#_kB?B%;uLy1VR?Cn%$1q#86O>+kO=cIiE2@Lc~^2u>*w0e?N zUlZ8$(gM7^f82kwP+&6>NupO;RkNz1KUYY8GO$%47LmDq2~Obm5NE- zWvb{u?sL)ToxqMQ+ZnEuXjT$D!j-{? z`Y3ZtGQ0DspV73^=W2%NYI@M`E{8~={RbDHucx#Al#P*~vn|x-%=oe0{xm!I)H{Az}_ZCFGOyh%0^@nqP65$y^FB^nByu{b?kLQf0no5p+`LV#N zavu*r_z}uY{^&8jXob59@DUfKp^n4tMP1jCxOW*p|06M!BJM}0D23juYEVQYhPefn69Mreko1%*ERSJ!VCXK;sq8ZU04 z`Lp~OMBP1E{i1elChhK>NhK~C`Qd{r=lx`#r8a)mi(W;Q@c@ncVF!E8-Q!vSXSPNTzd9Oj=;NzTyUrXKDi%Lt}<=(6L7mAG=BcEN+4Oec^ zdYG3!`0P>a8LL@W_2ArVUQ20nh0#te&zzW6*&;Xfo13Cc+a-8Ug zx=KO>R7XnVmyU5QND2Hl?u)HT?}X8fXAMk58^>BV5f;DjkzNYm$y$sHr%Kg2-=#g2 zfw|QTloE*Ong1$kh#=N2ydFAuc?^5OSHepIDbKJxbpmd3kagY7X?XY}h}&S~xOFPM zy=Qu!AOM&PHaDYzDZb#lnh7)3)$Nijyq#SFNn0nAJlDpCI}MR)US<>m#t*nLd9|NP znRuBH6XE+u{zkhG;X{5diT%OXP)(APf0Oo{*8K==ED05S4A)7&{PHFIh8p}!_-{eL zPjo8T=Ky78gfL!4_!bHtblvw}ewH`|;sV*PIi1d1GD)=L# zwd>~GP<_LxQw=&Uy-?J%6l*YGuo5Ajbf0Osa}yA~2OYc3Lr+f2h8K1HW>jIYTaq=C zD#hcK-i7MW%Xe4HnkwcI1V8%sE5eW&kKw-xeZ6#u)KZeeS}tchnMi8yU&1}Gs++3z zNj*KUrDI(TlO3DcA3WPL8#;9_v;O_eMtyW~OoW$%-63byj5`duA7b6ws@&0fNv&cd ztUilOR-duB7ncL#TiHT4RHJe?{uQFv;gYWK^7}KtEcxGVlEQCKeHIWgTnz4l^^*@$ zdXf*;qLU$lwv1jGBW^c0Z?3S0mdJvYV7@&*C@I+tSU4#BV*UPCf$y5L?|)8+%?hT+ zbmoOlUY;IrZym>*tjKkY=IRnUaZ#uym$Vbh4yDJSgx?*16$=8=Uo;M^i%?}|>~>dL z-=M4EFrg;eGbFx)IjOR^uVf{Le$dXzAnStbhu;Wr5f{v%1Skql*~p&=$7<>UV1p-C z2<=8q(R+EpuNnO$7)inX5*zFMuS+SlRWg%6X{&p9$spTK8^M|kA@(gt;YHXkMcD?B z8!}mHfW6k>BqaHnpJ@8uY(!VJhT0+n;S0Qj$+B6e?(6WR*#nA!={|d()mHvPGK6m z&nd0@q7;8}`m!wkw2ezQpO1G~e3I!xu+wXnsU-=xyCil*_6i#txXDDbUhK%FxLT^l z`5V3z09Uj%&sea9#T3L|={?dZ&Gt$LY|FZtznkiHrgq?Ju1c%ny}ETyLP?pjimR<# z+$z1o`e$J*$;aR&$Ggmdn4oFZeVQ)IRUYRwcDJ;j`TdqrjtN^lgs3SEt2}Gqsh%fP z{ab*XFr}y|y!EM`PC^P)uRgYM8GPsC#Z8GE&|FY-P6Nok--d+^bXpd>rm?=uq;g4P zjU{`;uJcq!Q9BCfPIC^Lq%^oB1C*P$OrDaA?j>=16`ovpTn=VbXW>1l&BwVWX~?(F z(2#X+huhQl&#PNT>O?yvkLPJR+qqXmagU;M!Pn=BII z_hxkYPLAV1c~Sr3yX?VR+Fti+E)5K)GdHBNV{dx0g(!$j9Yn1zN=JydaU!J{Wazf* z2Ha_KHUiz&c4KWMej?Zr$&Gc8fzg3@**Pp&tInYLCKcM?;>^HOEhAHMRec72RT0)K z;$fDCq(Hs4(jBf{GyQ6*1ou%N(^4*N%NVWgA)7h$x)`g{4ZU_<(^7ABZamhA+Knl+ z&VKI#s{9=9GWVU0rdOsCl{va2XDzzT$jUHHy%FhRRn3yzOT1-T+k``p+b2kS@rfYrQE02&- zQS_FGj;Prbw!5p4j%83)Mp>=aRjjZ9a=E&6x;53iGm}wR#w)v#;+@+*J%`-k^F8#y3qN z1}V)9zlb-BKQ>&O39)8>f1TFAF+{M5;c7VYLjWDfc;)yowRXR4;v{l8E=Kv6g3w!F zl0-oJvqJ%il7GAKO6Jj!4&NKJ%FJmM2Ww$)LEX204{siDffswb2Zs^i8Xb1zey4|- z@Dl+e?A=@*&o2)v&X9VQ=4kw}$UmKKd@Uaw(YD76XUWloEIlx~%~kraiTZ4RuK(2# zPO6h?;{N!m&3RQo*(oD>W)O#VNQN_VS=xz(BqOUZtQ&J^j}1QqO{KY&?8iGo>jC|* z*TQoYd0K(h&|EEdT`AtuaEDsmdBLEWc87`5yvFHQh}O~7T{E!ZnWz+H-l55q9S6e< zaMuiq04Rffh~x>m>foM?8YT#85GM7MpY3OtFJ+%3v7f5~_q4%GKz(;X$Mf1A&${N) z55eYB=X(5SXXK(k*cT^}96>6s9%%E)cl4_y&e8QU^K=mWy3Fvb2#_)d(!Zd7qPnc) z^-1?1y&eQ3?As)6bBb=P-fX z+wQr!d#y!jDJ7;EawUwU5+(18MvyL|>Ps_hO1xdSGhYGZ${<~dQs6K+YXos;@hSaJ z(}<)bbC7x*oHiV5K&@qoM!U{RNhxKC=d;kVbX6Ta!E@y{5`Y9+BH6Fbq}HWhW{3D7DRwsmbrmy&PwXU!wEh9n=m=FK2; zwvb?Utxdi-JII?~?3*O6K(lezrGlQy(G9*ed4@z@Fwz{z8K>er`vHmPT+JU4Rurvc zZP9y_e$b3>@YT7tx3J7odby(^V+?_C(iBcCe7#Yke6y*96Ky>P`hm+%wGx`=jCH${ zX?+xV87E8fG1io)Nj;arSu3G!iP+KK8l)`V=_0r++=}($5TB^`d=L@)dQET)<3O>Q z$OM@xC%OZ_tQVaKeioD{i>|3q)=O3+)H>kE0Atu|4jnHGO*MqEop2@cNZM;hqywCK zghimO1(uM=6CTan9{NtK#7!BtKmL7@+(vlg9J6~sWd=+%H3L7D76v=a6*4wXR^MsH z0RDQ_3>O+`7{ZAks;Yk6pEVIUq^2e(H!k&AVr!KR*sV20EZN;y+-R>lsWq`KY10OY z)z@(!+aqbTqce1OuPNCOC7;&XWAUhU_uwTc_}W>viKy^<&o0$Wr-0S5vn<-MtIP~g z*%OV{7H|#gUhzD3w6KNF1_`|faZ{8bcm}ctV2juN+Ps=rnqtj#fK~oV` zI2~V;k_xR*`*@D;g2J8J1AYWB3{WVvUE8#zVq(Z%VY>JwDFSTvHOT!(zcbZePexU5 zEp?y4&lBfmM92FrUgRuutFrbj9A?$yGP2DMC01T`z0%a%XK$ zYljS4*Qpbs@PKHKNPsamfxgILEh0?snBvRum&Cgyb@4jSj9k^x7u6fHS?iO~Xf3Bv zL`Ns|-2Q2a%75g`UopK7z_SBxF%Da6o4(#Sl(OGCwMlfB(4HjT|Nqyh;!$Oh^Mlme z3QflO!5e`xU3q5eAZzt^>NSdNb`%3Og|-nghWg`PbH|m1x|(b(B*f8C0MU-fGsje! zq^1&=aQfo;pw8S?HRnS1IRdIM45_4fPO?vGmcU`*;wzL1WvRIfn!<8AJ~S4j38WzX zAy*IioMb8nIO2d}oE+IXmHK^IkQL&1mmY!|d|~4;w@>j)wbTjYv+#D_Rw#*DJxZSz zT&R8F93_U%C;PLk!hTG1i1O>YtdHBU`3NL8%tqt|81@3nN3R9VKuEA4Vp1^VT@Uht zijMKtyMHYg@!<0s(ppVDT^;!81k&fPsTP_7*qRrr03Jpj_R* zy=61m(wMtWHg(P=y;^D$w#WG2LCv}_?`@w3>SSMqy&^>b3~Xlf+z#gNM;ieF821b(#Q73|aJ>P+LOzQPH0 zw>shV(7imQc?1Z2owE7Qt{k#;?Jw!pG!01${HdQH-|F5?L$CJu6z*Daoa^dA^I-n@ zeV3tXr4x@CJu}D3I>mi(P3AM{j(xCS@-%1<>N0^|K4I+c&90Tn`??rmLa!s;uIi&5 z_NU^(_L+K3Lc`*c7jN15=>xyDYnT>6&5O$FzD0a%%zB%g?io}ue#Hv;!9Lj;`h=~} z)Ma5KPA+y-C-2tSIKW(>O=PK~p)HEjl(!q;b4UG(puuo~+3l(cScVuoQCat~k@Jl} zD|0S81fYwh2dEFcAHq=|ugXWtLr|ZP7#C>DcGx;icq#R$diB7<#w+fO;+H0=mL_MY z9c+jLJQYr$(|YK~S=f9O5;z(rGY3D-%>g zw}PM4DiewWL;jD7_w$LJH5jWph#)1vRStk|1LnSSFPW)fxjfCB^N%y9+~dr-H|gWC z+Zaze;}`TpW|7XZiPkZtI?J%CZs35xH~Obmv19(e0WC$DBXD)eQl4W{lS%;ezHH3C zXt#7low$C8V%BX(QF~J$L^D)A&?BvqWy5nzCBqhKO}Imfegxof>}O4w7Bf{^cB`#u6rOn8AQR99aB} z8nMuhE>sU*+n@OtMuku*T$2KG42)NO&RfW3&gB_FJv(48=Y$~7qLccQoaUxK_kq{o zAi{?4<1a*>aR0HTLLG=5_0ajj9O2GK9Y0xF@QliV6R7@4#}Gir?cl+!|LAy@FVVXI z0T@uk96)x-KYMuf>`jWT?8_uhnDxj2*f}czWXOR8)IkArsC9!AA6DP(k+=fW_5fzw z$4x$Gf*ud4f7~Nkw=WUzG=d<6IxicQb=OGTnvfd-FZjRy5%Pklw|ZNdDVOz7YfutM#P zI=Q%P<9KxHBtrh&s_sXhiNo1PQN5m<=FxJw4;_6+HX;H7c-d10=F^(Waa_ACJD)=I z9<+kbjH!Q+$D(|=*-3O7H)Ej855d-K*XJ;J*5eTu6e7`1v%*KWqB&DlTQqKIKL$rH zVo2_NWDv*oKe-r%T+ut?oE!!~m}OGZx>no>Awd4dmG93SL+Jo?36Y@l>>jS0$)J!3g{N7CjbF3lR!deaebR9NmG5 zAVbdD1vE4)Bou@?0)*%~Q(nC36pTP~8Yg4~MsX7wE+BE>BN8#t{X2e`gbBY@?J@}w z{ZryXh>v@xj{p{SsdDoxHN=5^(wK|ZsyQZ_X&*ewCKzWqIzkY9TYyQXxRc=E3@yIF z`R6zj`3gG%wx5&)Smfc8G(b;AFh6t_#NSNkGr!94kR4daN5ej6%*{bjRLZBsJ?t@3lnU@WSHKJ0;@dXUct!cV!+*eyQLyn)q`1E-Y`Z- z=6akzRx>h@j@|rgU%tRTM@w*rR6j1dtgtmXaxDocITkQkpC-8`AZZkd43TfexK8#9 zasu%IeI^heOp@=Gjtj}nHC(-(7n1AxO7#fP9c@oL)2T61A_imMm57f{Ry0eFHXed> z>zw65h!1uNsf7{&wZ}DV#144{6D~z2kM3^RSi9{?4S2ogDma=z<=HnLLGWIOZAu2; zqKBjadj^RLWJ#vX6hU+7bRb=_yGgtIGwrcB-Z`%5pb9p$im-HBa z-ZS8wd)k-mlU>Y>WQL`Rq;eiRdC{X?+pBy#tGYx`0>cd7&(ek&_1mj|cIst9IAlrl zAJJxR+>N@{)~4wkDqt}Q(p{stCs4g}Ln>}~Zgg#t=gS?lqB}`cx5|0GD2{_5j*t6l zSx5YGq)N?N@GE15|t6>SH#Jwn?Xj*xS_ zA1H;BKyn+JDGVAfY?Vx@qaD^qk4a2jw$(mvXISOdM%K722Quk21^2rc+jDld7HWvv z4yIZ0aHpRyOF862SqXEJs-Jo=+XxZH$8A+a^IVl@n1>Jf(8$BHE{F#~;}3b(j{QXB z-pv+<58<~8+y(~B6BN?eN77-62LbP728Mtjz*5Od@`5bw{3hW6uvCI{QSuZG($?e8 z?;v>!j?K`v8G0n4L6G=^Kw--t@#fJW3vlEPWGxFpn1M^(j`r1Yp4eS?!+V)W4ILcX ze?`gePv)Z*&py>aZ=3XWdz#fJ=fysuHedI&=}*0sv{lY@Tb>@JNFiX3O_Wu1R8cI* zyHTh6_D=PCqRNY}uQe!`p@k#yzvXS8%CU)lHR9T-0Lh=h9Hx6$7=e>NGcxS7II zCV@q=?QfPB*oJsx33JR=vp%o(g??^L=l0cz^_d$vJ=xCv`^l}6;RjerD_$R+f;@JoBiWi_SL1}2 z;{aFj4bjPN&|?r8f+eXP9`_hT;;#ciBn@KR1iS^m@sutQM8cl{L1ZtSMe{t3kRIX7 zp`Ae>{BhoX38`(M{OfU@ZzQ92h$DAbimpc;p6%y5ZP1y0CL4ZMu7>RZMTV4jRr0p( z^K!uu=8eoZHYw|LjCW<97BnY~f?1;v`V31x%wXZt%;^15H20kYR+v2D=6Y z0DhCQXQzJ#h+hc9gnxXGH2tPSkemT3nBCTS8^&Svv6gRC-(CUg%OADZiVO;dwoO7i zC(TY-c&CNpBcX=W4%jdh5G#vY1@AP)Q#lx#J*_TW(~Jax0Opg^v>AMrRXZL^#e6@ zkbK+@lvlxNS|*z=b1Y1+63P4Lh59qZvRHF}<)tLZr@df0P2lO7`-o~8#v_%M`%BFV zAkwq$Hzl*g`Fha5K-_fBM9>gppiQ5$@cO)qy*nC~JmR_0aXrGni(bZ2 z2BdVkzcl6K_)O;UoV0dX)p72a(*GO!ciWwpx%||j%^;C=45|q`wIM+>tmYOa`eN{W6O-w>3KG#L?cB8LRiuP?(4p{E? zbK)VlD~`mTYE#&^yno-`vvxr>f9PhRM_y=WyZGFjzwG8Ldl0?x`|#oY@#SXqrs=p? z(dQXzov91X425!`wv02Fzd^L%9WOO~{~>tUTk|^@!a3|#X@4bSM|sVlU?(?vE%*J) zUsleoz1@jBz3SH5cpebtQs2g)aqMKJ|FCW9W!T=Ln!Bk{PJgK768&iCRegoep6T)B zUK1$FM6w!5u_kC$M&>Oj>ZS)g+2kvjW?4==@n98Eh}rBoB8ndK#G zka8qKiA->a&RA`Bw5C;dej(T2(x5Tw3MU}8XfQ0oEuUrldeovHy;TMKr)E>X*3H#Ve369>h5o}J_CNYWrj=WYx z68v^vO6sjy=awRQYVArM`gdD-Rf0RV#lN|+z9mJ7@SE)&vyoXAXZoV$Ibs#2tZcTM z(9POF*V&BJ#*gg;64l$_-CGmL0g;%yD47bg;`>;};U4QZ+4lxmzpNSWvn9?wuD)Cx zPVK0>kL);!Rp}Rw@}%vCrRVR|hSJr;dy%HyuroQhtexU? zteZEdH>|H_94RV1N_3nr*>_RD!`!(ZsHjVQgrsAB8-o}puY5ip0ecdMyEZH*m&<`Y ziP#qSd)0mv)cg1Q!R`$As(%?bmVK^XP89=LJceVx7c5EuSR`n-o= z%gJ`Z57<=ftbecO@td@Ox|7;Cf|}G7eYNLwDt6-n*Q4{|A&Khjb+%OM!~TSx#O}f7 zjjwi4%El~Xb=N25hb{UKH$%g|=caRY&csFe#0tfFIn^U zvP;UBIDs23!_Us>Z%Pic6TPMlI8{{&j3GavHDO`Tq&%eR@7D%4ik!?jWA;T;xt^c( z5XSe2?Zx&qXWk93-COWL)}fbe$G0s%uEbV2e}qdhR{vSZ*1LQ2;o{f&mj&s|Ppy?} zOh%27*zI918C5@Dd1<3|PCV;q8@%1j`ZQ{=WZ;->i5qFG^Zjqtu9GwC&~C7eW_9VG z1>=k%Y1d}47UuhRHMv)b-M_B?jF~=o3EY2qYf&-wEEeTXy(FaVh}qQX#zt`){#8AD zmR6PU$rSZz)7Guo;JxR$@zl(loxdkHGvh3Z3+Z)5^4#YFOTnZO|i7DL-l(YWyl z@_`)kfrI5xBr-TGI21l4l+{*`XQ}Ba6%)2(p&rZmDC4BFVbkJ;G1ws*GvXM}Qp-e@ zdMeIFB889A96hDemDtwLOdj#0F%aRkxV!=IHbd$dI4zSNa%Q|b?PC@Bty*)>M<5_`&~K$c!b4a?5BzD5cWG)9UMf)$C^_N*0gIWTsZIsmm5vDTUus6Dn~PM{WQ6sj9g`bWeg zb~$kBsFl?2F%=u-FV%%n->kK*PvK5R z(Ovr5Q<14fzpg)gfgSq+g?c!^y7iSq_bUt4#B}d4rXvT`;m6j9vzAYKAEsGs9dV2` zHqmo~2GC7kCZc4)537AZ_;#0->owHz%4YQU5mx3I)+wr+2qJ)bl(kHLghh3RwI~cE zQy(i}Kf?lE4nU3Y4C8@??_uv2#=hR-{qxk`R{}<7LrY6qb(O&n_fm`Knd2oS8>WXQ zG#@R@EO~D)bNEGxa9L!!s3Wv1n)Ewo2!BZ|T?_17bbr2&UjHB~H(| zf^-^luM3ntm`gf>xsCi6!5h9gz{oAp=!Z3PWQw)-oC0URv*J4PNuK2i9kKH82k~4I zYC6t1(%xw0zUV>6kLrXb_4e>F3!+GfK;&xksx6|%5bcG$`CPO!*$yUH3a{fG3b#lR zUI(JtTb(5pT{Ogq$}4no8Wg)K=6l>2dbvxSxaGP~4ZmksDjE&Guk0i^2!NZ7()mcd>BFf=BoOOTk~2Ymdu4q#D8 z5TlQ)y1d+X>b{ZWQ$jld$@*5@x25RdCcno{^$4gS`=U>g@4ZEheSTiMl!O!k-w9{t zMsC&_Scdl^f>78@JqDX-HjG9#2g?jegH{%+GqvnzN`){wp82UOw>TD!?0#DIxm3)m zAZ|pij1r=m8;RL3>XAS)0EL2w_#_UF+bEQbbNB{EWR{qp^vE+nBMW?Z>FeIE@FzO+ zcX%Boi&r;I0$7wNIQeNEt)}wMWVt^v&Aj5N8U?Vn zt#LV#J`546cpxBcnajwXj8pXnHf{>M z0)UVmpp;Gh1V)*7yuj*-#G&8xhodWj0171{pq&8oAD5+BA-PmJ+=(eOVO+9bvCO44 zxWjO}f$#tF)dY*HyL-zV2rpx1tHppC3K?QdrD!)()^O#cW**x<@JSU$wZL=lVB=4OD4NBzTj!5yIc9MtZSyrMvEp=j<+ z)$OM~hxp$vSZ)`SV(kwq=I&on1U@m}lJW&{@R#>sBip#>e>xuuWpENV9C-kico;fO zhZ2IY8Te84R^qbvjipEyNFU$E;a3ZEBUr4LGiIRz@sER#B1#;5Z{ZtwB%lVz14pi0 z)3J(91;GBP0-{i8*0kb|Pi`HRBxD5*&;djZrbWGqX#F1@3X3aRAg+S%oyO~RT0-Ud zcbFi?9^b~xNZ2rPkV(By1NWNM_p^nuPMAsS#{Aj&q7Vc$s)G+73h?=bZ!Z4R`*%}@ xZ{ew;;JX6M#JO|Gp4xSdH|n?_NW04{E2taUDQ>pS$bB#7w;7RRd?*k1{{W_IgP#BZ literal 0 HcmV?d00001 diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java index edce5aa49..c16a84147 100644 --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -13,7 +13,6 @@ import static org.junit.jupiter.api.Assertions.*; - class GzipCompressUtilsTest { /** From 085e55064d28f28ba6db06e9b71aff20debbe373 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Mon, 13 Jan 2025 13:38:43 -0700 Subject: [PATCH 04/23] Add test for testCompressJobOutputFiles --- .../common/util/GzipCompressUtilsTest.java | 39 ++++++++++++++++++- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java index c16a84147..d068a2a00 100644 --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -112,15 +112,42 @@ void testCompressFile_fileIsNotDeleted(@TempDir File tempDir) throws IOException } @Test - void testCompressFile_fileNotFound(@TempDir File tempDir) throws IOException { + void testCompressFile_fileNotFound(@TempDir File tempDir) { assertFalse(GzipCompressUtils.compressFile(new File("not-a-real-file"), true)); } @Test - void testCompressFile_fileIsADirectory(@TempDir File tempDir) throws IOException { + void testCompressFile_fileIsADirectory(@TempDir File tempDir) { assertFalse(GzipCompressUtils.compressFile(tempDir, true)); } + @Test + void testCompressJobOutputFiles(@TempDir File tempDir) throws IOException { + String jobId = "job1234"; + File jobDirectory = new File(tempDir, jobId); + jobDirectory.mkdirs(); + + File testDataFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test.ndjson").toFile(); + File testErrorFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test_error.ndjson").toFile(); + File testTextFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test.txt").toFile(); + + assertTrue(testDataFile.exists()); + assertTrue(testErrorFile.exists()); + assertTrue(testTextFile.exists()); + + GzipCompressUtils.compressJobOutputFiles(jobId, tempDir.getAbsolutePath(), this::fileFilter); + + // verify files are compressed + assertTrue(new File(jobDirectory, "test.ndjson.gz").exists()); + assertTrue(new File(jobDirectory, "test_error.ndjson.gz").exists()); + + // verify original files were deleted after being compressed + assertFalse(testDataFile.exists()); + assertFalse(testErrorFile.exists()); + + // verify unrelated file (neither data nor error) is not changed + assertTrue(testTextFile.exists()); + } Path newTestFile(String suffix) throws IOException { Path file = Files.createTempFile(getClass().getSimpleName(), suffix); @@ -131,4 +158,12 @@ Path newTestFile(String suffix) throws IOException { Path copyFile(File file, File directory) throws IOException { return Files.copy(file.toPath(), new File(directory, file.getName()).toPath()); } + + Path copyFile(File file, File directory, String newFilename) throws IOException { + return Files.copy(file.toPath(), new File(directory, newFilename).toPath()); + } + + boolean fileFilter(File file) { + return file.getName().endsWith("_error.ndjson") || file.getName().endsWith(".ndjson"); + } } \ No newline at end of file From eea59763f3ceced992e41b987ebe8ff3fc7d0d7d Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Mon, 13 Jan 2025 13:40:25 -0700 Subject: [PATCH 05/23] Another test case --- .../java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java index d068a2a00..226da4144 100644 --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -147,6 +147,7 @@ void testCompressJobOutputFiles(@TempDir File tempDir) throws IOException { // verify unrelated file (neither data nor error) is not changed assertTrue(testTextFile.exists()); + assertFalse(new File(jobDirectory, "test.txt.gz").exists()); } Path newTestFile(String suffix) throws IOException { From f4d704769b9208080082dd80b1e3320c769c5537 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Tue, 14 Jan 2025 08:10:56 -0700 Subject: [PATCH 06/23] Use 2.0.1 for aggregator version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19ce53c24..1f56eebf7 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 1.12.10 2.4.1 1.2.10 - 2.0.1-SNAPSHOT + 2.0.1 1.9.7 1.2.5 1.2.4 From 5dbabf9220cd95ee89ce8ed84519913ad83576cf Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Tue, 14 Jan 2025 11:09:59 -0700 Subject: [PATCH 07/23] Resolve checkstyle issues --- .../api/controller/common/FileDownloadCommon.java | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java index 4ea7ffe3d..9975ecebb 100644 --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java @@ -69,11 +69,9 @@ public ResponseEntity downloadFile(String jobUuid, String filename, Http // write to response stream, compressing or decompressing file contents as needed if (requestedEncoding == fileEncoding) { IOUtils.copy(in, out); - } - else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { + } else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { GzipCompressUtils.decompress(in, response.getOutputStream()); - } - else if (fileEncoding == UNCOMPRESSED && requestedEncoding == GZIP_COMPRESSED) { + } else if (fileEncoding == UNCOMPRESSED && requestedEncoding == GZIP_COMPRESSED) { GzipCompressUtils.compress(in, response.getOutputStream()); } @@ -89,8 +87,7 @@ Resource getDownloadResource(String jobUuid, String filename) throws IOException try { // look for compressed file return jobClient.getResourceForJob(jobUuid, filename + ".gz", organization); - } - catch (RuntimeException e) { + } catch (RuntimeException e) { // look for uncompressed file // allow this exception to be thrown to caller (for consistency with current behavior) return jobClient.getResourceForJob(jobUuid, filename, organization); @@ -105,11 +102,9 @@ static String getDownloadFilename( final String filename = downloadResource.getFile().getName(); if (requestedEncoding == fileEncoding) { return filename; - } - else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { + } else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { return filename.replace(".gz", ""); - } - else { + } else { return filename + ".gz"; } } From e29ecdf4ee2501b69df3c30f5120bb90ba4d072b Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Tue, 14 Jan 2025 15:17:03 -0700 Subject: [PATCH 08/23] Increase code coverage --- .../cms/ab2d/common/util/GzipCompressUtils.java | 2 +- .../ab2d/common/util/GzipCompressUtilsTest.java | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java index b006f0050..ac7ec3894 100644 --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java @@ -83,7 +83,7 @@ public static boolean compressJobOutputFiles( * @return true if file was compressed successfully, false otherwise */ static boolean compressFile(File file, boolean deleteFile) { - if (file != null && !file.exists() && !file.isFile()) { + if (file == null || !file.exists() || !file.isFile()) { return false; } // append ".gz" to the input filename diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java index 226da4144..74d587d1e 100644 --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java @@ -4,6 +4,7 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.io.TempDir; +import javax.persistence.SqlResultSetMapping; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; @@ -150,6 +151,20 @@ void testCompressJobOutputFiles(@TempDir File tempDir) throws IOException { assertFalse(new File(jobDirectory, "test.txt.gz").exists()); } + @Test + void testCompressJobOutputFiles_badInputs(@TempDir File tempDir) throws IOException { + copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile(); + assertFalse(GzipCompressUtils.compressJobOutputFiles("non-existent-job-id", tempDir.getAbsolutePath(), null)); + assertFalse(GzipCompressUtils.compressJobOutputFiles(UNCOMPRESSED_FILE.toFile().getName(), tempDir.getAbsolutePath(), null)); + } + + @Test + void compressFile_invalidInputs(@TempDir File tempDir) { + assertFalse(GzipCompressUtils.compressFile(null, true)); + assertFalse(GzipCompressUtils.compressFile(new File("does-not-exist.ndjson"), true)); + assertFalse(GzipCompressUtils.compressFile(tempDir, true)); + } + Path newTestFile(String suffix) throws IOException { Path file = Files.createTempFile(getClass().getSimpleName(), suffix); file.toFile().deleteOnExit(); From 13fd263e07e65be4acb8ba69b18d1c77be66d880 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Fri, 17 Jan 2025 11:33:29 -0700 Subject: [PATCH 09/23] Add temporary debugging for TestRunner#performStatusRequests --- .../src/test/java/gov/cms/ab2d/e2etest/TestRunner.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java index 1ef0cf7a8..2ef2e4680 100644 --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java @@ -521,7 +521,15 @@ private Pair performStatusRequests(List contentLocati log.info("500 response body: " + statusResponseAgain.body()); return null; } - assertEquals(200, statusResponseAgain.statusCode()); + + // TODO - remove temporary debugging code + if (statusResponseAgain.body() != null) { + log.info(statusResponseAgain.body()); + } + assertEquals( + 200, + statusResponseAgain.statusCode(), + "Expected HTTP 200 but received " + statusResponseAgain.statusCode()); return verifyJsonFromStatusResponse(statusResponseAgain, jobUuid, isContract, contractNumber, version); } From 9a646cd3ce42b102c83086dd0692bd2f0368dc9b Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Wed, 22 Jan 2025 13:39:08 -0700 Subject: [PATCH 10/23] Add log statements for debugging --- .../main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java | 2 ++ .../gov/cms/ab2d/worker/processor/ContractProcessorImpl.java | 1 + 2 files changed, 3 insertions(+) diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java index ac7ec3894..4935db7b4 100644 --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java @@ -65,12 +65,14 @@ public static boolean compressJobOutputFiles( FileFilter fileFilter) { val jobDirectory = new File(baseDir + File.separator + jobId); if (!jobDirectory.exists() || !jobDirectory.isDirectory()) { + log.info("Job directory does not exist: {}", jobDirectory.getAbsolutePath()); return false; } val files = jobDirectory.listFiles(fileFilter); boolean success = true; for (File file : files) { + log.info("Compressing file: {}", file.getAbsolutePath()); success = success && compressFile(file, true); } return success; diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java index 17ba29ece..db4b8f3f4 100644 --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java @@ -178,6 +178,7 @@ public List process(Job job) { this::shouldCompressFile ); + log.info("Looking for compressed output files..."); // Retrieve all the job output info log.info("Number of outputs: " + jobOutputs.size()); jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA_COMPRESSED)); From 8fe7f6d9acc445ff3fb4843ce3df5e7d9af8a30a Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Wed, 22 Jan 2025 16:04:33 -0700 Subject: [PATCH 11/23] Temp changes for debugging --- .../main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java | 2 -- job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java | 3 ++- .../gov/cms/ab2d/worker/processor/ContractProcessorImpl.java | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java index 4935db7b4..ac7ec3894 100644 --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java @@ -65,14 +65,12 @@ public static boolean compressJobOutputFiles( FileFilter fileFilter) { val jobDirectory = new File(baseDir + File.separator + jobId); if (!jobDirectory.exists() || !jobDirectory.isDirectory()) { - log.info("Job directory does not exist: {}", jobDirectory.getAbsolutePath()); return false; } val files = jobDirectory.listFiles(fileFilter); boolean success = true; for (File file : files) { - log.info("Compressing file: {}", file.getAbsolutePath()); success = success && compressFile(file, true); } return success; diff --git a/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java b/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java index 060ca7ca7..cf5131140 100644 --- a/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java +++ b/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java @@ -144,7 +144,8 @@ public Resource getResourceForJob(String jobUuid, String fileName, String organi Path file = Paths.get(fileDownloadPath, job.getJobUuid(), fileName); Resource resource = new UrlResource(file.toUri()); - if (foundJobOutput.getDownloaded() >= MAX_DOWNLOADS) { + if (foundJobOutput.getDownloaded() >= 100) { // TODO remove -- for testing only + //if (foundJobOutput.getDownloaded() >= MAX_DOWNLOADS) { throw new JobOutputMissingException("The file has already been download the maximum number of allowed times."); } if (!resource.exists()) { diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java index db4b8f3f4..17ba29ece 100644 --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java @@ -178,7 +178,6 @@ public List process(Job job) { this::shouldCompressFile ); - log.info("Looking for compressed output files..."); // Retrieve all the job output info log.info("Number of outputs: " + jobOutputs.size()); jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA_COMPRESSED)); From c4144812a9d1b248d2624693542d52eb0c28ca7f Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Wed, 22 Jan 2025 16:06:39 -0700 Subject: [PATCH 12/23] Revert change --- job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java b/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java index cf5131140..060ca7ca7 100644 --- a/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java +++ b/job/src/main/java/gov/cms/ab2d/job/service/JobServiceImpl.java @@ -144,8 +144,7 @@ public Resource getResourceForJob(String jobUuid, String fileName, String organi Path file = Paths.get(fileDownloadPath, job.getJobUuid(), fileName); Resource resource = new UrlResource(file.toUri()); - if (foundJobOutput.getDownloaded() >= 100) { // TODO remove -- for testing only - //if (foundJobOutput.getDownloaded() >= MAX_DOWNLOADS) { + if (foundJobOutput.getDownloaded() >= MAX_DOWNLOADS) { throw new JobOutputMissingException("The file has already been download the maximum number of allowed times."); } if (!resource.exists()) { From a6b1e5a3190a474c6c68cb3aee1234bfb96c4f69 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Wed, 22 Jan 2025 18:35:49 -0700 Subject: [PATCH 13/23] Add temporary debugging code --- .../src/test/java/gov/cms/ab2d/e2etest/TestRunner.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java index 2ef2e4680..c0aa750e9 100644 --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java @@ -516,16 +516,17 @@ private Pair performStatusRequests(List contentLocati String jobUuid = JobUtil.getJobUuid(contentLocationList.iterator().next()); + final String statusResponseAgainBody = statusResponseAgain.body(); + if (statusResponseAgain.statusCode() == 500) { // No values returned if 500 - log.info("500 response body: " + statusResponseAgain.body()); + log.info("500 response body: " + statusResponseAgainBody); return null; } // TODO - remove temporary debugging code - if (statusResponseAgain.body() != null) { - log.info(statusResponseAgain.body()); - } + log.info("Body -> {}", statusResponseAgainBody); + log.info("Status code -> {}", statusResponseAgain.statusCode()); assertEquals( 200, statusResponseAgain.statusCode(), From 09e9616cd9d618bfaa827be37a542633d647270c Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Thu, 23 Jan 2025 07:31:13 -0700 Subject: [PATCH 14/23] Remove '.gz' extension in file download URL --- .../api/controller/common/StatusCommon.java | 12 +- .../gov.cms.ab2d.job.dto/JobPollResult.html | 1 + .../JobPollResult.java.html | 21 + job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html | 1 + .../gov.cms.ab2d.job.dto/StaleJob.java.html | 14 + .../gov.cms.ab2d.job.dto/StartJobDTO.html | 1 + .../StartJobDTO.java.html | 33 + job/jacoco/gov.cms.ab2d.job.dto/index.html | 1 + .../gov.cms.ab2d.job.dto/index.source.html | 1 + job/jacoco/gov.cms.ab2d.job.model/Job.html | 1 + .../gov.cms.ab2d.job.model/Job.java.html | 129 ++ .../gov.cms.ab2d.job.model/JobOutput.html | 1 + .../JobOutput.java.html | 52 + .../gov.cms.ab2d.job.model/JobStartedBy.html | 1 + .../JobStartedBy.java.html | 8 + .../gov.cms.ab2d.job.model/JobStatus$1.html | 1 + .../gov.cms.ab2d.job.model/JobStatus$2.html | 1 + .../gov.cms.ab2d.job.model/JobStatus$3.html | 1 + .../gov.cms.ab2d.job.model/JobStatus$4.html | 1 + .../gov.cms.ab2d.job.model/JobStatus$5.html | 1 + .../gov.cms.ab2d.job.model/JobStatus.html | 1 + .../JobStatus.java.html | 59 + job/jacoco/gov.cms.ab2d.job.model/index.html | 1 + .../gov.cms.ab2d.job.model/index.source.html | 1 + .../InvalidJobAccessException.html | 1 + .../InvalidJobAccessException.java.html | 9 + .../InvalidJobStateTransition.html | 1 + .../InvalidJobStateTransition.java.html | 9 + .../JobOutputMissingException.html | 1 + .../JobOutputMissingException.java.html | 9 + .../JobOutputServiceImpl.html | 1 + .../JobOutputServiceImpl.java.html | 32 + .../JobServiceImpl.html | 1 + .../JobServiceImpl.java.html | 215 +++ .../gov.cms.ab2d.job.service/index.html | 1 + .../index.source.html | 1 + job/jacoco/gov.cms.ab2d.job.util/JobUtil.html | 1 + .../gov.cms.ab2d.job.util/JobUtil.java.html | 51 + job/jacoco/gov.cms.ab2d.job.util/index.html | 1 + .../gov.cms.ab2d.job.util/index.source.html | 1 + job/jacoco/index.html | 1 + job/jacoco/jacoco-resources/branchfc.gif | Bin 0 -> 91 bytes job/jacoco/jacoco-resources/branchnc.gif | Bin 0 -> 91 bytes job/jacoco/jacoco-resources/branchpc.gif | Bin 0 -> 91 bytes job/jacoco/jacoco-resources/bundle.gif | Bin 0 -> 709 bytes job/jacoco/jacoco-resources/class.gif | Bin 0 -> 586 bytes job/jacoco/jacoco-resources/down.gif | Bin 0 -> 67 bytes job/jacoco/jacoco-resources/greenbar.gif | Bin 0 -> 91 bytes job/jacoco/jacoco-resources/group.gif | Bin 0 -> 351 bytes job/jacoco/jacoco-resources/method.gif | Bin 0 -> 193 bytes job/jacoco/jacoco-resources/package.gif | Bin 0 -> 227 bytes job/jacoco/jacoco-resources/prettify.css | 13 + job/jacoco/jacoco-resources/prettify.js | 1510 +++++++++++++++++ job/jacoco/jacoco-resources/redbar.gif | Bin 0 -> 91 bytes job/jacoco/jacoco-resources/report.css | 243 +++ job/jacoco/jacoco-resources/report.gif | Bin 0 -> 363 bytes job/jacoco/jacoco-resources/session.gif | Bin 0 -> 213 bytes job/jacoco/jacoco-resources/sort.gif | Bin 0 -> 58 bytes job/jacoco/jacoco-resources/sort.js | 148 ++ job/jacoco/jacoco-resources/source.gif | Bin 0 -> 354 bytes job/jacoco/jacoco-resources/up.gif | Bin 0 -> 67 bytes job/jacoco/jacoco-sessions.html | 1 + job/jacoco/jacoco.csv | 19 + job/jacoco/jacoco.xml | 1 + 64 files changed, 2614 insertions(+), 1 deletion(-) create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/index.html create mode 100644 job/jacoco/gov.cms.ab2d.job.dto/index.source.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/Job.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/Job.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobOutput.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/index.html create mode 100644 job/jacoco/gov.cms.ab2d.job.model/index.source.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/index.html create mode 100644 job/jacoco/gov.cms.ab2d.job.service/index.source.html create mode 100644 job/jacoco/gov.cms.ab2d.job.util/JobUtil.html create mode 100644 job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html create mode 100644 job/jacoco/gov.cms.ab2d.job.util/index.html create mode 100644 job/jacoco/gov.cms.ab2d.job.util/index.source.html create mode 100644 job/jacoco/index.html create mode 100644 job/jacoco/jacoco-resources/branchfc.gif create mode 100644 job/jacoco/jacoco-resources/branchnc.gif create mode 100644 job/jacoco/jacoco-resources/branchpc.gif create mode 100644 job/jacoco/jacoco-resources/bundle.gif create mode 100644 job/jacoco/jacoco-resources/class.gif create mode 100644 job/jacoco/jacoco-resources/down.gif create mode 100644 job/jacoco/jacoco-resources/greenbar.gif create mode 100644 job/jacoco/jacoco-resources/group.gif create mode 100644 job/jacoco/jacoco-resources/method.gif create mode 100644 job/jacoco/jacoco-resources/package.gif create mode 100644 job/jacoco/jacoco-resources/prettify.css create mode 100644 job/jacoco/jacoco-resources/prettify.js create mode 100644 job/jacoco/jacoco-resources/redbar.gif create mode 100644 job/jacoco/jacoco-resources/report.css create mode 100644 job/jacoco/jacoco-resources/report.gif create mode 100644 job/jacoco/jacoco-resources/session.gif create mode 100644 job/jacoco/jacoco-resources/sort.gif create mode 100644 job/jacoco/jacoco-resources/sort.js create mode 100644 job/jacoco/jacoco-resources/source.gif create mode 100644 job/jacoco/jacoco-resources/up.gif create mode 100644 job/jacoco/jacoco-sessions.html create mode 100644 job/jacoco/jacoco.csv create mode 100644 job/jacoco/jacoco.xml diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java index 15dc72759..3266eef19 100644 --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java @@ -20,6 +20,7 @@ import java.util.List; import javax.servlet.http.HttpServletRequest; import lombok.extern.slf4j.Slf4j; +import lombok.val; import org.slf4j.MDC; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpHeaders; @@ -150,7 +151,16 @@ protected ResponseEntity getCanceledResponse(Job } private String getUrlPath(String jobUuid, String filePath, HttpServletRequest request, String apiPrefix) { - return Common.getUrl(apiPrefix + FHIR_PREFIX + "/Job/" + jobUuid + "/file/" + filePath, request); + val filePathWithoutGzExtension = removeGzFileExtension(filePath); + return Common.getUrl(apiPrefix + FHIR_PREFIX + "/Job/" + jobUuid + "/file/" + filePathWithoutGzExtension, request); + } + + // job output files are now stored in gzip format - remove '.gz' extension from file download URL for backwards compatibility + private String removeGzFileExtension(String filePath) { + val index = filePath.lastIndexOf(".gz"); + return (index == -1) + ? filePath + : filePath.substring(0, index); } private List generateValueOutputs(JobOutput o) { diff --git a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html new file mode 100644 index 000000000..bc2b5f755 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html @@ -0,0 +1 @@ +JobPollResult

JobPollResult

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total252 of 2768%48 of 480%3941681517
equals(Object)1130%380%20201111
hashCode()830%100%661111
toString()140%n/a111111
setRequestUrl(String)40%n/a111111
setStatus(JobStatus)40%n/a111111
setProgress(int)40%n/a111111
setTransactionTime(String)40%n/a111111
setExpiresAt(OffsetDateTime)40%n/a111111
setJobOutputs(List)40%n/a111111
getRequestUrl()30%n/a111111
getProgress()30%n/a111111
getTransactionTime()30%n/a111111
getExpiresAt()30%n/a111111
getJobOutputs()30%n/a111111
canEqual(Object)30%n/a111111
JobPollResult(String, JobStatus, int, String, OffsetDateTime, List)21100%n/a010101
getStatus()3100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html new file mode 100644 index 000000000..f7ebe52e9 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html @@ -0,0 +1,21 @@ +JobPollResult.java

JobPollResult.java

package gov.cms.ab2d.job.dto;
+
+import gov.cms.ab2d.job.model.JobOutput;
+import gov.cms.ab2d.job.model.JobStatus;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+
+import java.time.OffsetDateTime;
+import java.util.List;
+
+@Data
+@AllArgsConstructor
+public class JobPollResult {
+    private String requestUrl;
+    private JobStatus status;
+    private int progress;
+    private String transactionTime;
+    private OffsetDateTime expiresAt;
+    private List<JobOutput> jobOutputs;
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html new file mode 100644 index 000000000..8ea0cfc19 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html @@ -0,0 +1 @@ +StaleJob

StaleJob

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total95 of 1048%20 of 200%15162356
equals(Object)490%160%991111
hashCode()340%40%331111
toString()60%n/a111111
getJobUuid()30%n/a111111
getOrganization()30%n/a111111
StaleJob(String, String)9100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html new file mode 100644 index 000000000..3b73f30d1 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html @@ -0,0 +1,14 @@ +StaleJob.java

StaleJob.java

package gov.cms.ab2d.job.dto;
+
+import lombok.Value;
+
+import javax.validation.constraints.NotNull;
+
+@Value
+public class StaleJob {
+    @NotNull
+    String jobUuid;
+    @NotNull
+    String organization;
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html new file mode 100644 index 000000000..dc7d1a7ad --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html @@ -0,0 +1 @@ +StartJobDTO

StartJobDTO

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total296 of 34714%70 of 700%3948110413
equals(Object)1570%540%28281111
hashCode()1180%160%991111
toString()180%n/a111111
canEqual(Object)30%n/a111111
StartJobDTO(String, String, String, String, String, OffsetDateTime, OffsetDateTime, FhirVersion)27100%n/a010101
getContractNumber()3100%n/a010101
getOrganization()3100%n/a010101
getResourceTypes()3100%n/a010101
getUrl()3100%n/a010101
getOutputFormat()3100%n/a010101
getSince()3100%n/a010101
getUntil()3100%n/a010101
getVersion()3100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html new file mode 100644 index 000000000..d40dceda1 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html @@ -0,0 +1,33 @@ +StartJobDTO.java

StartJobDTO.java

package gov.cms.ab2d.job.dto;
+
+import gov.cms.ab2d.fhir.FhirVersion;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+
+import javax.validation.constraints.NotNull;
+import java.time.OffsetDateTime;
+
+/**
+ * StartJobDTO is a fully verified and validated request to start a job.
+ *
+ * This means the caller has the permission to run against this contract and that the contract is attested.
+ */
+@Data
+@AllArgsConstructor
+public class StartJobDTO {
+    @NotNull
+    private final String contractNumber;
+    @NotNull
+    private final String organization;
+    @NotNull
+    private final String resourceTypes;
+    @NotNull
+    private final String url;
+    @NotNull
+    private final String outputFormat;
+    private final OffsetDateTime since;
+    private final OffsetDateTime until;
+    @NotNull
+    private final FhirVersion version;
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/index.html b/job/jacoco/gov.cms.ab2d.job.dto/index.html new file mode 100644 index 000000000..9566da34b --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/index.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.dto

gov.cms.ab2d.job.dto

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total643 of 72711%138 of 1380%93105921243603
StartJobDTO2965114%700%394811041301
JobPollResult252248%480%394168151701
StaleJob9598%200%1516235601
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.dto/index.source.html b/job/jacoco/gov.cms.ab2d.job.dto/index.source.html new file mode 100644 index 000000000..38bdfa166 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.dto/index.source.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.dto

gov.cms.ab2d.job.dto

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total643 of 72711%138 of 1380%93105921243603
StartJobDTO.java2965114%700%394811041301
JobPollResult.java252248%480%394168151701
StaleJob.java9598%200%1516235601
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/Job.html b/job/jacoco/gov.cms.ab2d.job.model/Job.html new file mode 100644 index 000000000..c028d2295 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/Job.html @@ -0,0 +1 @@ +Job

Job

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total23 of 29892%7 of 2470%863139251
buildFileEvent(File, FileEvent.FileStatus)100%n/a111111
equals(Object)92976%6650%570101
setStartedBy(JobStartedBy)40%n/a111111
buildJobStatusChangeEvent(JobStatus, String)21100%2100%020201
hashCode()20100%2100%020101
pollingTooMuch(int)15100%1375%130101
Job()14100%n/a010401
pollAndUpdateTime(int)13100%2100%020401
addJobOutput(JobOutput)9100%n/a010301
hasJobBeenCancelled()8100%2100%020101
isExpired(int)7100%n/a010101
setId(Long)4100%n/a010101
setJobUuid(String)4100%n/a010101
setOrganization(String)4100%n/a010101
setJobOutputs(List)4100%n/a010101
setCreatedAt(OffsetDateTime)4100%n/a010101
setCompletedAt(OffsetDateTime)4100%n/a010101
setRequestUrl(String)4100%n/a010101
setStatus(JobStatus)4100%n/a010101
setStatusMessage(String)4100%n/a010101
setOutputFormat(String)4100%n/a010101
setProgress(Integer)4100%n/a010101
setFhirVersion(FhirVersion)4100%n/a010101
setLastPollTime(OffsetDateTime)4100%n/a010101
setSince(OffsetDateTime)4100%n/a010101
setUntil(OffsetDateTime)4100%n/a010101
setExpiresAt(OffsetDateTime)4100%n/a010101
setResourceTypes(String)4100%n/a010101
setSinceSource(SinceSource)4100%n/a010101
setContractNumber(String)4100%n/a010101
getId()3100%n/a010101
getJobUuid()3100%n/a010101
getOrganization()3100%n/a010101
getJobOutputs()3100%n/a010101
getCreatedAt()3100%n/a010101
getCompletedAt()3100%n/a010101
getRequestUrl()3100%n/a010101
getStatus()3100%n/a010101
getStatusMessage()3100%n/a010101
getOutputFormat()3100%n/a010101
getProgress()3100%n/a010101
getFhirVersion()3100%n/a010101
getLastPollTime()3100%n/a010101
getSince()3100%n/a010101
getUntil()3100%n/a010101
getExpiresAt()3100%n/a010101
getResourceTypes()3100%n/a010101
getStartedBy()3100%n/a010101
getSinceSource()3100%n/a010101
getContractNumber()3100%n/a010101
canEqual(Object)3100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/Job.java.html b/job/jacoco/gov.cms.ab2d.job.model/Job.java.html new file mode 100644 index 000000000..bb42a02c5 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/Job.java.html @@ -0,0 +1,129 @@ +Job.java

Job.java

package gov.cms.ab2d.job.model;
+
+import gov.cms.ab2d.common.model.SinceSource;
+import gov.cms.ab2d.common.model.TooFrequentInvocations;
+import gov.cms.ab2d.eventclient.events.FileEvent;
+import gov.cms.ab2d.eventclient.events.JobStatusChangeEvent;
+import gov.cms.ab2d.fhir.FhirVersion;
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+
+import javax.persistence.*;
+import javax.validation.constraints.NotNull;
+import javax.validation.constraints.Pattern;
+import java.io.File;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.List;
+
+import static gov.cms.ab2d.job.model.JobStatus.CANCELLED;
+import static gov.cms.ab2d.fhir.BundleUtils.EOB;
+import static gov.cms.ab2d.fhir.FhirVersion.STU3;
+import static javax.persistence.EnumType.STRING;
+
+@Entity
+@Getter
+@Setter
+@EqualsAndHashCode(onlyExplicitlyIncluded = true)
+public class Job {
+
+    @Id
+    @GeneratedValue
+    @EqualsAndHashCode.Include
+    private Long id;
+
+    @Column(unique = true)
+    @NotNull
+    private String jobUuid;
+
+    @NotNull
+    private String organization;
+
+    @OneToMany(
+            mappedBy = "job",
+            cascade = CascadeType.ALL,
+            orphanRemoval = true,
+            fetch = FetchType.EAGER
+    )
+    private List<JobOutput> jobOutputs = new ArrayList<>();
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    @NotNull
+    private OffsetDateTime createdAt;
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    private OffsetDateTime completedAt;
+
+    private String requestUrl;
+
+    @Enumerated(STRING)
+    @NotNull
+    private JobStatus status;
+    private String statusMessage;
+    private String outputFormat;
+    private Integer progress;
+
+    @Enumerated(STRING)
+    private FhirVersion fhirVersion = STU3;
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    private OffsetDateTime lastPollTime;
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    private OffsetDateTime since;
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    private OffsetDateTime until;
+
+    @Column(columnDefinition = "TIMESTAMP WITH TIME ZONE")
+    private OffsetDateTime expiresAt;
+
+    @Pattern(regexp = EOB, message = "_type should be ExplanationOfBenefit")
+    private String resourceTypes; // for now just limited to ExplanationOfBenefit
+
+    // Default a job to started by a PDP and only override if necessary
+    @Enumerated(STRING)
+    @NotNull
+    private JobStartedBy startedBy = JobStartedBy.PDP;
+
+    @Enumerated(STRING)
+    private SinceSource sinceSource;
+
+    @NotNull
+    private String contractNumber;
+
+    public void addJobOutput(JobOutput jobOutput) {
+        jobOutputs.add(jobOutput);
+        jobOutput.setJob(this);
+    }
+
+    public boolean hasJobBeenCancelled() {
+        return CANCELLED == status;
+    }
+
+    public void pollAndUpdateTime(int delaySeconds) {
+        if (pollingTooMuch(delaySeconds)) {
+            throw new TooFrequentInvocations("polling too frequently");
+        }
+        lastPollTime = OffsetDateTime.now();
+    }
+
+    public boolean isExpired(int ttlHours) {
+        return status.isExpired(completedAt, ttlHours);
+    }
+
+    private boolean pollingTooMuch(int delaySeconds) {
+        return lastPollTime != null && lastPollTime.plusSeconds(delaySeconds).isAfter(OffsetDateTime.now());
+    }
+
+    public JobStatusChangeEvent buildJobStatusChangeEvent(JobStatus newStatus, String statusMessage) {
+        final String oldStatus = (status == null) ? null : status.name();
+        return new JobStatusChangeEvent(organization, jobUuid, oldStatus, newStatus.name(), statusMessage);
+    }
+
+    public FileEvent buildFileEvent(File file, FileEvent.FileStatus status) {
+        return new FileEvent(organization, jobUuid, file, status);
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html new file mode 100644 index 000000000..5caffc2f0 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html @@ -0,0 +1 @@ +JobOutput

JobOutput

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total38 of 13070%9 of 1435%1029113322
hashCode()200%20%221111
equals(Object)112771%7541%670101
setId(Long)40%n/a111111
getLastDownloadAt()30%n/a111111
JobOutput()6100%n/a010201
setJob(Job)4100%n/a010101
setFilePath(String)4100%n/a010101
setFhirResourceType(String)4100%n/a010101
setError(Boolean)4100%n/a010101
setDownloaded(int)4100%n/a010101
setChecksum(String)4100%n/a010101
setFileLength(Long)4100%n/a010101
setLastDownloadAt(OffsetDateTime)4100%n/a010101
getId()3100%n/a010101
getJob()3100%n/a010101
getFilePath()3100%n/a010101
getFhirResourceType()3100%n/a010101
getError()3100%n/a010101
getDownloaded()3100%n/a010101
getChecksum()3100%n/a010101
getFileLength()3100%n/a010101
canEqual(Object)3100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html new file mode 100644 index 000000000..f3fc2a91d --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html @@ -0,0 +1,52 @@ +JobOutput.java

JobOutput.java

package gov.cms.ab2d.job.model;
+
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.JoinColumn;
+import javax.persistence.ManyToOne;
+import javax.validation.constraints.NotNull;
+import java.time.OffsetDateTime;
+
+@Entity
+@Getter
+@Setter
+@EqualsAndHashCode(onlyExplicitlyIncluded = true)
+public class JobOutput {
+
+    @Id
+    @GeneratedValue
+    @EqualsAndHashCode.Include
+    private Long id;
+
+    @ManyToOne
+    @JoinColumn(name = "job_id")
+    @NotNull
+    private Job job;
+
+    @Column(columnDefinition = "text")
+    @NotNull
+    private String filePath;
+
+    private String fhirResourceType;
+
+    @NotNull
+    private Boolean error;
+
+    @NotNull
+    private int downloaded = 0;
+
+    @NotNull
+    private String checksum;
+
+    @NotNull
+    private Long fileLength;
+
+    private OffsetDateTime lastDownloadAt;
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html new file mode 100644 index 000000000..d1de5c66f --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html @@ -0,0 +1 @@ +JobStartedBy

JobStartedBy

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 21100%0 of 0n/a010401
static {...}21100%n/a010401
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html new file mode 100644 index 000000000..d233fb314 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html @@ -0,0 +1,8 @@ +JobStartedBy.java

JobStartedBy.java

package gov.cms.ab2d.job.model;
+
+public enum JobStartedBy {
+    PDP,
+    JENKINS,
+    DEVELOPER
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html new file mode 100644 index 000000000..e3da64152 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html @@ -0,0 +1 @@ +JobStatus.new JobStatus() {...}

JobStatus.new JobStatus() {...}

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total2 of 977%0 of 0n/a121212
isExpired(OffsetDateTime, int)20%n/a111111
{...}7100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html new file mode 100644 index 000000000..99634e5f5 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html @@ -0,0 +1 @@ +JobStatus.new JobStatus() {...}

JobStatus.new JobStatus() {...}

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total2 of 977%0 of 0n/a121212
isExpired(OffsetDateTime, int)20%n/a111111
{...}7100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html new file mode 100644 index 000000000..30b084b8b --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html @@ -0,0 +1 @@ +JobStatus.new JobStatus() {...}

JobStatus.new JobStatus() {...}

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 9100%0 of 0n/a020202
{...}7100%n/a010101
isExpired(OffsetDateTime, int)2100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html new file mode 100644 index 000000000..becf1d95f --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html @@ -0,0 +1 @@ +JobStatus.new JobStatus() {...}

JobStatus.new JobStatus() {...}

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total15 of 2231%2 of 20%234512
isExpired(OffsetDateTime, int)150%20%224411
{...}7100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html new file mode 100644 index 000000000..4953bbc00 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html @@ -0,0 +1 @@ +JobStatus.new JobStatus() {...}

JobStatus.new JobStatus() {...}

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total2 of 977%0 of 0n/a121212
isExpired(OffsetDateTime, int)20%n/a111111
{...}7100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html new file mode 100644 index 000000000..d1bb4b806 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html @@ -0,0 +1 @@ +JobStatus

JobStatus

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total3 of 6095%0 of 0n/a1411214
isFinished()30%n/a111111
static {...}43100%n/a010601
JobStatus(String, int, boolean, boolean)11100%n/a010401
isCancellable()3100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html new file mode 100644 index 000000000..7190610ab --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html @@ -0,0 +1,59 @@ +JobStatus.java

JobStatus.java

package gov.cms.ab2d.job.model;
+
+import lombok.Getter;
+
+import java.time.Instant;
+import java.time.OffsetDateTime;
+import java.time.temporal.ChronoUnit;
+
+@Getter
+public enum JobStatus {
+
+    SUBMITTED(true, false) {
+        @Override
+        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
+            return false;
+        }
+    },
+    IN_PROGRESS(true, false) {
+        @Override
+        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
+            return false;
+        }
+    },
+    FAILED(false, true) {
+        @Override
+        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
+            return true;
+        }
+    },
+    SUCCESSFUL(false, true) {
+        @Override
+        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
+            // This really should be an assert as if a job is successful, it should have a completion timestamp.
+            if (completedAt == null) {
+                return false;
+            }
+            Instant deleteBoundary = Instant.now().minus(ttlHours, ChronoUnit.HOURS);
+            return completedAt.toInstant().isBefore(deleteBoundary);
+        }
+    },
+    CANCELLED(false, true) {
+        @Override
+        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
+            return true;
+        }
+    };
+
+    private final boolean isCancellable;
+
+    private final boolean isFinished;
+
+    JobStatus(boolean isCancellable, boolean isFinished) {
+        this.isCancellable = isCancellable;
+        this.isFinished = isFinished;
+    }
+
+    public abstract boolean isExpired(OffsetDateTime completedAt, int ttlHours);
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/index.html b/job/jacoco/gov.cms.ab2d.job.model/index.html new file mode 100644 index 000000000..2bd059484 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/index.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.model

gov.cms.ab2d.job.model

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total85 of 56785%18 of 4055%241081076108809
JobOutput389270%9535%102911332201
Job2327592%71770%86313925101
JobStatus.new JobStatus() {...}15731%20%23451201
JobStatus35795%n/a141121401
JobStatus.new JobStatus() {...}777%n/a12121201
JobStatus.new JobStatus() {...}777%n/a12121201
JobStatus.new JobStatus() {...}777%n/a12121201
JobStartedBy21100%n/a01040101
JobStatus.new JobStatus() {...}9100%n/a02020201
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.model/index.source.html b/job/jacoco/gov.cms.ab2d.job.model/index.source.html new file mode 100644 index 000000000..bb96de963 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.model/index.source.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.model

gov.cms.ab2d.job.model

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total85 of 56785%18 of 4055%241081076108809
JobOutput.java389270%9535%102911332201
JobStatus.java249479%20%61582051406
Job.java2327592%71770%86313925101
JobStartedBy.java21100%n/a01040101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html new file mode 100644 index 000000000..d6a8a25eb --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html @@ -0,0 +1 @@ +InvalidJobAccessException

InvalidJobAccessException

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 4100%0 of 0n/a010201
InvalidJobAccessException(String)4100%n/a010201
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html new file mode 100644 index 000000000..dbb3ef1cc --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html @@ -0,0 +1,9 @@ +InvalidJobAccessException.java

InvalidJobAccessException.java

package gov.cms.ab2d.job.service;
+
+public class InvalidJobAccessException extends RuntimeException {
+
+    public InvalidJobAccessException(String msg) {
+        super(msg);
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html new file mode 100644 index 000000000..982d6963a --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html @@ -0,0 +1 @@ +InvalidJobStateTransition

InvalidJobStateTransition

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 4100%0 of 0n/a010201
InvalidJobStateTransition(String)4100%n/a010201
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html new file mode 100644 index 000000000..60df3ed4b --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html @@ -0,0 +1,9 @@ +InvalidJobStateTransition.java

InvalidJobStateTransition.java

package gov.cms.ab2d.job.service;
+
+public class InvalidJobStateTransition extends RuntimeException {
+
+    public InvalidJobStateTransition(String msg) {
+        super(msg);
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html new file mode 100644 index 000000000..1b03ef38a --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html @@ -0,0 +1 @@ +JobOutputMissingException

JobOutputMissingException

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 4100%0 of 0n/a010201
JobOutputMissingException(String)4100%n/a010201
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html new file mode 100644 index 000000000..8ea9069f8 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html @@ -0,0 +1,9 @@ +JobOutputMissingException.java

JobOutputMissingException.java

package gov.cms.ab2d.job.service;
+
+public class JobOutputMissingException extends RuntimeException {
+
+    public JobOutputMissingException(String msg) {
+        super(msg);
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html new file mode 100644 index 000000000..2f3c40fe5 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html @@ -0,0 +1 @@ +JobOutputServiceImpl

JobOutputServiceImpl

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total0 of 41100%0 of 0n/a050705
lambda$findByFilePathAndJob$0(String, Job)14100%n/a010301
findByFilePathAndJob(String, Job)11100%n/a010101
updateJobOutput(JobOutput)6100%n/a010101
JobOutputServiceImpl(JobOutputRepository)6100%n/a010101
static {...}4100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html new file mode 100644 index 000000000..8996e6a44 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html @@ -0,0 +1,32 @@ +JobOutputServiceImpl.java

JobOutputServiceImpl.java

package gov.cms.ab2d.job.service;
+
+import gov.cms.ab2d.job.model.Job;
+import gov.cms.ab2d.job.model.JobOutput;
+import gov.cms.ab2d.job.repository.JobOutputRepository;
+import gov.cms.ab2d.common.service.ResourceNotFoundException;
+import lombok.AllArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+@AllArgsConstructor
+@Slf4j
+@Service
+@Transactional
+public class JobOutputServiceImpl implements JobOutputService {
+
+    private final JobOutputRepository jobOutputRepository;
+
+    public JobOutput updateJobOutput(JobOutput jobOutput) {
+        return jobOutputRepository.save(jobOutput);
+    }
+
+    public JobOutput findByFilePathAndJob(String fileName, Job job) {
+        return jobOutputRepository.findByFilePathAndJob(fileName, job).orElseThrow(() -> {
+            log.error("JobOutput with fileName {} was not able to be found for job {}", fileName, job.getJobUuid());
+            throw new ResourceNotFoundException("JobOutput with fileName " + fileName + " was not able to be found" +
+                    " for job " + job.getJobUuid());
+        });
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html new file mode 100644 index 000000000..091b53670 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html @@ -0,0 +1 @@ +JobServiceImpl

JobServiceImpl

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total18 of 42095%1 of 2495%228394116
getActiveJobIds(String)140%n/a113311
poll(boolean, String, String, int)43790%1150%120601
getResourceForJob(String, String, String)96100%12100%0702301
createJob(StartJobDTO)92100%2100%0202001
cancelJob(String, String)40100%2100%020901
incrementDownload(File, String)27100%n/a010601
getAuthorizedJobByJobUuid(String, String)19100%2100%020501
getJobByJobUuid(String)19100%2100%020501
JobServiceImpl(JobRepository, JobOutputService, SQSEventClient, String)15100%n/a010601
clientHasNeverCompletedJob(String)15100%2100%020301
checkForExpiration(List, int)12100%n/a010401
activeJobs(String)8100%n/a010201
lambda$checkForExpiration$1(Job)8100%n/a010101
updateJob(Job)6100%n/a010101
lambda$checkForExpiration$0(int, Job)4100%n/a010101
static {...}4100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html new file mode 100644 index 000000000..846b6359a --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html @@ -0,0 +1,215 @@ +JobServiceImpl.java

JobServiceImpl.java

package gov.cms.ab2d.job.service;
+
+import gov.cms.ab2d.common.service.ResourceNotFoundException;
+import gov.cms.ab2d.eventclient.clients.SQSEventClient;
+import gov.cms.ab2d.eventclient.config.Ab2dEnvironment;
+import gov.cms.ab2d.eventclient.events.SlackEvents;
+import gov.cms.ab2d.job.dto.JobPollResult;
+import gov.cms.ab2d.job.dto.StaleJob;
+import gov.cms.ab2d.job.dto.StartJobDTO;
+import gov.cms.ab2d.job.model.Job;
+import gov.cms.ab2d.job.model.JobOutput;
+import gov.cms.ab2d.job.model.JobStatus;
+import gov.cms.ab2d.job.repository.JobRepository;
+import java.io.File;
+import java.net.MalformedURLException;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.time.OffsetDateTime;
+import java.util.Comparator;
+import java.util.List;
+import java.util.UUID;
+import java.util.stream.Collectors;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.core.io.Resource;
+import org.springframework.core.io.UrlResource;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+
+import static gov.cms.ab2d.common.util.Constants.MAX_DOWNLOADS;
+
+@Slf4j
+@Service
+@Transactional
+public class JobServiceImpl implements JobService {
+
+    private final JobRepository jobRepository;
+    private final JobOutputService jobOutputService;
+    private final SQSEventClient eventLogger;
+    private final String fileDownloadPath;
+
+    public static final String INITIAL_JOB_STATUS_MESSAGE = "0%";
+
+    public JobServiceImpl(JobRepository jobRepository, JobOutputService jobOutputService,
+                          SQSEventClient eventLogger,
+                          @Value("${efs.mount}") String fileDownloadPath) {
+        this.jobRepository = jobRepository;
+        this.jobOutputService = jobOutputService;
+        this.eventLogger = eventLogger;
+        this.fileDownloadPath = fileDownloadPath;
+    }
+
+    @Override
+    public Job createJob(StartJobDTO startJobDTO) {
+        Job job = new Job();
+        job.setResourceTypes(startJobDTO.getResourceTypes());
+        job.setJobUuid(UUID.randomUUID().toString());
+        job.setRequestUrl(startJobDTO.getUrl());
+        job.setStatusMessage(INITIAL_JOB_STATUS_MESSAGE);
+        job.setCreatedAt(OffsetDateTime.now());
+        job.setOutputFormat(startJobDTO.getOutputFormat());
+        job.setProgress(0);
+        job.setSince(startJobDTO.getSince());
+        job.setUntil(startJobDTO.getUntil());
+        job.setFhirVersion(startJobDTO.getVersion());
+        job.setOrganization(startJobDTO.getOrganization());
+
+        eventLogger.sendLogs(job.buildJobStatusChangeEvent(JobStatus.SUBMITTED, "Job Created"));
+
+        // Report client running first job in prod
+        if (clientHasNeverCompletedJob(startJobDTO.getContractNumber())) {
+            String firstJobMessage = String.format(SlackEvents.ORG_FIRST + " Organization %s is running their first job for contract %s",
+                    startJobDTO.getOrganization(), startJobDTO.getContractNumber());
+            eventLogger.alert(firstJobMessage, Ab2dEnvironment.PROD_LIST);
+        }
+        job.setContractNumber(startJobDTO.getContractNumber());
+        job.setStatus(JobStatus.SUBMITTED);
+        return jobRepository.save(job);
+    }
+
+    @Override
+    public void cancelJob(String jobUuid, String organization) {
+        Job job = getAuthorizedJobByJobUuid(jobUuid, organization);
+
+        log.info("Cancel job in database: {}", jobUuid);
+        if (!job.getStatus().isCancellable()) {
+            log.error("Job had a status of {} so it was not able to be cancelled", job.getStatus());
+            throw new InvalidJobStateTransition("Job has a status of " + job.getStatus() + ", so it cannot be cancelled");
+        }
+        eventLogger.sendLogs(job.buildJobStatusChangeEvent(JobStatus.CANCELLED, "Job Cancelled"));
+        jobRepository.cancelJobByJobUuid(jobUuid);
+        jobRepository.flush();
+    }
+
+    public Job getAuthorizedJobByJobUuid(String jobUuid, String organization) {
+        Job job = getJobByJobUuid(jobUuid);
+
+        if (!job.getOrganization().equals(organization)) {
+            log.error("Client attempted to download a file where they had a valid UUID, but was not logged in as the " +
+                    "client that created the job");
+            throw new InvalidJobAccessException("Unauthorized");
+        }
+
+        return job;
+    }
+
+    @Override
+    public Job getJobByJobUuid(String jobUuid) {
+        Job job = jobRepository.findByJobUuid(jobUuid);
+
+        if (job == null) {
+            log.error("Job {} was searched for and was not found", jobUuid);
+            throw new ResourceNotFoundException("No job with jobUuid " + jobUuid + " was found");
+        }
+
+        return job;
+    }
+
+    @Override
+    public Job updateJob(Job job) {
+        return jobRepository.save(job);
+    }
+
+    @Override
+    public Resource getResourceForJob(String jobUuid, String fileName, String organization) throws MalformedURLException {
+        Job job = getAuthorizedJobByJobUuid(jobUuid, organization);
+
+        // Make sure that there is a path that matches a job output for the job they are requesting
+        boolean jobOutputMatchesPath = false;
+        JobOutput foundJobOutput = null;
+        for (JobOutput jobOutput : job.getJobOutputs()) {
+            if (jobOutput.getFilePath().equals(fileName)) {
+                jobOutputMatchesPath = true;
+                foundJobOutput = jobOutput;
+                break;
+            }
+        }
+
+        if (!jobOutputMatchesPath) {
+            log.error("No Job Output with the file name {} exists in our records", fileName);
+            throw new ResourceNotFoundException("No Job Output with the file name " + fileName + " exists in our records");
+        }
+
+        Path file = Paths.get(fileDownloadPath, job.getJobUuid(), fileName);
+        Resource resource = new UrlResource(file.toUri());
+        if (foundJobOutput.getDownloaded() >= MAX_DOWNLOADS) {
+            throw new JobOutputMissingException("The file has already been download the maximum number of allowed times.");
+        }
+        if (!resource.exists()) {
+            String errorMsg;
+            if (job.getExpiresAt().isBefore(OffsetDateTime.now())) {
+                errorMsg = "The file is not present as it has expired. Please resubmit the job.";
+            } else {
+                errorMsg = "The file is not present as there was an error. Please resubmit the job.";
+            }
+            log.error(errorMsg);
+            throw new JobOutputMissingException(errorMsg);
+        }
+
+        return resource;
+    }
+
+
+    public void incrementDownload(File file, String jobUuid) {
+        Job job = jobRepository.findByJobUuid(jobUuid);
+        JobOutput jobOutput = jobOutputService.findByFilePathAndJob(file.getName(), job);
+        // Incrementing downloaded in this way is likely not concurrency safe.
+        // If multiple users (aka threads) download the same file at the same time the count won't record every download
+        // This would result in the file being downloaded more than the allowed number of time.
+        jobOutput.setDownloaded(jobOutput.getDownloaded() + 1);
+        jobOutput.setLastDownloadAt(OffsetDateTime.now());
+        jobOutputService.updateJobOutput(jobOutput);
+    }
+
+    @Override
+    public int activeJobs(String organization) {
+        List<Job> jobs = jobRepository.findActiveJobsByClient(organization);
+        return jobs.size();
+    }
+
+    @Override
+    public List<String> getActiveJobIds(String organization) {
+        //Sorting with stream so we don't affect existing code that uses findActiveJobsByClient.
+        //Number of jobs returned should be small
+        return jobRepository.findActiveJobsByClient(organization).stream()
+                .sorted(Comparator.comparing(Job::getCreatedAt))
+                .map(Job::getJobUuid).collect(Collectors.toList());
+    }
+
+    @Override
+    public JobPollResult poll(boolean admin, String jobUuid, String organization, int delaySeconds) {
+        Job job = (admin) ? getJobByJobUuid(jobUuid) : getAuthorizedJobByJobUuid(jobUuid, organization);
+        job.pollAndUpdateTime(delaySeconds);
+        jobRepository.save(job);
+        String transactionTime = job.getFhirVersion().getFhirTime(job.getCreatedAt());
+        return new JobPollResult(job.getRequestUrl(), job.getStatus(), job.getProgress(), transactionTime,
+                job.getExpiresAt(), job.getJobOutputs());
+    }
+
+    @Override
+    public List<StaleJob> checkForExpiration(List<String> jobUuids, int ttlHours) {
+        return jobRepository.findByJobUuidIn(jobUuids).stream()
+                .filter(job -> job.isExpired(ttlHours))
+                .map(job -> new StaleJob(job.getJobUuid(), job.getOrganization()))
+                .toList();
+    }
+
+    private boolean clientHasNeverCompletedJob(String contractNumber) {
+        int completedJobs = jobRepository.countJobByContractNumberAndStatus(contractNumber,
+                List.of(JobStatus.SUBMITTED, JobStatus.IN_PROGRESS, JobStatus.SUCCESSFUL));
+        return completedJobs == 0;
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/index.html b/job/jacoco/gov.cms.ab2d.job.service/index.html new file mode 100644 index 000000000..78c91972a --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/index.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.service

gov.cms.ab2d.job.service

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total18 of 47396%1 of 2495%236310712405
JobServiceImpl1840295%12395%22839411601
JobOutputServiceImpl41100%n/a05070501
InvalidJobAccessException4100%n/a01020101
JobOutputMissingException4100%n/a01020101
InvalidJobStateTransition4100%n/a01020101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.service/index.source.html b/job/jacoco/gov.cms.ab2d.job.service/index.source.html new file mode 100644 index 000000000..3564a36e7 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.service/index.source.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.service

gov.cms.ab2d.job.service

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total18 of 47396%1 of 2495%236310712405
JobServiceImpl.java1840295%12395%22839411601
JobOutputServiceImpl.java41100%n/a05070501
InvalidJobStateTransition.java4100%n/a01020101
InvalidJobAccessException.java4100%n/a01020101
JobOutputMissingException.java4100%n/a01020101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html new file mode 100644 index 000000000..9ed01615c --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html @@ -0,0 +1 @@ +JobUtil

JobUtil

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethods
Total3 of 8996%3 of 2889%41911515
JobUtil()30%n/a111111
isJobDone(Job, int)63100%22090%21201301
lambda$isJobDone$0(JobOutput)11100%1375%130101
lambda$isJobDone$1(int, JobOutput)8100%2100%020101
static {...}4100%n/a010101
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html new file mode 100644 index 000000000..d22d2ee06 --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html @@ -0,0 +1,51 @@ +JobUtil.java

JobUtil.java

package gov.cms.ab2d.job.util;
+
+import gov.cms.ab2d.job.model.Job;
+import gov.cms.ab2d.job.model.JobOutput;
+import gov.cms.ab2d.job.model.JobStatus;
+import lombok.extern.slf4j.Slf4j;
+
+import java.time.OffsetDateTime;
+import java.util.List;
+
+@Slf4j
+public class JobUtil {
+
+    /**
+     * A job is done if the status is either CANCELLED or FAILED
+     * If a job status is SUCCESSFUL, it is done if all files have been downloaded or they have expired
+     *
+     * @param job - job to check
+     * @return - true/false
+     */
+    public static boolean isJobDone(Job job, int maxDownloads) {
+        // Job is still in progress
+        if (job == null || job.getStatus() == null || job.getStatus() == JobStatus.IN_PROGRESS || job.getStatus() == JobStatus.SUBMITTED) {
+            return false;
+        }
+
+        // Job has finished but was not successful
+        if (job.getStatus() == JobStatus.CANCELLED || job.getStatus() == JobStatus.FAILED) {
+            return true;
+        }
+
+        // Job was successful - now did the client download the files or is it expired
+
+        // Job has expired, it's done.
+        if (job.getExpiresAt() != null && job.getExpiresAt().isBefore(OffsetDateTime.now())) {
+            return true;
+        }
+
+        // If it hasn't expired, look to see if all files have been downloaded, if so, it's done
+        List<JobOutput> jobOutputs = job.getJobOutputs();
+        if (jobOutputs == null || jobOutputs.isEmpty()) {
+            return false;
+        }
+        JobOutput aRemaining = jobOutputs.stream()
+                .filter(c -> c.getError() == null || !c.getError())
+                .filter(c -> c.getDownloaded() < maxDownloads).findAny().orElse(null);
+
+        return aRemaining == null;
+    }
+}
+
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.util/index.html b/job/jacoco/gov.cms.ab2d.job.util/index.html new file mode 100644 index 000000000..34b97a9fd --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.util/index.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.util

gov.cms.ab2d.job.util

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total3 of 8996%3 of 2889%4191151501
JobUtil38696%32589%4191151501
\ No newline at end of file diff --git a/job/jacoco/gov.cms.ab2d.job.util/index.source.html b/job/jacoco/gov.cms.ab2d.job.util/index.source.html new file mode 100644 index 000000000..43c3744ae --- /dev/null +++ b/job/jacoco/gov.cms.ab2d.job.util/index.source.html @@ -0,0 +1 @@ +gov.cms.ab2d.job.util

gov.cms.ab2d.job.util

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total3 of 8996%3 of 2889%4191151501
JobUtil.java38696%32589%4191151501
\ No newline at end of file diff --git a/job/jacoco/index.html b/job/jacoco/index.html new file mode 100644 index 000000000..899b978bc --- /dev/null +++ b/job/jacoco/index.html @@ -0,0 +1 @@ +job

job

ElementMissed InstructionsCov.Missed BranchesCov.MissedCxtyMissedLinesMissedMethodsMissedClasses
Total749 of 1,85659%160 of 23030%1232682321936153018
gov.cms.ab2d.job.dto6438411%1380%93105921243603
gov.cms.ab2d.job.model8548285%182255%241081076108809
gov.cms.ab2d.job.service1845596%2395%236310712405
gov.cms.ab2d.job.util8696%32589%4191151501
\ No newline at end of file diff --git a/job/jacoco/jacoco-resources/branchfc.gif b/job/jacoco/jacoco-resources/branchfc.gif new file mode 100644 index 0000000000000000000000000000000000000000..989b46d30469b56b014758f846ee6c5abfda16aa GIT binary patch literal 91 zcmZ?wbhEHb6=b<*h$V|V6X-NwhSNb literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/branchnc.gif b/job/jacoco/jacoco-resources/branchnc.gif new file mode 100644 index 0000000000000000000000000000000000000000..1933e07c376bb71bdd9aac91cf858da3fcdb0f1c GIT binary patch literal 91 zcmZ?wbhEHb6=b<*h$V|V6X-N9U38B literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/branchpc.gif b/job/jacoco/jacoco-resources/branchpc.gif new file mode 100644 index 0000000000000000000000000000000000000000..cbf711b7030929b733f22f7a0cf3dbf61fe7868f GIT binary patch literal 91 zcmZ?wbhEHbm$mi>nCYN#As;!%lJz1A{dHmlPuc literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/bundle.gif b/job/jacoco/jacoco-resources/bundle.gif new file mode 100644 index 0000000000000000000000000000000000000000..fca9c53e629a7a5c07186ac1e2a1e37d8d6e88f4 GIT binary patch literal 709 zcmZ?wbhEHb6krfwxXQrrpW*-7BK;o8CDEUD?$vun5^UNelT%D!ODhRsX(Ohwq+z^!{nkw1lu( zDPc2HV&`P7KEHX-jYA>R6T@ewM9fTyo0E0x)!k_2wz@P-Sk{|^LE{K>+|z);Vi!vF-J zIALI4-caAv+|t_C-oY&>$uA|y-ND80=rPrik*keM);A(7JS@bMXJ#`uzjsjN>eYc> zj1!vJoq|_~`Ugb%`8WwRvs$=Bx;h_qcXM-KZDthLjMNep5fPP;Q{vk%FCD3^prRsd zAfR@-Nl4k$GSW~(G16XNhoM=9$H>NPjk%o(&&DPp6ODz*?)|b>X&fF28jY>Ox-nZU Y5*r^bWMyL$kZ52~Skzz7#K>R`0G8r7i~s-t literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/down.gif b/job/jacoco/jacoco-resources/down.gif new file mode 100644 index 0000000000000000000000000000000000000000..440a14db74e76c2b6e854eacac1c44414b166271 GIT binary patch literal 67 zcmZ?wbhEHbZ%p}jXB Ub$^Lu-Ncq(ygK&ScM%3_0Po}%Qvd(} literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/greenbar.gif b/job/jacoco/jacoco-resources/greenbar.gif new file mode 100644 index 0000000000000000000000000000000000000000..0ba65672530ee09f086821a26156836d0c91bd74 GIT binary patch literal 91 zcmZ?wbhEHbWMtrCc+ADXzmZ>do2<@m9j_x^v8Q5duh#b5>RIq$!Lmoo);w9mu$BQ0 eDgI<(1nOeYVE_V<84N5O20cYWMlKB;4AuaIXBwOU literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/group.gif b/job/jacoco/jacoco-resources/group.gif new file mode 100644 index 0000000000000000000000000000000000000000..a4ea580d278fb727e4ae692838877fa63c4becf9 GIT binary patch literal 351 zcmZ?wbhEHb6krfwxXQpVwXtJrV`pb|Z&Bgo_>{Q`Df1G5Wa`}H^qKLgbHn221;#86 zie2Oyy23SVg;&(l)`=%9{nuIstg#PSrQx<&&vS#m*G7G>4W@o;CvAN*Y1^AgTVGGw z_ImEoPjiobns@ZmyknnMUi-Q7>W`Jzer$aB_t(pL-|kQQ|MAfO*PGv5?Ee3B$^ToO z|A8VGOaEW3eSEO?=BC06Ybq|Tt-P?N@;?|b;0205Sr{1@Oc``Qsz82XV5>PWtH47? zs^4Q~P@BxTjDV;&5*!R(s==>VnJe}-&SEIintfiq!@CwnVRxXubL!4|)qjO}gg>klxZ?TGXw~#-V zU_Y2&N}FX?r*L1YbYiM-aj|xBv2}#Mgo3?-guaA=wSS1Yfrz+)iMWB7#*ml2h^x<; ztIwFU(w+bR{{R30A^8LW0015UEC2ui01yBW000F(peK%GX`X1Rt}L1aL$Vf5mpMgx vG+WO#2NYmJDM}^)l;8n@L?90V%CN9pFcyU&MPO(u48jTlL$uClRtNw)MiWcq literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/package.gif b/job/jacoco/jacoco-resources/package.gif new file mode 100644 index 0000000000000000000000000000000000000000..131c28da405493661e3253ef79a68bd273039295 GIT binary patch literal 227 zcmZ?wbhEHb6krfwIKsg2^W*Nf7neOfxp04z;n8NJ+xzDotkS){bH@Hst%K#-*LO_c zo~yCDQ0v_4?v)A3lSAd#C95utQCbkGxF}NT_=2WF8}WGs5taT9|NsAIzy=h5vM@3* zNHFMtBtdpEuqG&|^`&Ia(}-MpBVo@mW@+b{B25<}cFdc?!Kkoc14n0vkh1`XOwU>7 z#al8o_@;D=?hdfkdC)D9Q@O@%Lfqp;ZBt~9C*29`GMF2XzQp8akWQVjDvMC75PzEx Mi%z;upCW@b03m@=3jhEB literal 0 HcmV?d00001 diff --git a/job/jacoco/jacoco-resources/prettify.css b/job/jacoco/jacoco-resources/prettify.css new file mode 100644 index 000000000..be5166e0f --- /dev/null +++ b/job/jacoco/jacoco-resources/prettify.css @@ -0,0 +1,13 @@ +/* Pretty printing styles. Used with prettify.js. */ + +.str { color: #2A00FF; } +.kwd { color: #7F0055; font-weight:bold; } +.com { color: #3F5FBF; } +.typ { color: #606; } +.lit { color: #066; } +.pun { color: #660; } +.pln { color: #000; } +.tag { color: #008; } +.atn { color: #606; } +.atv { color: #080; } +.dec { color: #606; } diff --git a/job/jacoco/jacoco-resources/prettify.js b/job/jacoco/jacoco-resources/prettify.js new file mode 100644 index 000000000..b2766fe0a --- /dev/null +++ b/job/jacoco/jacoco-resources/prettify.js @@ -0,0 +1,1510 @@ +// Copyright (C) 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +/** + * @fileoverview + * some functions for browser-side pretty printing of code contained in html. + *

+ * + * For a fairly comprehensive set of languages see the + * README + * file that came with this source. At a minimum, the lexer should work on a + * number of languages including C and friends, Java, Python, Bash, SQL, HTML, + * XML, CSS, Javascript, and Makefiles. It works passably on Ruby, PHP and Awk + * and a subset of Perl, but, because of commenting conventions, doesn't work on + * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class. + *

+ * Usage:

    + *
  1. include this source file in an html page via + * {@code } + *
  2. define style rules. See the example page for examples. + *
  3. mark the {@code
    } and {@code } tags in your source with
    + *    {@code class=prettyprint.}
    + *    You can also use the (html deprecated) {@code } tag, but the pretty
    + *    printer needs to do more substantial DOM manipulations to support that, so
    + *    some css styles may not be preserved.
    + * </ol>
    + * That's it.  I wanted to keep the API as simple as possible, so there's no
    + * need to specify which language the code is in, but if you wish, you can add
    + * another class to the {@code <pre>} or {@code <code>} element to specify the
    + * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
    + * starts with "lang-" followed by a file extension, specifies the file type.
    + * See the "lang-*.js" files in this directory for code that implements
    + * per-language file handlers.
    + * <p>
    + * Change log:<br>
    + * cbeust, 2006/08/22
    + * <blockquote>
    + *   Java annotations (start with "@") are now captured as literals ("lit")
    + * </blockquote>
    + * @requires console
    + */
    +
    +// JSLint declarations
    +/*global console, document, navigator, setTimeout, window */
    +
    +/**
    + * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
    + * UI events.
    + * If set to {@code false}, {@code prettyPrint()} is synchronous.
    + */
    +window['PR_SHOULD_USE_CONTINUATION'] = true;
    +
    +/** the number of characters between tab columns */
    +window['PR_TAB_WIDTH'] = 8;
    +
    +/** Walks the DOM returning a properly escaped version of innerHTML.
    +  * @param {Node} node
    +  * @param {Array.<string>} out output buffer that receives chunks of HTML.
    +  */
    +window['PR_normalizedHtml']
    +
    +/** Contains functions for creating and registering new language handlers.
    +  * @type {Object}
    +  */
    +  = window['PR']
    +
    +/** Pretty print a chunk of code.
    +  *
    +  * @param {string} sourceCodeHtml code as html
    +  * @return {string} code as html, but prettier
    +  */
    +  = window['prettyPrintOne']
    +/** Find all the {@code <pre>} and {@code <code>} tags in the DOM with
    +  * {@code class=prettyprint} and prettify them.
    +  * @param {Function?} opt_whenDone if specified, called when the last entry
    +  *     has been finished.
    +  */
    +  = window['prettyPrint'] = void 0;
    +
    +/** browser detection. @extern @returns false if not IE, otherwise the major version. */
    +window['_pr_isIE6'] = function () {
    +  var ieVersion = navigator && navigator.userAgent &&
    +      navigator.userAgent.match(/\bMSIE ([678])\./);
    +  ieVersion = ieVersion ? +ieVersion[1] : false;
    +  window['_pr_isIE6'] = function () { return ieVersion; };
    +  return ieVersion;
    +};
    +
    +
    +(function () {
    +  // Keyword lists for various languages.
    +  var FLOW_CONTROL_KEYWORDS =
    +      "break continue do else for if return while ";
    +  var C_KEYWORDS = FLOW_CONTROL_KEYWORDS + "auto case char const default " +
    +      "double enum extern float goto int long register short signed sizeof " +
    +      "static struct switch typedef union unsigned void volatile ";
    +  var COMMON_KEYWORDS = C_KEYWORDS + "catch class delete false import " +
    +      "new operator private protected public this throw true try typeof ";
    +  var CPP_KEYWORDS = COMMON_KEYWORDS + "alignof align_union asm axiom bool " +
    +      "concept concept_map const_cast constexpr decltype " +
    +      "dynamic_cast explicit export friend inline late_check " +
    +      "mutable namespace nullptr reinterpret_cast static_assert static_cast " +
    +      "template typeid typename using virtual wchar_t where ";
    +  var JAVA_KEYWORDS = COMMON_KEYWORDS +
    +      "abstract boolean byte extends final finally implements import " +
    +      "instanceof null native package strictfp super synchronized throws " +
    +      "transient ";
    +  var CSHARP_KEYWORDS = JAVA_KEYWORDS +
    +      "as base by checked decimal delegate descending event " +
    +      "fixed foreach from group implicit in interface internal into is lock " +
    +      "object out override orderby params partial readonly ref sbyte sealed " +
    +      "stackalloc string select uint ulong unchecked unsafe ushort var ";
    +  var JSCRIPT_KEYWORDS = COMMON_KEYWORDS +
    +      "debugger eval export function get null set undefined var with " +
    +      "Infinity NaN ";
    +  var PERL_KEYWORDS = "caller delete die do dump elsif eval exit foreach for " +
    +      "goto if import last local my next no our print package redo require " +
    +      "sub undef unless until use wantarray while BEGIN END ";
    +  var PYTHON_KEYWORDS = FLOW_CONTROL_KEYWORDS + "and as assert class def del " +
    +      "elif except exec finally from global import in is lambda " +
    +      "nonlocal not or pass print raise try with yield " +
    +      "False True None ";
    +  var RUBY_KEYWORDS = FLOW_CONTROL_KEYWORDS + "alias and begin case class def" +
    +      " defined elsif end ensure false in module next nil not or redo rescue " +
    +      "retry self super then true undef unless until when yield BEGIN END ";
    +  var SH_KEYWORDS = FLOW_CONTROL_KEYWORDS + "case done elif esac eval fi " +
    +      "function in local set then until ";
    +  var ALL_KEYWORDS = (
    +      CPP_KEYWORDS + CSHARP_KEYWORDS + JSCRIPT_KEYWORDS + PERL_KEYWORDS +
    +      PYTHON_KEYWORDS + RUBY_KEYWORDS + SH_KEYWORDS);
    +
    +  // token style names.  correspond to css classes
    +  /** token style for a string literal */
    +  var PR_STRING = 'str';
    +  /** token style for a keyword */
    +  var PR_KEYWORD = 'kwd';
    +  /** token style for a comment */
    +  var PR_COMMENT = 'com';
    +  /** token style for a type */
    +  var PR_TYPE = 'typ';
    +  /** token style for a literal value.  e.g. 1, null, true. */
    +  var PR_LITERAL = 'lit';
    +  /** token style for a punctuation string. */
    +  var PR_PUNCTUATION = 'pun';
    +  /** token style for a punctuation string. */
    +  var PR_PLAIN = 'pln';
    +
    +  /** token style for an sgml tag. */
    +  var PR_TAG = 'tag';
    +  /** token style for a markup declaration such as a DOCTYPE. */
    +  var PR_DECLARATION = 'dec';
    +  /** token style for embedded source. */
    +  var PR_SOURCE = 'src';
    +  /** token style for an sgml attribute name. */
    +  var PR_ATTRIB_NAME = 'atn';
    +  /** token style for an sgml attribute value. */
    +  var PR_ATTRIB_VALUE = 'atv';
    +
    +  /**
    +   * A class that indicates a section of markup that is not code, e.g. to allow
    +   * embedding of line numbers within code listings.
    +   */
    +  var PR_NOCODE = 'nocode';
    +
    +  /** A set of tokens that can precede a regular expression literal in
    +    * javascript.
    +    * http://www.mozilla.org/js/language/js20/rationale/syntax.html has the full
    +    * list, but I've removed ones that might be problematic when seen in
    +    * languages that don't support regular expression literals.
    +    *
    +    * <p>Specifically, I've removed any keywords that can't precede a regexp
    +    * literal in a syntactically legal javascript program, and I've removed the
    +    * "in" keyword since it's not a keyword in many languages, and might be used
    +    * as a count of inches.
    +    *
    +    * <p>The link a above does not accurately describe EcmaScript rules since
    +    * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
    +    * very well in practice.
    +    *
    +    * @private
    +    */
    +  var REGEXP_PRECEDER_PATTERN = function () {
    +      var preceders = [
    +          "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=",
    +          "&=", "(", "*", "*=", /* "+", */ "+=", ",", /* "-", */ "-=",
    +          "->", /*".", "..", "...", handled below */ "/", "/=", ":", "::", ";",
    +          "<", "<<", "<<=", "<=", "=", "==", "===", ">",
    +          ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[",
    +          "^", "^=", "^^", "^^=", "{", "|", "|=", "||",
    +          "||=", "~" /* handles =~ and !~ */,
    +          "break", "case", "continue", "delete",
    +          "do", "else", "finally", "instanceof",
    +          "return", "throw", "try", "typeof"
    +          ];
    +      var pattern = '(?:^^|[+-]';
    +      for (var i = 0; i < preceders.length; ++i) {
    +        pattern += '|' + preceders[i].replace(/([^=<>:&a-z])/g, '\\$1');
    +      }
    +      pattern += ')\\s*';  // matches at end, and matches empty string
    +      return pattern;
    +      // CAVEAT: this does not properly handle the case where a regular
    +      // expression immediately follows another since a regular expression may
    +      // have flags for case-sensitivity and the like.  Having regexp tokens
    +      // adjacent is not valid in any language I'm aware of, so I'm punting.
    +      // TODO: maybe style special characters inside a regexp as punctuation.
    +    }();
    +
    +  // Define regexps here so that the interpreter doesn't have to create an
    +  // object each time the function containing them is called.
    +  // The language spec requires a new object created even if you don't access
    +  // the $1 members.
    +  var pr_amp = /&/g;
    +  var pr_lt = /</g;
    +  var pr_gt = />/g;
    +  var pr_quot = /\"/g;
    +  /** like textToHtml but escapes double quotes to be attribute safe. */
    +  function attribToHtml(str) {
    +    return str.replace(pr_amp, '&amp;')
    +        .replace(pr_lt, '&lt;')
    +        .replace(pr_gt, '&gt;')
    +        .replace(pr_quot, '&quot;');
    +  }
    +
    +  /** escapest html special characters to html. */
    +  function textToHtml(str) {
    +    return str.replace(pr_amp, '&amp;')
    +        .replace(pr_lt, '&lt;')
    +        .replace(pr_gt, '&gt;');
    +  }
    +
    +
    +  var pr_ltEnt = /&lt;/g;
    +  var pr_gtEnt = /&gt;/g;
    +  var pr_aposEnt = /&apos;/g;
    +  var pr_quotEnt = /&quot;/g;
    +  var pr_ampEnt = /&amp;/g;
    +  var pr_nbspEnt = /&nbsp;/g;
    +  /** unescapes html to plain text. */
    +  function htmlToText(html) {
    +    var pos = html.indexOf('&');
    +    if (pos < 0) { return html; }
    +    // Handle numeric entities specially.  We can't use functional substitution
    +    // since that doesn't work in older versions of Safari.
    +    // These should be rare since most browsers convert them to normal chars.
    +    for (--pos; (pos = html.indexOf('&#', pos + 1)) >= 0;) {
    +      var end = html.indexOf(';', pos);
    +      if (end >= 0) {
    +        var num = html.substring(pos + 3, end);
    +        var radix = 10;
    +        if (num && num.charAt(0) === 'x') {
    +          num = num.substring(1);
    +          radix = 16;
    +        }
    +        var codePoint = parseInt(num, radix);
    +        if (!isNaN(codePoint)) {
    +          html = (html.substring(0, pos) + String.fromCharCode(codePoint) +
    +                  html.substring(end + 1));
    +        }
    +      }
    +    }
    +
    +    return html.replace(pr_ltEnt, '<')
    +        .replace(pr_gtEnt, '>')
    +        .replace(pr_aposEnt, "'")
    +        .replace(pr_quotEnt, '"')
    +        .replace(pr_nbspEnt, ' ')
    +        .replace(pr_ampEnt, '&');
    +  }
    +
    +  /** is the given node's innerHTML normally unescaped? */
    +  function isRawContent(node) {
    +    return 'XMP' === node.tagName;
    +  }
    +
    +  var newlineRe = /[\r\n]/g;
    +  /**
    +   * Are newlines and adjacent spaces significant in the given node's innerHTML?
    +   */
    +  function isPreformatted(node, content) {
    +    // PRE means preformatted, and is a very common case, so don't create
    +    // unnecessary computed style objects.
    +    if ('PRE' === node.tagName) { return true; }
    +    if (!newlineRe.test(content)) { return true; }  // Don't care
    +    var whitespace = '';
    +    // For disconnected nodes, IE has no currentStyle.
    +    if (node.currentStyle) {
    +      whitespace = node.currentStyle.whiteSpace;
    +    } else if (window.getComputedStyle) {
    +      // Firefox makes a best guess if node is disconnected whereas Safari
    +      // returns the empty string.
    +      whitespace = window.getComputedStyle(node, null).whiteSpace;
    +    }
    +    return !whitespace || whitespace === 'pre';
    +  }
    +
    +  function normalizedHtml(node, out, opt_sortAttrs) {
    +    switch (node.nodeType) {
    +      case 1:  // an element
    +        var name = node.tagName.toLowerCase();
    +
    +        out.push('<', name);
    +        var attrs = node.attributes;
    +        var n = attrs.length;
    +        if (n) {
    +          if (opt_sortAttrs) {
    +            var sortedAttrs = [];
    +            for (var i = n; --i >= 0;) { sortedAttrs[i] = attrs[i]; }
    +            sortedAttrs.sort(function (a, b) {
    +                return (a.name < b.name) ? -1 : a.name === b.name ? 0 : 1;
    +              });
    +            attrs = sortedAttrs;
    +          }
    +          for (var i = 0; i < n; ++i) {
    +            var attr = attrs[i];
    +            if (!attr.specified) { continue; }
    +            out.push(' ', attr.name.toLowerCase(),
    +                     '="', attribToHtml(attr.value), '"');
    +          }
    +        }
    +        out.push('>');
    +        for (var child = node.firstChild; child; child = child.nextSibling) {
    +          normalizedHtml(child, out, opt_sortAttrs);
    +        }
    +        if (node.firstChild || !/^(?:br|link|img)$/.test(name)) {
    +          out.push('<\/', name, '>');
    +        }
    +        break;
    +      case 3: case 4: // text
    +        out.push(textToHtml(node.nodeValue));
    +        break;
    +    }
    +  }
    +
    +  /**
    +   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
    +   * matches the union o the sets o strings matched d by the input RegExp.
    +   * Since it matches globally, if the input strings have a start-of-input
    +   * anchor (/^.../), it is ignored for the purposes of unioning.
    +   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
    +   * @return {RegExp} a global regex.
    +   */
    +  function combinePrefixPatterns(regexs) {
    +    var capturedGroupIndex = 0;
    +
    +    var needToFoldCase = false;
    +    var ignoreCase = false;
    +    for (var i = 0, n = regexs.length; i < n; ++i) {
    +      var regex = regexs[i];
    +      if (regex.ignoreCase) {
    +        ignoreCase = true;
    +      } else if (/[a-z]/i.test(regex.source.replace(
    +                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
    +        needToFoldCase = true;
    +        ignoreCase = false;
    +        break;
    +      }
    +    }
    +
    +    function decodeEscape(charsetPart) {
    +      if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }
    +      switch (charsetPart.charAt(1)) {
    +        case 'b': return 8;
    +        case 't': return 9;
    +        case 'n': return 0xa;
    +        case 'v': return 0xb;
    +        case 'f': return 0xc;
    +        case 'r': return 0xd;
    +        case 'u': case 'x':
    +          return parseInt(charsetPart.substring(2), 16)
    +              || charsetPart.charCodeAt(1);
    +        case '0': case '1': case '2': case '3': case '4':
    +        case '5': case '6': case '7':
    +          return parseInt(charsetPart.substring(1), 8);
    +        default: return charsetPart.charCodeAt(1);
    +      }
    +    }
    +
    +    function encodeEscape(charCode) {
    +      if (charCode < 0x20) {
    +        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
    +      }
    +      var ch = String.fromCharCode(charCode);
    +      if (ch === '\\' || ch === '-' || ch === '[' || ch === ']') {
    +        ch = '\\' + ch;
    +      }
    +      return ch;
    +    }
    +
    +    function caseFoldCharset(charSet) {
    +      var charsetParts = charSet.substring(1, charSet.length - 1).match(
    +          new RegExp(
    +              '\\\\u[0-9A-Fa-f]{4}'
    +              + '|\\\\x[0-9A-Fa-f]{2}'
    +              + '|\\\\[0-3][0-7]{0,2}'
    +              + '|\\\\[0-7]{1,2}'
    +              + '|\\\\[\\s\\S]'
    +              + '|-'
    +              + '|[^-\\\\]',
    +              'g'));
    +      var groups = [];
    +      var ranges = [];
    +      var inverse = charsetParts[0] === '^';
    +      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
    +        var p = charsetParts[i];
    +        switch (p) {
    +          case '\\B': case '\\b':
    +          case '\\D': case '\\d':
    +          case '\\S': case '\\s':
    +          case '\\W': case '\\w':
    +            groups.push(p);
    +            continue;
    +        }
    +        var start = decodeEscape(p);
    +        var end;
    +        if (i + 2 < n && '-' === charsetParts[i + 1]) {
    +          end = decodeEscape(charsetParts[i + 2]);
    +          i += 2;
    +        } else {
    +          end = start;
    +        }
    +        ranges.push([start, end]);
    +        // If the range might intersect letters, then expand it.
    +        if (!(end < 65 || start > 122)) {
    +          if (!(end < 65 || start > 90)) {
    +            ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
    +          }
    +          if (!(end < 97 || start > 122)) {
    +            ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
    +          }
    +        }
    +      }
    +
    +      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
    +      // -> [[1, 12], [14, 14], [16, 17]]
    +      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
    +      var consolidatedRanges = [];
    +      var lastRange = [NaN, NaN];
    +      for (var i = 0; i < ranges.length; ++i) {
    +        var range = ranges[i];
    +        if (range[0] <= lastRange[1] + 1) {
    +          lastRange[1] = Math.max(lastRange[1], range[1]);
    +        } else {
    +          consolidatedRanges.push(lastRange = range);
    +        }
    +      }
    +
    +      var out = ['['];
    +      if (inverse) { out.push('^'); }
    +      out.push.apply(out, groups);
    +      for (var i = 0; i < consolidatedRanges.length; ++i) {
    +        var range = consolidatedRanges[i];
    +        out.push(encodeEscape(range[0]));
    +        if (range[1] > range[0]) {
    +          if (range[1] + 1 > range[0]) { out.push('-'); }
    +          out.push(encodeEscape(range[1]));
    +        }
    +      }
    +      out.push(']');
    +      return out.join('');
    +    }
    +
    +    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
    +      // Split into character sets, escape sequences, punctuation strings
    +      // like ('(', '(?:', ')', '^'), and runs of characters that do not
    +      // include any of the above.
    +      var parts = regex.source.match(
    +          new RegExp(
    +              '(?:'
    +              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
    +              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
    +              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
    +              + '|\\\\[0-9]+'  // a back-reference or octal escape
    +              + '|\\\\[^ux0-9]'  // other escape sequence
    +              + '|\\(\\?[:!=]'  // start of a non-capturing group
    +              + '|[\\(\\)\\^]'  // start/emd of a group, or line start
    +              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
    +              + ')',
    +              'g'));
    +      var n = parts.length;
    +
    +      // Maps captured group numbers to the number they will occupy in
    +      // the output or to -1 if that has not been determined, or to
    +      // undefined if they need not be capturing in the output.
    +      var capturedGroups = [];
    +
    +      // Walk over and identify back references to build the capturedGroups
    +      // mapping.
    +      for (var i = 0, groupIndex = 0; i < n; ++i) {
    +        var p = parts[i];
    +        if (p === '(') {
    +          // groups are 1-indexed, so max group index is count of '('
    +          ++groupIndex;
    +        } else if ('\\' === p.charAt(0)) {
    +          var decimalValue = +p.substring(1);
    +          if (decimalValue && decimalValue <= groupIndex) {
    +            capturedGroups[decimalValue] = -1;
    +          }
    +        }
    +      }
    +
    +      // Renumber groups and reduce capturing groups to non-capturing groups
    +      // where possible.
    +      for (var i = 1; i < capturedGroups.length; ++i) {
    +        if (-1 === capturedGroups[i]) {
    +          capturedGroups[i] = ++capturedGroupIndex;
    +        }
    +      }
    +      for (var i = 0, groupIndex = 0; i < n; ++i) {
    +        var p = parts[i];
    +        if (p === '(') {
    +          ++groupIndex;
    +          if (capturedGroups[groupIndex] === undefined) {
    +            parts[i] = '(?:';
    +          }
    +        } else if ('\\' === p.charAt(0)) {
    +          var decimalValue = +p.substring(1);
    +          if (decimalValue && decimalValue <= groupIndex) {
    +            parts[i] = '\\' + capturedGroups[groupIndex];
    +          }
    +        }
    +      }
    +
    +      // Remove any prefix anchors so that the output will match anywhere.
    +      // ^^ really does mean an anchored match though.
    +      for (var i = 0, groupIndex = 0; i < n; ++i) {
    +        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
    +      }
    +
    +      // Expand letters to groupts to handle mixing of case-sensitive and
    +      // case-insensitive patterns if necessary.
    +      if (regex.ignoreCase && needToFoldCase) {
    +        for (var i = 0; i < n; ++i) {
    +          var p = parts[i];
    +          var ch0 = p.charAt(0);
    +          if (p.length >= 2 && ch0 === '[') {
    +            parts[i] = caseFoldCharset(p);
    +          } else if (ch0 !== '\\') {
    +            // TODO: handle letters in numeric escapes.
    +            parts[i] = p.replace(
    +                /[a-zA-Z]/g,
    +                function (ch) {
    +                  var cc = ch.charCodeAt(0);
    +                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
    +                });
    +          }
    +        }
    +      }
    +
    +      return parts.join('');
    +    }
    +
    +    var rewritten = [];
    +    for (var i = 0, n = regexs.length; i < n; ++i) {
    +      var regex = regexs[i];
    +      if (regex.global || regex.multiline) { throw new Error('' + regex); }
    +      rewritten.push(
    +          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
    +    }
    +
    +    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
    +  }
    +
    +  var PR_innerHtmlWorks = null;
    +  function getInnerHtml(node) {
    +    // inner html is hopelessly broken in Safari 2.0.4 when the content is
    +    // an html description of well formed XML and the containing tag is a PRE
    +    // tag, so we detect that case and emulate innerHTML.
    +    if (null === PR_innerHtmlWorks) {
    +      var testNode = document.createElement('PRE');
    +      testNode.appendChild(
    +          document.createTextNode('<!DOCTYPE foo PUBLIC "foo bar">\n<foo />'));
    +      PR_innerHtmlWorks = !/</.test(testNode.innerHTML);
    +    }
    +
    +    if (PR_innerHtmlWorks) {
    +      var content = node.innerHTML;
    +      // XMP tags contain unescaped entities so require special handling.
    +      if (isRawContent(node)) {
    +        content = textToHtml(content);
    +      } else if (!isPreformatted(node, content)) {
    +        content = content.replace(/(<br\s*\/?>)[\r\n]+/g, '$1')
    +            .replace(/(?:[\r\n]+[ \t]*)+/g, ' ');
    +      }
    +      return content;
    +    }
    +
    +    var out = [];
    +    for (var child = node.firstChild; child; child = child.nextSibling) {
    +      normalizedHtml(child, out);
    +    }
    +    return out.join('');
    +  }
    +
    +  /** returns a function that expand tabs to spaces.  This function can be fed
    +    * successive chunks of text, and will maintain its own internal state to
    +    * keep track of how tabs are expanded.
    +    * @return {function (string) : string} a function that takes
    +    *   plain text and return the text with tabs expanded.
    +    * @private
    +    */
    +  function makeTabExpander(tabWidth) {
    +    var SPACES = '                ';
    +    var charInLine = 0;
    +
    +    return function (plainText) {
    +      // walk over each character looking for tabs and newlines.
    +      // On tabs, expand them.  On newlines, reset charInLine.
    +      // Otherwise increment charInLine
    +      var out = null;
    +      var pos = 0;
    +      for (var i = 0, n = plainText.length; i < n; ++i) {
    +        var ch = plainText.charAt(i);
    +
    +        switch (ch) {
    +          case '\t':
    +            if (!out) { out = []; }
    +            out.push(plainText.substring(pos, i));
    +            // calculate how much space we need in front of this part
    +            // nSpaces is the amount of padding -- the number of spaces needed
    +            // to move us to the next column, where columns occur at factors of
    +            // tabWidth.
    +            var nSpaces = tabWidth - (charInLine % tabWidth);
    +            charInLine += nSpaces;
    +            for (; nSpaces >= 0; nSpaces -= SPACES.length) {
    +              out.push(SPACES.substring(0, nSpaces));
    +            }
    +            pos = i + 1;
    +            break;
    +          case '\n':
    +            charInLine = 0;
    +            break;
    +          default:
    +            ++charInLine;
    +        }
    +      }
    +      if (!out) { return plainText; }
    +      out.push(plainText.substring(pos));
    +      return out.join('');
    +    };
    +  }
    +
    +  var pr_chunkPattern = new RegExp(
    +      '[^<]+'  // A run of characters other than '<'
    +      + '|<\!--[\\s\\S]*?--\>'  // an HTML comment
    +      + '|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>'  // a CDATA section
    +      // a probable tag that should not be highlighted
    +      + '|<\/?[a-zA-Z](?:[^>\"\']|\'[^\']*\'|\"[^\"]*\")*>'
    +      + '|<',  // A '<' that does not begin a larger chunk
    +      'g');
    +  var pr_commentPrefix = /^<\!--/;
    +  var pr_cdataPrefix = /^<!\[CDATA\[/;
    +  var pr_brPrefix = /^<br\b/i;
    +  var pr_tagNameRe = /^<(\/?)([a-zA-Z][a-zA-Z0-9]*)/;
    +
    +  /** split markup into chunks of html tags (style null) and
    +    * plain text (style {@link #PR_PLAIN}), converting tags which are
    +    * significant for tokenization (<br>) into their textual equivalent.
    +    *
    +    * @param {string} s html where whitespace is considered significant.
    +    * @return {Object} source code and extracted tags.
    +    * @private
    +    */
    +  function extractTags(s) {
    +    // since the pattern has the 'g' modifier and defines no capturing groups,
    +    // this will return a list of all chunks which we then classify and wrap as
    +    // PR_Tokens
    +    var matches = s.match(pr_chunkPattern);
    +    var sourceBuf = [];
    +    var sourceBufLen = 0;
    +    var extractedTags = [];
    +    if (matches) {
    +      for (var i = 0, n = matches.length; i < n; ++i) {
    +        var match = matches[i];
    +        if (match.length > 1 && match.charAt(0) === '<') {
    +          if (pr_commentPrefix.test(match)) { continue; }
    +          if (pr_cdataPrefix.test(match)) {
    +            // strip CDATA prefix and suffix.  Don't unescape since it's CDATA
    +            sourceBuf.push(match.substring(9, match.length - 3));
    +            sourceBufLen += match.length - 12;
    +          } else if (pr_brPrefix.test(match)) {
    +            // <br> tags are lexically significant so convert them to text.
    +            // This is undone later.
    +            sourceBuf.push('\n');
    +            ++sourceBufLen;
    +          } else {
    +            if (match.indexOf(PR_NOCODE) >= 0 && isNoCodeTag(match)) {
    +              // A <span class="nocode"> will start a section that should be
    +              // ignored.  Continue walking the list until we see a matching end
    +              // tag.
    +              var name = match.match(pr_tagNameRe)[2];
    +              var depth = 1;
    +              var j;
    +              end_tag_loop:
    +              for (j = i + 1; j < n; ++j) {
    +                var name2 = matches[j].match(pr_tagNameRe);
    +                if (name2 && name2[2] === name) {
    +                  if (name2[1] === '/') {
    +                    if (--depth === 0) { break end_tag_loop; }
    +                  } else {
    +                    ++depth;
    +                  }
    +                }
    +              }
    +              if (j < n) {
    +                extractedTags.push(
    +                    sourceBufLen, matches.slice(i, j + 1).join(''));
    +                i = j;
    +              } else {  // Ignore unclosed sections.
    +                extractedTags.push(sourceBufLen, match);
    +              }
    +            } else {
    +              extractedTags.push(sourceBufLen, match);
    +            }
    +          }
    +        } else {
    +          var literalText = htmlToText(match);
    +          sourceBuf.push(literalText);
    +          sourceBufLen += literalText.length;
    +        }
    +      }
    +    }
    +    return { source: sourceBuf.join(''), tags: extractedTags };
    +  }
    +
    +  /** True if the given tag contains a class attribute with the nocode class. */
    +  function isNoCodeTag(tag) {
    +    return !!tag
    +        // First canonicalize the representation of attributes
    +        .replace(/\s(\w+)\s*=\s*(?:\"([^\"]*)\"|'([^\']*)'|(\S+))/g,
    +                 ' $1="$2$3$4"')
    +        // Then look for the attribute we want.
    +        .match(/[cC][lL][aA][sS][sS]=\"[^\"]*\bnocode\b/);
    +  }
    +
    +  /**
    +   * Apply the given language handler to sourceCode and add the resulting
    +   * decorations to out.
    +   * @param {number} basePos the index of sourceCode within the chunk of source
    +   *    whose decorations are already present on out.
    +   */
    +  function appendDecorations(basePos, sourceCode, langHandler, out) {
    +    if (!sourceCode) { return; }
    +    var job = {
    +      source: sourceCode,
    +      basePos: basePos
    +    };
    +    langHandler(job);
    +    out.push.apply(out, job.decorations);
    +  }
    +
    +  /** Given triples of [style, pattern, context] returns a lexing function,
    +    * The lexing function interprets the patterns to find token boundaries and
    +    * returns a decoration list of the form
    +    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
    +    * where index_n is an index into the sourceCode, and style_n is a style
    +    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
    +    * all characters in sourceCode[index_n-1:index_n].
    +    *
    +    * The stylePatterns is a list whose elements have the form
    +    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    +    *
    +    * Style is a style constant like PR_PLAIN, or can be a string of the
    +    * form 'lang-FOO', where FOO is a language extension describing the
    +    * language of the portion of the token in $1 after pattern executes.
    +    * E.g., if style is 'lang-lisp', and group 1 contains the text
    +    * '(hello (world))', then that portion of the token will be passed to the
    +    * registered lisp handler for formatting.
    +    * The text before and after group 1 will be restyled using this decorator
    +    * so decorators should take care that this doesn't result in infinite
    +    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
    +    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
    +    * '<script>foo()<\/script>', which would cause the current decorator to
    +    * be called with '<script>' which would not match the same rule since
    +    * group 1 must not be empty, so it would be instead styled as PR_TAG by
    +    * the generic tag rule.  The handler registered for the 'js' extension would
    +    * then be called with 'foo()', and finally, the current decorator would
    +    * be called with '<\/script>' which would not match the original rule and
    +    * so the generic tag rule would identify it as a tag.
    +    *
    +    * Pattern must only match prefixes, and if it matches a prefix, then that
    +    * match is considered a token with the same style.
    +    *
    +    * Context is applied to the last non-whitespace, non-comment token
    +    * recognized.
    +    *
    +    * Shortcut is an optional string of characters, any of which, if the first
    +    * character, gurantee that this pattern and only this pattern matches.
    +    *
    +    * @param {Array} shortcutStylePatterns patterns that always start with
    +    *   a known character.  Must have a shortcut string.
    +    * @param {Array} fallthroughStylePatterns patterns that will be tried in
    +    *   order if the shortcut ones fail.  May have shortcuts.
    +    *
    +    * @return {function (Object)} a
    +    *   function that takes source code and returns a list of decorations.
    +    */
    +  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
    +    var shortcuts = {};
    +    var tokenizer;
    +    (function () {
    +      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
    +      var allRegexs = [];
    +      var regexKeys = {};
    +      for (var i = 0, n = allPatterns.length; i < n; ++i) {
    +        var patternParts = allPatterns[i];
    +        var shortcutChars = patternParts[3];
    +        if (shortcutChars) {
    +          for (var c = shortcutChars.length; --c >= 0;) {
    +            shortcuts[shortcutChars.charAt(c)] = patternParts;
    +          }
    +        }
    +        var regex = patternParts[1];
    +        var k = '' + regex;
    +        if (!regexKeys.hasOwnProperty(k)) {
    +          allRegexs.push(regex);
    +          regexKeys[k] = null;
    +        }
    +      }
    +      allRegexs.push(/[\0-\uffff]/);
    +      tokenizer = combinePrefixPatterns(allRegexs);
    +    })();
    +
    +    var nPatterns = fallthroughStylePatterns.length;
    +    var notWs = /\S/;
    +
    +    /**
    +     * Lexes job.source and produces an output array job.decorations of style
    +     * classes preceded by the position at which they start in job.source in
    +     * order.
    +     *
    +     * @param {Object} job an object like {@code
    +     *    source: {string} sourceText plain text,
    +     *    basePos: {int} position of job.source in the larger chunk of
    +     *        sourceCode.
    +     * }
    +     */
    +    var decorate = function (job) {
    +      var sourceCode = job.source, basePos = job.basePos;
    +      /** Even entries are positions in source in ascending order.  Odd enties
    +        * are style markers (e.g., PR_COMMENT) that run from that position until
    +        * the end.
    +        * @type {Array.<number|string>}
    +        */
    +      var decorations = [basePos, PR_PLAIN];
    +      var pos = 0;  // index into sourceCode
    +      var tokens = sourceCode.match(tokenizer) || [];
    +      var styleCache = {};
    +
    +      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
    +        var token = tokens[ti];
    +        var style = styleCache[token];
    +        var match = void 0;
    +
    +        var isEmbedded;
    +        if (typeof style === 'string') {
    +          isEmbedded = false;
    +        } else {
    +          var patternParts = shortcuts[token.charAt(0)];
    +          if (patternParts) {
    +            match = token.match(patternParts[1]);
    +            style = patternParts[0];
    +          } else {
    +            for (var i = 0; i < nPatterns; ++i) {
    +              patternParts = fallthroughStylePatterns[i];
    +              match = token.match(patternParts[1]);
    +              if (match) {
    +                style = patternParts[0];
    +                break;
    +              }
    +            }
    +
    +            if (!match) {  // make sure that we make progress
    +              style = PR_PLAIN;
    +            }
    +          }
    +
    +          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
    +          if (isEmbedded && !(match && typeof match[1] === 'string')) {
    +            isEmbedded = false;
    +            style = PR_SOURCE;
    +          }
    +
    +          if (!isEmbedded) { styleCache[token] = style; }
    +        }
    +
    +        var tokenStart = pos;
    +        pos += token.length;
    +
    +        if (!isEmbedded) {
    +          decorations.push(basePos + tokenStart, style);
    +        } else {  // Treat group 1 as an embedded block of source code.
    +          var embeddedSource = match[1];
    +          var embeddedSourceStart = token.indexOf(embeddedSource);
    +          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
    +          if (match[2]) {
    +            // If embeddedSource can be blank, then it would match at the
    +            // beginning which would cause us to infinitely recurse on the
    +            // entire token, so we catch the right context in match[2].
    +            embeddedSourceEnd = token.length - match[2].length;
    +            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
    +          }
    +          var lang = style.substring(5);
    +          // Decorate the left of the embedded source
    +          appendDecorations(
    +              basePos + tokenStart,
    +              token.substring(0, embeddedSourceStart),
    +              decorate, decorations);
    +          // Decorate the embedded source
    +          appendDecorations(
    +              basePos + tokenStart + embeddedSourceStart,
    +              embeddedSource,
    +              langHandlerForExtension(lang, embeddedSource),
    +              decorations);
    +          // Decorate the right of the embedded section
    +          appendDecorations(
    +              basePos + tokenStart + embeddedSourceEnd,
    +              token.substring(embeddedSourceEnd),
    +              decorate, decorations);
    +        }
    +      }
    +      job.decorations = decorations;
    +    };
    +    return decorate;
    +  }
    +
    +  /** returns a function that produces a list of decorations from source text.
    +    *
    +    * This code treats ", ', and ` as string delimiters, and \ as a string
    +    * escape.  It does not recognize perl's qq() style strings.
    +    * It has no special handling for double delimiter escapes as in basic, or
    +    * the tripled delimiters used in python, but should work on those regardless
    +    * although in those cases a single string literal may be broken up into
    +    * multiple adjacent string literals.
    +    *
    +    * It recognizes C, C++, and shell style comments.
    +    *
    +    * @param {Object} options a set of optional parameters.
    +    * @return {function (Object)} a function that examines the source code
    +    *     in the input job and builds the decoration list.
    +    */
    +  function sourceDecorator(options) {
    +    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
    +    if (options['tripleQuotedStrings']) {
    +      // '''multi-line-string''', 'single-line-string', and double-quoted
    +      shortcutStylePatterns.push(
    +          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
    +           null, '\'"']);
    +    } else if (options['multiLineStrings']) {
    +      // 'multi-line-string', "multi-line-string"
    +      shortcutStylePatterns.push(
    +          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
    +           null, '\'"`']);
    +    } else {
    +      // 'single-line-string', "single-line-string"
    +      shortcutStylePatterns.push(
    +          [PR_STRING,
    +           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
    +           null, '"\'']);
    +    }
    +    if (options['verbatimStrings']) {
    +      // verbatim-string-literal production from the C# grammar.  See issue 93.
    +      fallthroughStylePatterns.push(
    +          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
    +    }
    +    if (options['hashComments']) {
    +      if (options['cStyleComments']) {
    +        // Stop C preprocessor declarations at an unclosed open comment
    +        shortcutStylePatterns.push(
    +            [PR_COMMENT, /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,
    +             null, '#']);
    +        fallthroughStylePatterns.push(
    +            [PR_STRING,
    +             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,
    +             null]);
    +      } else {
    +        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
    +      }
    +    }
    +    if (options['cStyleComments']) {
    +      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
    +      fallthroughStylePatterns.push(
    +          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
    +    }
    +    if (options['regexLiterals']) {
    +      var REGEX_LITERAL = (
    +          // A regular expression literal starts with a slash that is
    +          // not followed by * or / so that it is not confused with
    +          // comments.
    +          '/(?=[^/*])'
    +          // and then contains any number of raw characters,
    +          + '(?:[^/\\x5B\\x5C]'
    +          // escape sequences (\x5C),
    +          +    '|\\x5C[\\s\\S]'
    +          // or non-nesting character sets (\x5B\x5D);
    +          +    '|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+'
    +          // finally closed by a /.
    +          + '/');
    +      fallthroughStylePatterns.push(
    +          ['lang-regex',
    +           new RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
    +           ]);
    +    }
    +
    +    var keywords = options['keywords'].replace(/^\s+|\s+$/g, '');
    +    if (keywords.length) {
    +      fallthroughStylePatterns.push(
    +          [PR_KEYWORD,
    +           new RegExp('^(?:' + keywords.replace(/\s+/g, '|') + ')\\b'), null]);
    +    }
    +
    +    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
    +    fallthroughStylePatterns.push(
    +        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
    +        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
    +        [PR_TYPE,        /^@?[A-Z]+[a-z][A-Za-z_$@0-9]*/, null],
    +        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
    +        [PR_LITERAL,
    +         new RegExp(
    +             '^(?:'
    +             // A hex number
    +             + '0x[a-f0-9]+'
    +             // or an octal or decimal number,
    +             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
    +             // possibly in scientific notation
    +             + '(?:e[+\\-]?\\d+)?'
    +             + ')'
    +             // with an optional modifier like UL for unsigned long
    +             + '[a-z]*', 'i'),
    +         null, '0123456789'],
    +        [PR_PUNCTUATION, /^.[^\s\w\.$@\'\"\`\/\#]*/, null]);
    +
    +    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
    +  }
    +
    +  var decorateSource = sourceDecorator({
    +        'keywords': ALL_KEYWORDS,
    +        'hashComments': true,
    +        'cStyleComments': true,
    +        'multiLineStrings': true,
    +        'regexLiterals': true
    +      });
    +
    +  /** Breaks {@code job.source} around style boundaries in
    +    * {@code job.decorations} while re-interleaving {@code job.extractedTags},
    +    * and leaves the result in {@code job.prettyPrintedHtml}.
    +    * @param {Object} job like {
    +    *    source: {string} source as plain text,
    +    *    extractedTags: {Array.<number|string>} extractedTags chunks of raw
    +    *                   html preceded by their position in {@code job.source}
    +    *                   in order
    +    *    decorations: {Array.<number|string} an array of style classes preceded
    +    *                 by the position at which they start in job.source in order
    +    * }
    +    * @private
    +    */
    +  function recombineTagsAndDecorations(job) {
    +    var sourceText = job.source;
    +    var extractedTags = job.extractedTags;
    +    var decorations = job.decorations;
    +
    +    var html = [];
    +    // index past the last char in sourceText written to html
    +    var outputIdx = 0;
    +
    +    var openDecoration = null;
    +    var currentDecoration = null;
    +    var tagPos = 0;  // index into extractedTags
    +    var decPos = 0;  // index into decorations
    +    var tabExpander = makeTabExpander(window['PR_TAB_WIDTH']);
    +
    +    var adjacentSpaceRe = /([\r\n ]) /g;
    +    var startOrSpaceRe = /(^| ) /gm;
    +    var newlineRe = /\r\n?|\n/g;
    +    var trailingSpaceRe = /[ \r\n]$/;
    +    var lastWasSpace = true;  // the last text chunk emitted ended with a space.
    +
    +    // See bug 71 and http://stackoverflow.com/questions/136443/why-doesnt-ie7-
    +    var isIE678 = window['_pr_isIE6']();
    +    var lineBreakHtml = (
    +        isIE678
    +        ? (job.sourceNode.tagName === 'PRE'
    +           // Use line feeds instead of <br>s so that copying and pasting works
    +           // on IE.
    +           // Doing this on other browsers breaks lots of stuff since \r\n is
    +           // treated as two newlines on Firefox.
    +           ? (isIE678 === 6 ? '&#160;\r\n' :
    +              isIE678 === 7 ? '&#160;<br>\r' : '&#160;\r')
    +           // IE collapses multiple adjacent <br>s into 1 line break.
    +           // Prefix every newline with '&#160;' to prevent such behavior.
    +           // &nbsp; is the same as &#160; but works in XML as well as HTML.
    +           : '&#160;<br />')
    +        : '<br />');
    +
    +    // Look for a class like linenums or linenums:<n> where <n> is the 1-indexed
    +    // number of the first line.
    +    var numberLines = job.sourceNode.className.match(/\blinenums\b(?::(\d+))?/);
    +    var lineBreaker;
    +    if (numberLines) {
    +      var lineBreaks = [];
    +      for (var i = 0; i < 10; ++i) {
    +        lineBreaks[i] = lineBreakHtml + '</li><li class="L' + i + '">';
    +      }
    +      var lineNum = numberLines[1] && numberLines[1].length
    +          ? numberLines[1] - 1 : 0;  // Lines are 1-indexed
    +      html.push('<ol class="linenums"><li class="L', (lineNum) % 10, '"');
    +      if (lineNum) {
    +        html.push(' value="', lineNum + 1, '"');
    +      }
    +      html.push('>');
    +      lineBreaker = function () {
    +        var lb = lineBreaks[++lineNum % 10];
    +        // If a decoration is open, we need to close it before closing a list-item
    +        // and reopen it on the other side of the list item.
    +        return openDecoration
    +            ? ('</span>' + lb + '<span class="' + openDecoration + '">') : lb;
    +      };
    +    } else {
    +      lineBreaker = lineBreakHtml;
    +    }
    +
    +    // A helper function that is responsible for opening sections of decoration
    +    // and outputing properly escaped chunks of source
    +    function emitTextUpTo(sourceIdx) {
    +      if (sourceIdx > outputIdx) {
    +        if (openDecoration && openDecoration !== currentDecoration) {
    +          // Close the current decoration
    +          html.push('</span>');
    +          openDecoration = null;
    +        }
    +        if (!openDecoration && currentDecoration) {
    +          openDecoration = currentDecoration;
    +          html.push('<span class="', openDecoration, '">');
    +        }
    +        // This interacts badly with some wikis which introduces paragraph tags
    +        // into pre blocks for some strange reason.
    +        // It's necessary for IE though which seems to lose the preformattedness
    +        // of <pre> tags when their innerHTML is assigned.
    +        // http://stud3.tuwien.ac.at/~e0226430/innerHtmlQuirk.html
    +        // and it serves to undo the conversion of <br>s to newlines done in
    +        // chunkify.
    +        var htmlChunk = textToHtml(
    +            tabExpander(sourceText.substring(outputIdx, sourceIdx)))
    +            .replace(lastWasSpace
    +                     ? startOrSpaceRe
    +                     : adjacentSpaceRe, '$1&#160;');
    +        // Keep track of whether we need to escape space at the beginning of the
    +        // next chunk.
    +        lastWasSpace = trailingSpaceRe.test(htmlChunk);
    +        html.push(htmlChunk.replace(newlineRe, lineBreaker));
    +        outputIdx = sourceIdx;
    +      }
    +    }
    +
    +    while (true) {
    +      // Determine if we're going to consume a tag this time around.  Otherwise
    +      // we consume a decoration or exit.
    +      var outputTag;
    +      if (tagPos < extractedTags.length) {
    +        if (decPos < decorations.length) {
    +          // Pick one giving preference to extractedTags since we shouldn't open
    +          // a new style that we're going to have to immediately close in order
    +          // to output a tag.
    +          outputTag = extractedTags[tagPos] <= decorations[decPos];
    +        } else {
    +          outputTag = true;
    +        }
    +      } else {
    +        outputTag = false;
    +      }
    +      // Consume either a decoration or a tag or exit.
    +      if (outputTag) {
    +        emitTextUpTo(extractedTags[tagPos]);
    +        if (openDecoration) {
    +          // Close the current decoration
    +          html.push('</span>');
    +          openDecoration = null;
    +        }
    +        html.push(extractedTags[tagPos + 1]);
    +        tagPos += 2;
    +      } else if (decPos < decorations.length) {
    +        emitTextUpTo(decorations[decPos]);
    +        currentDecoration = decorations[decPos + 1];
    +        decPos += 2;
    +      } else {
    +        break;
    +      }
    +    }
    +    emitTextUpTo(sourceText.length);
    +    if (openDecoration) {
    +      html.push('</span>');
    +    }
    +    if (numberLines) { html.push('</li></ol>'); }
    +    job.prettyPrintedHtml = html.join('');
    +  }
    +
    +  /** Maps language-specific file extensions to handlers. */
    +  var langHandlerRegistry = {};
    +  /** Register a language handler for the given file extensions.
    +    * @param {function (Object)} handler a function from source code to a list
    +    *      of decorations.  Takes a single argument job which describes the
    +    *      state of the computation.   The single parameter has the form
    +    *      {@code {
    +    *        source: {string} as plain text.
    +    *        decorations: {Array.<number|string>} an array of style classes
    +    *                     preceded by the position at which they start in
    +    *                     job.source in order.
    +    *                     The language handler should assigned this field.
    +    *        basePos: {int} the position of source in the larger source chunk.
    +    *                 All positions in the output decorations array are relative
    +    *                 to the larger source chunk.
    +    *      } }
    +    * @param {Array.<string>} fileExtensions
    +    */
    +  function registerLangHandler(handler, fileExtensions) {
    +    for (var i = fileExtensions.length; --i >= 0;) {
    +      var ext = fileExtensions[i];
    +      if (!langHandlerRegistry.hasOwnProperty(ext)) {
    +        langHandlerRegistry[ext] = handler;
    +      } else if ('console' in window) {
    +        console['warn']('cannot override language handler %s', ext);
    +      }
    +    }
    +  }
    +  function langHandlerForExtension(extension, source) {
    +    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
    +      // Treat it as markup if the first non whitespace character is a < and
    +      // the last non-whitespace character is a >.
    +      extension = /^\s*</.test(source)
    +          ? 'default-markup'
    +          : 'default-code';
    +    }
    +    return langHandlerRegistry[extension];
    +  }
    +  registerLangHandler(decorateSource, ['default-code']);
    +  registerLangHandler(
    +      createSimpleLexer(
    +          [],
    +          [
    +           [PR_PLAIN,       /^[^<?]+/],
    +           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
    +           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
    +           // Unescaped content in an unknown language
    +           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
    +           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
    +           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
    +           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
    +           // Unescaped content in javascript.  (Or possibly vbscript).
    +           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
    +           // Contains unescaped stylesheet content
    +           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
    +           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
    +          ]),
    +      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
    +  registerLangHandler(
    +      createSimpleLexer(
    +          [
    +           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
    +           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
    +           ],
    +          [
    +           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
    +           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
    +           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
    +           [PR_PUNCTUATION,  /^[=<>\/]+/],
    +           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
    +           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
    +           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
    +           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
    +           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
    +           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
    +           ]),
    +      ['in.tag']);
    +  registerLangHandler(
    +      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': CPP_KEYWORDS,
    +          'hashComments': true,
    +          'cStyleComments': true
    +        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': 'null true false'
    +        }), ['json']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': CSHARP_KEYWORDS,
    +          'hashComments': true,
    +          'cStyleComments': true,
    +          'verbatimStrings': true
    +        }), ['cs']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': JAVA_KEYWORDS,
    +          'cStyleComments': true
    +        }), ['java']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': SH_KEYWORDS,
    +          'hashComments': true,
    +          'multiLineStrings': true
    +        }), ['bsh', 'csh', 'sh']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': PYTHON_KEYWORDS,
    +          'hashComments': true,
    +          'multiLineStrings': true,
    +          'tripleQuotedStrings': true
    +        }), ['cv', 'py']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': PERL_KEYWORDS,
    +          'hashComments': true,
    +          'multiLineStrings': true,
    +          'regexLiterals': true
    +        }), ['perl', 'pl', 'pm']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': RUBY_KEYWORDS,
    +          'hashComments': true,
    +          'multiLineStrings': true,
    +          'regexLiterals': true
    +        }), ['rb']);
    +  registerLangHandler(sourceDecorator({
    +          'keywords': JSCRIPT_KEYWORDS,
    +          'cStyleComments': true,
    +          'regexLiterals': true
    +        }), ['js']);
    +  registerLangHandler(
    +      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
    +
    +  function applyDecorator(job) {
    +    var sourceCodeHtml = job.sourceCodeHtml;
    +    var opt_langExtension = job.langExtension;
    +
    +    // Prepopulate output in case processing fails with an exception.
    +    job.prettyPrintedHtml = sourceCodeHtml;
    +
    +    try {
    +      // Extract tags, and convert the source code to plain text.
    +      var sourceAndExtractedTags = extractTags(sourceCodeHtml);
    +      /** Plain text. @type {string} */
    +      var source = sourceAndExtractedTags.source;
    +      job.source = source;
    +      job.basePos = 0;
    +
    +      /** Even entries are positions in source in ascending order.  Odd entries
    +        * are tags that were extracted at that position.
    +        * @type {Array.<number|string>}
    +        */
    +      job.extractedTags = sourceAndExtractedTags.tags;
    +
    +      // Apply the appropriate language handler
    +      langHandlerForExtension(opt_langExtension, source)(job);
    +      // Integrate the decorations and tags back into the source code to produce
    +      // a decorated html string which is left in job.prettyPrintedHtml.
    +      recombineTagsAndDecorations(job);
    +    } catch (e) {
    +      if ('console' in window) {
    +        console['log'](e && e['stack'] ? e['stack'] : e);
    +      }
    +    }
    +  }
    +
    +  function prettyPrintOne(sourceCodeHtml, opt_langExtension) {
    +    var job = {
    +      sourceCodeHtml: sourceCodeHtml,
    +      langExtension: opt_langExtension
    +    };
    +    applyDecorator(job);
    +    return job.prettyPrintedHtml;
    +  }
    +
    +  function prettyPrint(opt_whenDone) {
    +    function byTagName(tn) { return document.getElementsByTagName(tn); }
    +    // fetch a list of nodes to rewrite
    +    var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
    +    var elements = [];
    +    for (var i = 0; i < codeSegments.length; ++i) {
    +      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
    +        elements.push(codeSegments[i][j]);
    +      }
    +    }
    +    codeSegments = null;
    +
    +    var clock = Date;
    +    if (!clock['now']) {
    +      clock = { 'now': function () { return (new Date).getTime(); } };
    +    }
    +
    +    // The loop is broken into a series of continuations to make sure that we
    +    // don't make the browser unresponsive when rewriting a large page.
    +    var k = 0;
    +    var prettyPrintingJob;
    +
    +    function doWork() {
    +      var endTime = (window['PR_SHOULD_USE_CONTINUATION'] ?
    +                     clock.now() + 250 /* ms */ :
    +                     Infinity);
    +      for (; k < elements.length && clock.now() < endTime; k++) {
    +        var cs = elements[k];
    +        // [JACOCO] 'prettyprint' -> 'source'
    +        if (cs.className && cs.className.indexOf('source') >= 0) {
    +          // If the classes includes a language extensions, use it.
    +          // Language extensions can be specified like
    +          //     <pre class="prettyprint lang-cpp">
    +          // the language extension "cpp" is used to find a language handler as
    +          // passed to PR_registerLangHandler.
    +          var langExtension = cs.className.match(/\blang-(\w+)\b/);
    +          if (langExtension) { langExtension = langExtension[1]; }
    +
    +          // make sure this is not nested in an already prettified element
    +          var nested = false;
    +          for (var p = cs.parentNode; p; p = p.parentNode) {
    +            if ((p.tagName === 'pre' || p.tagName === 'code' ||
    +                 p.tagName === 'xmp') &&
    +                // [JACOCO] 'prettyprint' -> 'source'
    +                p.className && p.className.indexOf('source') >= 0) {
    +              nested = true;
    +              break;
    +            }
    +          }
    +          if (!nested) {
    +            // fetch the content as a snippet of properly escaped HTML.
    +            // Firefox adds newlines at the end.
    +            var content = getInnerHtml(cs);
    +            content = content.replace(/(?:\r\n?|\n)$/, '');
    +
    +            // do the pretty printing
    +            prettyPrintingJob = {
    +              sourceCodeHtml: content,
    +              langExtension: langExtension,
    +              sourceNode: cs
    +            };
    +            applyDecorator(prettyPrintingJob);
    +            replaceWithPrettyPrintedHtml();
    +          }
    +        }
    +      }
    +      if (k < elements.length) {
    +        // finish up in a continuation
    +        setTimeout(doWork, 250);
    +      } else if (opt_whenDone) {
    +        opt_whenDone();
    +      }
    +    }
    +
    +    function replaceWithPrettyPrintedHtml() {
    +      var newContent = prettyPrintingJob.prettyPrintedHtml;
    +      if (!newContent) { return; }
    +      var cs = prettyPrintingJob.sourceNode;
    +
    +      // push the prettified html back into the tag.
    +      if (!isRawContent(cs)) {
    +        // just replace the old html with the new
    +        cs.innerHTML = newContent;
    +      } else {
    +        // we need to change the tag to a <pre> since <xmp>s do not allow
    +        // embedded tags such as the span tags used to attach styles to
    +        // sections of source code.
    +        var pre = document.createElement('PRE');
    +        for (var i = 0; i < cs.attributes.length; ++i) {
    +          var a = cs.attributes[i];
    +          if (a.specified) {
    +            var aname = a.name.toLowerCase();
    +            if (aname === 'class') {
    +              pre.className = a.value;  // For IE 6
    +            } else {
    +              pre.setAttribute(a.name, a.value);
    +            }
    +          }
    +        }
    +        pre.innerHTML = newContent;
    +
    +        // remove the old
    +        cs.parentNode.replaceChild(pre, cs);
    +        cs = pre;
    +      }
    +    }
    +
    +    doWork();
    +  }
    +
    +  window['PR_normalizedHtml'] = normalizedHtml;
    +  window['prettyPrintOne'] = prettyPrintOne;
    +  window['prettyPrint'] = prettyPrint;
    +  window['PR'] = {
    +        'combinePrefixPatterns': combinePrefixPatterns,
    +        'createSimpleLexer': createSimpleLexer,
    +        'registerLangHandler': registerLangHandler,
    +        'sourceDecorator': sourceDecorator,
    +        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
    +        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
    +        'PR_COMMENT': PR_COMMENT,
    +        'PR_DECLARATION': PR_DECLARATION,
    +        'PR_KEYWORD': PR_KEYWORD,
    +        'PR_LITERAL': PR_LITERAL,
    +        'PR_NOCODE': PR_NOCODE,
    +        'PR_PLAIN': PR_PLAIN,
    +        'PR_PUNCTUATION': PR_PUNCTUATION,
    +        'PR_SOURCE': PR_SOURCE,
    +        'PR_STRING': PR_STRING,
    +        'PR_TAG': PR_TAG,
    +        'PR_TYPE': PR_TYPE
    +      };
    +})();
    diff --git a/job/jacoco/jacoco-resources/redbar.gif b/job/jacoco/jacoco-resources/redbar.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..c2f71469ba995289439d86ea39b1b33edb03388c
    GIT binary patch
    literal 91
    zcmZ?wbhEHbWMtrCc+AD{pP&D~tn7aso&R25|6^nS*Vg{;>G{84!T)8;{;yfXu$BQ0
    fDgI<(<YM4w&|v@qkQodt90ol_LPjnP91PX~3&9+X
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-resources/report.css b/job/jacoco/jacoco-resources/report.css
    new file mode 100644
    index 000000000..dd936bca5
    --- /dev/null
    +++ b/job/jacoco/jacoco-resources/report.css
    @@ -0,0 +1,243 @@
    +body, td {
    +  font-family:sans-serif;
    +  font-size:10pt;
    +}
    +
    +h1 {
    +  font-weight:bold;
    +  font-size:18pt;
    +}
    +
    +.breadcrumb {
    +  border:#d6d3ce 1px solid;
    +  padding:2px 4px 2px 4px;
    +}
    +
    +.breadcrumb .info {
    +  float:right;
    +}
    +
    +.breadcrumb .info a {
    +  margin-left:8px;
    +}
    +
    +.el_report {
    +  padding-left:18px;
    +  background-image:url(report.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_group {
    +  padding-left:18px;
    +  background-image:url(group.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_bundle {
    +  padding-left:18px;
    +  background-image:url(bundle.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_package {
    +  padding-left:18px;
    +  background-image:url(package.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_class {
    +  padding-left:18px;
    +  background-image:url(class.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_source {
    +  padding-left:18px;
    +  background-image:url(source.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_method {
    +  padding-left:18px;
    +  background-image:url(method.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +.el_session {
    +  padding-left:18px;
    +  background-image:url(session.gif);
    +  background-position:left center;
    +  background-repeat:no-repeat;
    +}
    +
    +pre.source {
    +  border:#d6d3ce 1px solid;
    +  font-family:monospace;
    +}
    +
    +pre.source ol {
    +  margin-bottom: 0px;
    +  margin-top: 0px;
    +}
    +
    +pre.source li {
    +  border-left: 1px solid #D6D3CE;
    +  color: #A0A0A0;
    +  padding-left: 0px;
    +}
    +
    +pre.source span.fc {
    +  background-color:#ccffcc;
    +}
    +
    +pre.source span.nc {
    +  background-color:#ffaaaa;
    +}
    +
    +pre.source span.pc {
    +  background-color:#ffffcc;
    +}
    +
    +pre.source span.bfc {
    +  background-image: url(branchfc.gif);
    +  background-repeat: no-repeat;
    +  background-position: 2px center;
    +}
    +
    +pre.source span.bfc:hover {
    +  background-color:#80ff80;
    +}
    +
    +pre.source span.bnc {
    +  background-image: url(branchnc.gif);
    +  background-repeat: no-repeat;
    +  background-position: 2px center;
    +}
    +
    +pre.source span.bnc:hover {
    +  background-color:#ff8080;
    +}
    +
    +pre.source span.bpc {
    +  background-image: url(branchpc.gif);
    +  background-repeat: no-repeat;
    +  background-position: 2px center;
    +}
    +
    +pre.source span.bpc:hover {
    +  background-color:#ffff80;
    +}
    +
    +table.coverage {
    +  empty-cells:show;
    +  border-collapse:collapse;
    +}
    +
    +table.coverage thead {
    +  background-color:#e0e0e0;
    +}
    +
    +table.coverage thead td {
    +  white-space:nowrap;
    +  padding:2px 14px 0px 6px;
    +  border-bottom:#b0b0b0 1px solid;
    +}
    +
    +table.coverage thead td.bar {
    +  border-left:#cccccc 1px solid;
    +}
    +
    +table.coverage thead td.ctr1 {
    +  text-align:right;
    +  border-left:#cccccc 1px solid;
    +}
    +
    +table.coverage thead td.ctr2 {
    +  text-align:right;
    +  padding-left:2px;
    +}
    +
    +table.coverage thead td.sortable {
    +  cursor:pointer;
    +  background-image:url(sort.gif);
    +  background-position:right center;
    +  background-repeat:no-repeat;
    +}
    +
    +table.coverage thead td.up {
    +  background-image:url(up.gif);
    +}
    +
    +table.coverage thead td.down {
    +  background-image:url(down.gif);
    +}
    +
    +table.coverage tbody td {
    +  white-space:nowrap;
    +  padding:2px 6px 2px 6px;
    +  border-bottom:#d6d3ce 1px solid;
    +}
    +
    +table.coverage tbody tr:hover {
    +  background: #f0f0d0 !important;
    +}
    +
    +table.coverage tbody td.bar {
    +  border-left:#e8e8e8 1px solid;
    +}
    +
    +table.coverage tbody td.ctr1 {
    +  text-align:right;
    +  padding-right:14px;
    +  border-left:#e8e8e8 1px solid;
    +}
    +
    +table.coverage tbody td.ctr2 {
    +  text-align:right;
    +  padding-right:14px;
    +  padding-left:2px;
    +}
    +
    +table.coverage tfoot td {
    +  white-space:nowrap;
    +  padding:2px 6px 2px 6px;
    +}
    +
    +table.coverage tfoot td.bar {
    +  border-left:#e8e8e8 1px solid;
    +}
    +
    +table.coverage tfoot td.ctr1 {
    +  text-align:right;
    +  padding-right:14px;
    +  border-left:#e8e8e8 1px solid;
    +}
    +
    +table.coverage tfoot td.ctr2 {
    +  text-align:right;
    +  padding-right:14px;
    +  padding-left:2px;
    +}
    +
    +.footer {
    +  margin-top:20px;
    +  border-top:#d6d3ce 1px solid;
    +  padding-top:2px;
    +  font-size:8pt;
    +  color:#a0a0a0;
    +}
    +
    +.footer a {
    +  color:#a0a0a0;
    +}
    +
    +.right {
    +  float:right;
    +}
    diff --git a/job/jacoco/jacoco-resources/report.gif b/job/jacoco/jacoco-resources/report.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..8547be50bf3e97e725920927b5aa4cdb031f4823
    GIT binary patch
    literal 363
    zcmZ?wbhEHb6krfwSZc{In}J~s1H&!`1_uX+xVSjMb&S>db~X8S)dhAn1$OlXwvB~0
    zO@%hC#Wq5_7&^+V`^qgRRa;E2HJ?*&DsqWoev|2fCetO&CQDmPR<;_iXfs~ZZnVC`
    za8s8-+pK*(^AAm4c5K#~(^ocST-lU)byMc8y)_R`^xu2&{oaco_g{R!|Ki8Pmp>lA
    z{_*VHkC*R%zWMa)!{^_hzyAL8?f2(zzrTL}{q@K1Z$Ey2|M}<VuRs5>0mYvzj9d)%
    z3_1)z0P+(9TgQR<1s*zF)+bahX*_u_??Pbv&V#KE^V2&`bhGjjR;*MxC8EFO_3_}<
    zH?w9WrJ7AX`tJM8r525X{~8+WorLsRL^?W{nR=L*odosT`KItOGtTI963}JgV_m??
    z%&>&9-=1G*^3>@wm-A|~FmK+nbvd`DhNhP0UUhXIS1vYAPL5-o?Ce}VXI&i`tO1G(
    BvdRDe
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-resources/session.gif b/job/jacoco/jacoco-resources/session.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..0151bad8a001e5cc5cc7723a608185f746b7f8c1
    GIT binary patch
    literal 213
    zcmZ?wbhEHb6krfwXc1xPS$gU4xw~t2pG#?5#^Be>V3WrXI-S9<hrzA(|Nr^_@5k?-
    zZ~y=IhyVNSXZ04}pKqV%t9oe5k~tY+Ar=Pzi2#Z}Sr{1@<Qa4rfB<AC18dL&^}dwM
    zX_r*ys<8N;e6mS?i^dP8jVmAd@U^}&$uv>xc~m$hYN?d{@xrG~CzZCfhpBIRC}Q>I
    kiQ?_Ai=3VZEOFW9fBwaksdwMK(Err)E%VcVRYeAC06w^MK>z>%
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-resources/sort.gif b/job/jacoco/jacoco-resources/sort.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..6757c2c32b57d768f3c12c4ae99a28bc32c9cbd7
    GIT binary patch
    literal 58
    zcmZ?wbhEHb<YC}qXkcX6uwldh|Nj+#vM_QnFf!;c00|xjP6h@h!JfpGjC*fB>i!bx
    N`t(%z_h<$NYXI&b5{m!;
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-resources/sort.js b/job/jacoco/jacoco-resources/sort.js
    new file mode 100644
    index 000000000..65f8d0e50
    --- /dev/null
    +++ b/job/jacoco/jacoco-resources/sort.js
    @@ -0,0 +1,148 @@
    +/*******************************************************************************
    + * Copyright (c) 2009, 2023 Mountainminds GmbH & Co. KG and Contributors
    + * This program and the accompanying materials are made available under
    + * the terms of the Eclipse Public License 2.0 which is available at
    + * http://www.eclipse.org/legal/epl-2.0
    + *
    + * SPDX-License-Identifier: EPL-2.0
    + *
    + * Contributors:
    + *    Marc R. Hoffmann - initial API and implementation
    + *
    + *******************************************************************************/
    +
    +(function () {
    +
    +  /**
    +   * Sets the initial sorting derived from the hash.
    +   *
    +   * @param linkelementids
    +   *          list of element ids to search for links to add sort inidcator
    +   *          hash links
    +   */
    +  function initialSort(linkelementids) {
    +    window.linkelementids = linkelementids;
    +    var hash = window.location.hash;
    +    if (hash) {
    +      var m = hash.match(/up-./);
    +      if (m) {
    +        var header = window.document.getElementById(m[0].charAt(3));
    +        if (header) {
    +          sortColumn(header, true);
    +        }
    +        return;
    +      }
    +      var m = hash.match(/dn-./);
    +      if (m) {
    +        var header = window.document.getElementById(m[0].charAt(3));
    +        if (header) {
    +          sortColumn(header, false);
    +        }
    +        return
    +      }
    +    }
    +  }
    +
    +  /**
    +   * Sorts the columns with the given header dependening on the current sort state.
    +   */
    +  function toggleSort(header) {
    +    var sortup = header.className.indexOf('down ') == 0;
    +    sortColumn(header, sortup);
    +  }
    +
    +  /**
    +   * Sorts the columns with the given header in the given direction.
    +   */
    +  function sortColumn(header, sortup) {
    +    var table = header.parentNode.parentNode.parentNode;
    +    var body = table.tBodies[0];
    +    var colidx = getNodePosition(header);
    +
    +    resetSortedStyle(table);
    +
    +    var rows = body.rows;
    +    var sortedrows = [];
    +    for (var i = 0; i < rows.length; i++) {
    +      r = rows[i];
    +      sortedrows[parseInt(r.childNodes[colidx].id.slice(1))] = r;
    +    }
    +
    +    var hash;
    +
    +    if (sortup) {
    +      for (var i = sortedrows.length - 1; i >= 0; i--) {
    +        body.appendChild(sortedrows[i]);
    +      }
    +      header.className = 'up ' + header.className;
    +      hash = 'up-' + header.id;
    +    } else {
    +      for (var i = 0; i < sortedrows.length; i++) {
    +        body.appendChild(sortedrows[i]);
    +      }
    +      header.className = 'down ' + header.className;
    +      hash = 'dn-' + header.id;
    +    }
    +
    +    setHash(hash);
    +  }
    +
    +  /**
    +   * Adds the sort indicator as a hash to the document URL and all links.
    +   */
    +  function setHash(hash) {
    +    window.document.location.hash = hash;
    +    ids = window.linkelementids;
    +    for (var i = 0; i < ids.length; i++) {
    +        setHashOnAllLinks(document.getElementById(ids[i]), hash);
    +    }
    +  }
    +
    +  /**
    +   * Extend all links within the given tag with the given hash.
    +   */
    +  function setHashOnAllLinks(tag, hash) {
    +    links = tag.getElementsByTagName("a");
    +    for (var i = 0; i < links.length; i++) {
    +        var a = links[i];
    +        var href = a.href;
    +        var hashpos = href.indexOf("#");
    +        if (hashpos != -1) {
    +            href = href.substring(0, hashpos);
    +        }
    +        a.href = href + "#" + hash;
    +    }
    +  }
    +
    +  /**
    +   * Calculates the position of a element within its parent.
    +   */
    +  function getNodePosition(element) {
    +    var pos = -1;
    +    while (element) {
    +      element = element.previousSibling;
    +      pos++;
    +    }
    +    return pos;
    +  }
    +
    +  /**
    +   * Remove the sorting indicator style from all headers.
    +   */
    +  function resetSortedStyle(table) {
    +    for (var c = table.tHead.firstChild.firstChild; c; c = c.nextSibling) {
    +      if (c.className) {
    +        if (c.className.indexOf('down ') == 0) {
    +          c.className = c.className.slice(5);
    +        }
    +        if (c.className.indexOf('up ') == 0) {
    +          c.className = c.className.slice(3);
    +        }
    +      }
    +    }
    +  }
    +
    +  window['initialSort'] = initialSort;
    +  window['toggleSort'] = toggleSort;
    +
    +})();
    diff --git a/job/jacoco/jacoco-resources/source.gif b/job/jacoco/jacoco-resources/source.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..b226e41c5276581db33d71525298ef572cc5d7ce
    GIT binary patch
    literal 354
    zcmZ?wbhEHb6krfwxXQrr`Rnf=KmWY@^y|~t-#>r-`SJ62+pK*(^ACOa@_X{KW3$$r
    zUbOlAiXE5N?74dH#gDtszu$lH{mGl3&)@xg`{~!`Z@=#VMPB~6_u~7*S3h2T`1$R}
    z?`Q9Re)#(P)3@JWfBgRb^LKTLe^s%6bxA;7sb4jaQ5?`-<<ng5TVLWgvEHM%)~l!1
    zYi_IS^d`3r{dQ}59F})EE$?<()ZzT#ME{lvwpTV~T-lU)Yj4ffO_~4y|7XAeia%Kx
    z85k@XbU-p7KQXY?ADC0%p(B)eLgkXi62W-^(!DQ#v2a~Gz-z9%&!+3h!38t#X02Ds
    zad;WPFvUVOY)YY2k84HG1kp%gVW!3wVI5ap$%?8ZHc4GqO=+PiQzvV>Y72H(vk7Xs
    us!1$fvP8{QU92ZrK%7tARasP&f6JDw8m_8J3W|I7DyXXX9C3DJum%7=h^`F)
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-resources/up.gif b/job/jacoco/jacoco-resources/up.gif
    new file mode 100644
    index 0000000000000000000000000000000000000000..58ed21660ec467736a4d2af17d91341f7cfb556c
    GIT binary patch
    literal 67
    zcmZ?wbhEHb<YC}qSjfcSX{EDa!-oH0p!k!8k&A(eL5G2Xk%5PSlYxOrWJ=;nroA^G
    Ub$^Kz-Nct)ygK&ScM%3_0PmU?SpWb4
    
    literal 0
    HcmV?d00001
    
    diff --git a/job/jacoco/jacoco-sessions.html b/job/jacoco/jacoco-sessions.html
    new file mode 100644
    index 000000000..894d3bc08
    --- /dev/null
    +++ b/job/jacoco/jacoco-sessions.html
    @@ -0,0 +1 @@
    +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="jacoco-resources/report.gif" type="image/gif"/><title>Sessions</title></head><body><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="jacoco-sessions.html" class="el_session">Sessions</a></span><a href="index.html" class="el_report">job</a> &gt; <span class="el_session">Sessions</span></div><h1>Sessions</h1><p>This coverage report is based on execution data from the following sessions:</p><table class="coverage" cellspacing="0"><thead><tr><td>Session</td><td>Start Time</td><td>Dump Time</td></tr></thead><tbody><tr><td><span class="el_session">Ben-NAVA-MacBook.local-1ed3c022</span></td><td>Jan 23, 2025, 7:24:40 AM</td><td>Jan 23, 2025, 7:26:52 AM</td></tr></tbody></table><p>Execution data for the following classes is considered in this report:</p><table class="coverage" cellspacing="0"><thead><tr><td>Class</td><td>Id</td></tr></thead><tbody><tr><td><span class="el_class">antlr.ANTLRHashString</span></td><td><code>d76aa1ad5b62e838</code></td></tr><tr><td><span class="el_class">antlr.ANTLRStringBuffer</span></td><td><code>7806c279d3bcbf3e</code></td></tr><tr><td><span class="el_class">antlr.ASTFactory</span></td><td><code>7989f35853accd26</code></td></tr><tr><td><span class="el_class">antlr.ASTNULLType</span></td><td><code>d47291a566b181bc</code></td></tr><tr><td><span class="el_class">antlr.ASTPair</span></td><td><code>80316eb7c8a5a5ad</code></td></tr><tr><td><span class="el_class">antlr.BaseAST</span></td><td><code>449d452f33186c07</code></td></tr><tr><td><span class="el_class">antlr.CharBuffer</span></td><td><code>a0d276baa559ff07</code></td></tr><tr><td><span class="el_class">antlr.CharQueue</span></td><td><code>8540ae9d969eeb2f</code></td></tr><tr><td><span class="el_class">antlr.CharScanner</span></td><td><code>56f15ad5a4b8eb8a</code></td></tr><tr><td><span class="el_class">antlr.CommonAST</span></td><td><code>9dc288ae08034869</code></td></tr><tr><td><span class="el_class">antlr.CommonToken</span></td><td><code>98b949a0512a2516</code></td></tr><tr><td><span class="el_class">antlr.InputBuffer</span></td><td><code>b96bb6e13302bae7</code></td></tr><tr><td><span class="el_class">antlr.LLkParser</span></td><td><code>65e451ee04157515</code></td></tr><tr><td><span class="el_class">antlr.LexerSharedInputState</span></td><td><code>7f5fa3eb9f80aaf8</code></td></tr><tr><td><span class="el_class">antlr.Parser</span></td><td><code>7481cdc68fe00a50</code></td></tr><tr><td><span class="el_class">antlr.ParserSharedInputState</span></td><td><code>2e2439f1fe8706b3</code></td></tr><tr><td><span class="el_class">antlr.Token</span></td><td><code>5d5e6af60c810abd</code></td></tr><tr><td><span class="el_class">antlr.TokenBuffer</span></td><td><code>06357553172d049a</code></td></tr><tr><td><span class="el_class">antlr.TokenQueue</span></td><td><code>e704550dbb5fccae</code></td></tr><tr><td><span class="el_class">antlr.TreeParser</span></td><td><code>c5c88caf78d83223</code></td></tr><tr><td><span class="el_class">antlr.TreeParserSharedInputState</span></td><td><code>b8440fa651b94ccb</code></td></tr><tr><td><span class="el_class">antlr.collections.impl.ASTArray</span></td><td><code>4f3f22b37acb0b0d</code></td></tr><tr><td><span class="el_class">antlr.collections.impl.BitSet</span></td><td><code>9f70d77fe784bf79</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirContext</span></td><td><code>920335dcc384caed</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum</span></td><td><code>529f387463eddd4b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.Dstu3Version</span></td><td><code>206c3771ad335f5d</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R4BVersion</span></td><td><code>cead3c1998e81dbb</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R4Version</span></td><td><code>af68dcc5764e422b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R5Version</span></td><td><code>6b6026857864d559</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.Version</span></td><td><code>14ff6dfe353dfc22</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.ParserOptions</span></td><td><code>7254e61c078eb304</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.api.AddProfileTagEnum</span></td><td><code>7a131104da47190d</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.i18n.HapiLocalizer</span></td><td><code>6664da8ad565afd5</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum</span></td><td><code>6fa165fa561288a9</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.1</span></td><td><code>13775c92c249c8f4</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.2</span></td><td><code>3f440233d2aceb79</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.3</span></td><td><code>57f0c4ea2e117b89</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.4</span></td><td><code>fb67eea1ea7ef1ed</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.5</span></td><td><code>9771be451acef3cd</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.6</span></td><td><code>a21b64149545a579</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.LenientErrorHandler</span></td><td><code>bc0e5bbb20321029</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.ParseErrorHandler</span></td><td><code>6cac521d656a15fd</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.StrictErrorHandler</span></td><td><code>683b9a6e2ecb796a</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.system.HapiSystemProperties</span></td><td><code>f8374a0fb8e32a7b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.util.VersionUtil</span></td><td><code>dcffe9ba9e2c00d6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.Level</span></td><td><code>e2155b45608f35d7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.Logger</span></td><td><code>f35d4d4ad6b0173a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.LoggerContext</span></td><td><code>d057ce3cea631d6b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.PatternLayout</span></td><td><code>6b4fcc6f23c89763</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.encoder.PatternLayoutEncoder</span></td><td><code>b5df0ef8a1a735ea</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.JoranConfigurator</span></td><td><code>63bb214e0f720ae8</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ConfigurationAction</span></td><td><code>90d861250f52b75f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ConsolePluginAction</span></td><td><code>2969e4b8b532cec5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ContextNameAction</span></td><td><code>4ffd1a75c51a473f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.EvaluatorAction</span></td><td><code>cc2e7d3c2fc18087</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.InsertFromJNDIAction</span></td><td><code>fce902dbb9dbd2a7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.JMXConfiguratorAction</span></td><td><code>a58b513df0924938</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LevelAction</span></td><td><code>8f89eefaf59271f1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LoggerAction</span></td><td><code>8d55f78fdf86cda9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LoggerContextListenerAction</span></td><td><code>835263a7d9309be9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ReceiverAction</span></td><td><code>9e9bd00760b812f2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.RootLoggerAction</span></td><td><code>0528540059645c3d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.jul.JULHelper</span></td><td><code>e4fe9aef50196332</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.jul.LevelChangePropagator</span></td><td><code>3d39cb08e2dd1f04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ClassicConverter</span></td><td><code>78403f02659989af</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.DateConverter</span></td><td><code>5c52dc34531b028d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.EnsureExceptionHandling</span></td><td><code>f9c97b8da786f083</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LevelConverter</span></td><td><code>05b4415a3dbcaaf4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LineSeparatorConverter</span></td><td><code>2e2dc69c3bdc6cd3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LoggerConverter</span></td><td><code>e250f04c84d66501</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.MessageConverter</span></td><td><code>ef2f64b51bca1aac</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.NamedConverter</span></td><td><code>2d8a1e4cd16b9929</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.TargetLengthBasedClassNameAbbreviator</span></td><td><code>ec60b2fb41d57b0a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThreadConverter</span></td><td><code>a95aaedda263355c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThrowableHandlingConverter</span></td><td><code>266cc4ca75fcd39d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThrowableProxyConverter</span></td><td><code>46dc88ad0c97e462</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.selector.DefaultContextSelector</span></td><td><code>fd861e3242ccff2f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.sift.SiftAction</span></td><td><code>9f73df3037d696a7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.EventArgUtil</span></td><td><code>88f3990bf293da69</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.LoggerContextVO</span></td><td><code>ecac106025bca4a3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.LoggingEvent</span></td><td><code>75c5fe4974050a6f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.PlatformInfo</span></td><td><code>0e826c07ba59ae45</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.TurboFilterList</span></td><td><code>aa3cf39d0c0c651e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.turbo.TurboFilter</span></td><td><code>b799953481df4445</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.ContextInitializer</span></td><td><code>f560906e9553d69f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.ContextSelectorStaticBinder</span></td><td><code>271bbf6fa66123b1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.DefaultNestedComponentRules</span></td><td><code>840b992fa00c7e60</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.EnvUtil</span></td><td><code>39b5543082458460</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.LogbackMDCAdapter</span></td><td><code>a05682a253fd41d4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.LoggerNameUtil</span></td><td><code>b8d88c97a0cadcfa</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.BasicStatusManager</span></td><td><code>f42ab87c1f66e222</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.ConsoleAppender</span></td><td><code>d101474cda5e45c9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.ContextBase</span></td><td><code>707ceedbd09855e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.CoreConstants</span></td><td><code>09363a83cd5b4101</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.LayoutBase</span></td><td><code>e6bfd3b1edc3ab01</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.LifeCycleManager</span></td><td><code>72cb4d8e47a5b7ac</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.OutputStreamAppender</span></td><td><code>79e07918442741f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.UnsynchronizedAppenderBase</span></td><td><code>0672be5753362c70</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.encoder.EncoderBase</span></td><td><code>f2507a7276f26c10</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.encoder.LayoutWrappingEncoder</span></td><td><code>6c80790d34287d6b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.helpers.CyclicBuffer</span></td><td><code>422c7b9f7318f10a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.GenericConfigurator</span></td><td><code>3f448ac12ab6a263</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.JoranConfiguratorBase</span></td><td><code>38c4decb94b320f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AbstractEventEvaluatorAction</span></td><td><code>bf3cf252a2822906</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.Action</span></td><td><code>7cf2d4f3569d0788</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AppenderAction</span></td><td><code>22c3c549e13663a1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AppenderRefAction</span></td><td><code>3c0bd482c9925292</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ContextPropertyAction</span></td><td><code>4d47e7c289aa172b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ConversionRuleAction</span></td><td><code>6ad21d1237f36c71</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.DefinePropertyAction</span></td><td><code>3d08042673a6e5dc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IADataForBasicProperty</span></td><td><code>cbe844e4f3903797</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IADataForComplexProperty</span></td><td><code>9b210f34ec734f9e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ImplicitAction</span></td><td><code>86dae105afebc13c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IncludeAction</span></td><td><code>2775b098b6b111dc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NOPAction</span></td><td><code>69348e8c62d1a733</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedBasicPropertyIA</span></td><td><code>89ed90b29bc14f36</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedBasicPropertyIA.1</span></td><td><code>08e44e1168d7ea7b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedComplexPropertyIA</span></td><td><code>178aace2d0448f6a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedComplexPropertyIA.1</span></td><td><code>5160250e9b77af57</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NewRuleAction</span></td><td><code>265aa9ab808da62d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ParamAction</span></td><td><code>ad2376677140dcb4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.PropertyAction</span></td><td><code>81b578f6564d00a1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ShutdownHookAction</span></td><td><code>e67fa543b234ff0d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.StatusListenerAction</span></td><td><code>4cf479b0b81398f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.TimestampAction</span></td><td><code>d7a48c3648a91ea8</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ElseAction</span></td><td><code>fe56c4a40374cd79</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.IfAction</span></td><td><code>87c92d3efc3996c9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ThenAction</span></td><td><code>dd7886fdda1bb93e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ThenOrElseActionBase</span></td><td><code>9e00d4141028a50c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.BodyEvent</span></td><td><code>0c8f2f07c6888bab</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.EndEvent</span></td><td><code>0c2e1da47ad508cc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.SaxEvent</span></td><td><code>80662212b5cc3b53</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.SaxEventRecorder</span></td><td><code>639eb66c9ea90531</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.StartEvent</span></td><td><code>914de9498a78076d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.CAI_WithLocatorSupport</span></td><td><code>f96b1cd7be830663</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConfigurationWatchList</span></td><td><code>fba78df767e05182</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget</span></td><td><code>6e2cdd5051fbf329</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget.1</span></td><td><code>9612187e03729cd5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget.2</span></td><td><code>ea3332451607183e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.DefaultNestedComponentRegistry</span></td><td><code>f3ac4f0369a959d6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ElementPath</span></td><td><code>ab4711e5039d31b0</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ElementSelector</span></td><td><code>605584d4fe3a6b67</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.EventPlayer</span></td><td><code>739ef0261c196bb2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.HostClassAndPropertyDouble</span></td><td><code>199aef84b04dd48c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.InterpretationContext</span></td><td><code>ce4c00a894617c6e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.Interpreter</span></td><td><code>634fa7d2dde257a5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.NoAutoStartUtil</span></td><td><code>6fe8a98ba9c5ce85</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.SimpleRuleStore</span></td><td><code>19c383749dc55e01</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.ConfigurationWatchListUtil</span></td><td><code>a35db514967601cf</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.PropertySetter</span></td><td><code>8f7e7385541ef400</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.StringToObjectConverter</span></td><td><code>2e393f7832702c3f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescription</span></td><td><code>a249e33828fc438a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescriptionCache</span></td><td><code>9d679b6b2b24c9f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescriptionFactory</span></td><td><code>1abb714ec36ec08c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanUtil</span></td><td><code>889c2d82913f56d3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.net.ssl.SSLNestedComponentRegistryRules</span></td><td><code>cdeda61b0c175e73</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.Converter</span></td><td><code>925f6cb417029041</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.ConverterUtil</span></td><td><code>dd9b10877d49fdef</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.DynamicConverter</span></td><td><code>66d903dd096314f6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.FormatInfo</span></td><td><code>875526d52e168bcb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.FormattingConverter</span></td><td><code>c3110b5495da3c0a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.LiteralConverter</span></td><td><code>65b2e319699170e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.PatternLayoutBase</span></td><td><code>a804a6743796ed4f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.PatternLayoutEncoderBase</span></td><td><code>8869b320200d58ca</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.SpacePadder</span></td><td><code>e82e4efc2cb997cb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Compiler</span></td><td><code>1c6d6460ba38602b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.FormattingNode</span></td><td><code>c1ea708a78deec04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Node</span></td><td><code>6c2db44212d84b68</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.OptionTokenizer</span></td><td><code>b9b225507c800bd5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Parser</span></td><td><code>7b1aef016f4f95f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.SimpleKeywordNode</span></td><td><code>f700f290325e600d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Token</span></td><td><code>4f7e433507e860ed</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream</span></td><td><code>b0bdcf4b6e0f87aa</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream.1</span></td><td><code>fd95c0c735fd0ef7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream.TokenizerState</span></td><td><code>3467111fb3bf68e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.AsIsEscapeUtil</span></td><td><code>59f6b4aeb7076212</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.RegularEscapeUtil</span></td><td><code>1cc07c8d9d362995</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.RestrictedEscapeUtil</span></td><td><code>05ac894407a1822b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.AppenderAttachableImpl</span></td><td><code>356e7661a1308dba</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.ContextAwareBase</span></td><td><code>507768fbb8be644f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.ContextAwareImpl</span></td><td><code>e054ab71d51b27ec</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.FilterAttachableImpl</span></td><td><code>e0d2c4e50fd975d2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.FilterReply</span></td><td><code>8ffb0681c411c96a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.LogbackLock</span></td><td><code>b3b7af385a799776</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.InfoStatus</span></td><td><code>1d3c0987bb0ffe10</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.StatusBase</span></td><td><code>7c1cffd1a9986020</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.StatusUtil</span></td><td><code>b5fec2971e383d38</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Node</span></td><td><code>173ef78e5278fe04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Node.Type</span></td><td><code>b8a40f4b8fbe988c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.NodeToStringTransformer</span></td><td><code>1e8620cc7b5415cb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.NodeToStringTransformer.1</span></td><td><code>5967309dea3614e0</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Parser</span></td><td><code>c06549d7b1e1487d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Parser.1</span></td><td><code>78a0480962b020ea</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Token</span></td><td><code>3f38da4ca554aafd</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Token.Type</span></td><td><code>d037d0aeea85e517</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer</span></td><td><code>6a388c818909b082</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer.1</span></td><td><code>5446562f97e885f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer.TokenizerState</span></td><td><code>a43d7665d3995d51</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.AggregationType</span></td><td><code>e82dcae26638e651</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.COWArrayList</span></td><td><code>fd4fbd3c0c90c052</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.CachingDateFormatter</span></td><td><code>371338e1c1d98e24</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.EnvUtil</span></td><td><code>adc66c330ddaa6c4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.Loader</span></td><td><code>6a7f26fdd43cf12b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.Loader.1</span></td><td><code>d6e48f075e51e44b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.OptionHelper</span></td><td><code>ed7183d6bad9d2a9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.StatusListenerConfigHelper</span></td><td><code>b3e50ff76e275069</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.StatusPrinter</span></td><td><code>04fef78263405164</code></td></tr><tr><td><span class="el_class">com.amazonaws.AmazonClientException</span></td><td><code>00f67ea2e30d1fe0</code></td></tr><tr><td><span class="el_class">com.amazonaws.AmazonWebServiceClient</span></td><td><code>6c90f6c5c0b70a0b</code></td></tr><tr><td><span class="el_class">com.amazonaws.ApacheHttpClientConfig</span></td><td><code>e728233df6adc5a5</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfiguration</span></td><td><code>8c113475ededcc0e</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfiguration.URLHolder</span></td><td><code>c259a89178b48b47</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfigurationFactory</span></td><td><code>5fc1946ff14b02be</code></td></tr><tr><td><span class="el_class">com.amazonaws.PredefinedClientConfigurations</span></td><td><code>c2b70629afbad78d</code></td></tr><tr><td><span class="el_class">com.amazonaws.Protocol</span></td><td><code>04209f7a4c9963ee</code></td></tr><tr><td><span class="el_class">com.amazonaws.SDKGlobalConfiguration</span></td><td><code>dc56713ce11b6b64</code></td></tr><tr><td><span class="el_class">com.amazonaws.SDKGlobalTime</span></td><td><code>cd4f960fefaf3c59</code></td></tr><tr><td><span class="el_class">com.amazonaws.SdkBaseException</span></td><td><code>a04c4b428f97519d</code></td></tr><tr><td><span class="el_class">com.amazonaws.SdkClientException</span></td><td><code>cca3e1cf70b4af90</code></td></tr><tr><td><span class="el_class">com.amazonaws.ServiceNameFactory</span></td><td><code>9fb00f04f82d3641</code></td></tr><tr><td><span class="el_class">com.amazonaws.SystemDefaultDnsResolver</span></td><td><code>f58982fbf2b8a965</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AWS4Signer</span></td><td><code>59113c23b269286b</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AWSCredentialsProviderChain</span></td><td><code>f236176d1501733b</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AbstractAWSSigner</span></td><td><code>f1e3ed0b6aabb39a</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AbstractAWSSigner.1</span></td><td><code>cb71b2656c8b19ff</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.BaseCredentialsFetcher</span></td><td><code>5b54596ed5cb91d9</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.DefaultAWSCredentialsProviderChain</span></td><td><code>131622dcc4220685</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.EC2ContainerCredentialsProviderWrapper</span></td><td><code>e4b0d9a12cf77928</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.EnvironmentVariableCredentialsProvider</span></td><td><code>54055d176153de40</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.InstanceMetadataServiceCredentialsFetcher</span></td><td><code>1c385f5849fd9976</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.InstanceProfileCredentialsProvider</span></td><td><code>488f0b5fddd734c2</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock</span></td><td><code>0839e31455fed526</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock.1</span></td><td><code>706c69c5890d8174</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock.Instance</span></td><td><code>fde0e997c5029975</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SignerFactory</span></td><td><code>ba475501c7fcaab6</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SystemPropertiesCredentialsProvider</span></td><td><code>fe7232234903690c</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.WebIdentityTokenCredentialsProvider</span></td><td><code>28395bc59f9c5547</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.WebIdentityTokenCredentialsProvider.BuilderImpl</span></td><td><code>fd5bef4b94fe1d1f</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.ProfileCredentialsProvider</span></td><td><code>7f1267005ae3b4ce</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.ProfilesConfigFile</span></td><td><code>ce8d1ae452076e7a</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AbstractProfilesConfigFileScanner</span></td><td><code>7adfe687fd97689d</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AllProfiles</span></td><td><code>b2c51a9c0ab35a40</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AwsProfileNameLoader</span></td><td><code>c1b3df508434d008</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfile</span></td><td><code>e64d4831ab4931b4</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigFileLoader</span></td><td><code>430f6aa8dfb157e8</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigLoader</span></td><td><code>873e9b6636ed57dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigLoader.ProfilesConfigFileLoaderHelper</span></td><td><code>53c725885b295920</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.RoleInfo</span></td><td><code>ffadb47684249aa7</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.STSProfileCredentialsServiceLoader</span></td><td><code>2541a60f72a5faf2</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.STSProfileCredentialsServiceProvider</span></td><td><code>0ead40f572688387</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.AwsAsyncClientParams</span></td><td><code>5c143935b5c7be1b</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.AwsSyncClientParams</span></td><td><code>171521cfec2938d9</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AdvancedConfig</span></td><td><code>c0b33a1cf8a93861</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AdvancedConfig.Builder</span></td><td><code>5bc3476a3dcef070</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsAsyncClientBuilder</span></td><td><code>e7479b21a1aa800d</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsAsyncClientBuilder.AsyncBuilderParams</span></td><td><code>ec906f1119fda6a2</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsClientBuilder</span></td><td><code>f6f27cdef72cdcda</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsClientBuilder.SyncBuilderParams</span></td><td><code>8ef5917883fcf085</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsSyncClientBuilder</span></td><td><code>90e8e9b43a4c4f9e</code></td></tr><tr><td><span class="el_class">com.amazonaws.handlers.HandlerChainFactory</span></td><td><code>8051b5182f7c5f0a</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.AbstractFileTlsKeyManagersProvider</span></td><td><code>bf583bfeddb239fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.AmazonHttpClient</span></td><td><code>7bf8cc2b461cabc1</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.DelegatingDnsResolver</span></td><td><code>d4c38858e935038d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.IdleConnectionReaper</span></td><td><code>424ca13d8fe330f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.SystemPropertyTlsKeyManagersProvider</span></td><td><code>610468f086a4a0fa</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.ApacheConnectionManagerFactory</span></td><td><code>99939987f9e41eab</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.ApacheHttpClientFactory</span></td><td><code>d0b07424b456f11a</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.CRC32ChecksumResponseInterceptor</span></td><td><code>7e82aa2941340a1d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.SdkHttpClient</span></td><td><code>31aa42e02e780d90</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory</span></td><td><code>31fadbb62829aa59</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ClientConnectionManagerFactory</span></td><td><code>030a683d8587a68f</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ClientConnectionManagerFactory.Handler</span></td><td><code>fe03e755ee1a6a17</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.SdkConnectionKeepAliveStrategy</span></td><td><code>088eba8f183db760</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.SdkPlainSocketFactory</span></td><td><code>52fd3bb248a215fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators</span></td><td><code>a9d035bbbc1e0f03</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators.1</span></td><td><code>c2c1bdcb1f6c2dc0</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators.NoOpMasterSecretValidator</span></td><td><code>975b0415ba9cf4fc</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.SdkTLSSocketFactory</span></td><td><code>7d770b60b5ee06cf</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.ShouldClearSslSessionPredicate</span></td><td><code>3b1b52ff976ae084</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.protocol.SdkHttpRequestExecutor</span></td><td><code>449bf607c9ac5b59</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.settings.HttpClientSettings</span></td><td><code>a653271ecfc0ba6d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.timers.client.ClientExecutionTimer</span></td><td><code>524b75ecc0f5b4e4</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.timers.request.HttpRequestTimer</span></td><td><code>16a8acdd12a80388</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.BoundedLinkedHashMap</span></td><td><code>55909b71c2f8eeb3</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ConnectionUtils</span></td><td><code>5592be9fce242b67</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ConnectionUtils.ConnectionUtilsSingletonHolder</span></td><td><code>b714a663d8fe9d85</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.DefaultServiceEndpointBuilder</span></td><td><code>59622524266ed32e</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.EC2ResourceFetcher</span></td><td><code>8a0ab75c0e33d738</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.FIFOCache</span></td><td><code>f6223023eea6d889</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.InstanceMetadataServiceResourceFetcher</span></td><td><code>531ae9f9b17030e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.InstanceMetadataServiceResourceFetcher.InstanceMetadataServiceResourceFetcherHolder</span></td><td><code>ed32bcb034e8cc79</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkPredicate</span></td><td><code>b14f0277a22127d3</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkRequestRetryHeaderProvider</span></td><td><code>22ccf4c8c9e33403</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkSSLContext</span></td><td><code>2befe09aa7242430</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkThreadLocalsRegistry</span></td><td><code>d2a0d0769200594c</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ServiceEndpointBuilder</span></td><td><code>535dc13648c86128</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.TokenBucket</span></td><td><code>412df386eac06663</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.TokenBucket.DefaultClock</span></td><td><code>986e065ed0db433d</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.auth.DefaultSignerProvider</span></td><td><code>733d2df2126a4eb5</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.auth.SignerProvider</span></td><td><code>c8e2d101906e9f62</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.EndpointDiscoveryConfig</span></td><td><code>e74fbff062a27e71</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HostRegexToRegionMapping</span></td><td><code>36bd88ac82b5249a</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HostRegexToRegionMappingJsonHelper</span></td><td><code>846b6d5521828bec</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HttpClientConfig</span></td><td><code>7fe5e7586b9fbf92</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HttpClientConfigJsonHelper</span></td><td><code>3572a56d7c225b09</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfig</span></td><td><code>2704931801ead69d</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfig.Factory</span></td><td><code>d49cf8422a0ab193</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfigJsonHelper</span></td><td><code>e80d45fdf7cd9c44</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.JsonIndex</span></td><td><code>de3d1cd278f97223</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.SignerConfig</span></td><td><code>13e7426695ea5b81</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.SignerConfigJsonHelper</span></td><td><code>9b3ed2296ad90127</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.MBeans</span></td><td><code>962842e0db948a50</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.SdkMBeanRegistrySupport</span></td><td><code>d6ba1fa71d047943</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.spi.SdkMBeanRegistry.Factory</span></td><td><code>36fae368d14966ae</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.CommonsLog</span></td><td><code>452cf30d2df1136e</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.CommonsLogFactory</span></td><td><code>48871b7358fe6738</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.InternalLog</span></td><td><code>058d42b68cb96a33</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.InternalLogFactory</span></td><td><code>80f7424300ab407a</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.JulLog</span></td><td><code>96b7b30814dc6ca6</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.JulLogFactory</span></td><td><code>77ef6caa873fefed</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.AwsSdkMetrics</span></td><td><code>e017a151c7bdcc4b</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.AwsSdkMetrics.MetricRegistry</span></td><td><code>b50327a1f3694067</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.MetricAdmin</span></td><td><code>67ee0c35312d98d4</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.SimpleMetricType</span></td><td><code>ef6c926611742290</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.CsmConfigurationProviderChain</span></td><td><code>29d73c727292b9f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.DefaultCsmConfigurationProviderChain</span></td><td><code>82ecb0e6dfe398b1</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.EnvironmentVariableCsmConfigurationProvider</span></td><td><code>c5d577529eb87c71</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.ProfileCsmConfigurationProvider</span></td><td><code>7e08d1e0639da907</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.SystemPropertyCsmConfigurationProvider</span></td><td><code>07c37250c3b97646</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionMetadataProvider</span></td><td><code>e931480214eb0c0f</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionRegionImpl</span></td><td><code>0a2583a2117011f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionsLoader</span></td><td><code>37e3a9d4944efcf3</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.CredentialScope</span></td><td><code>3121429d8a2741d2</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Endpoint</span></td><td><code>ef195f6d65e7d99c</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Partition</span></td><td><code>c0e1819b06f325e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Partitions</span></td><td><code>9ddb37b7811333e2</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Region</span></td><td><code>5b14165097bd9694</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Service</span></td><td><code>e4b63455dffa3347</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsDirectoryBasePathProvider</span></td><td><code>66c51f7011e0bff0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsProfileFileLocationProvider</span></td><td><code>4d296960a1e9e0dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsProfileFileLocationProviderChain</span></td><td><code>c4a28f0ff52607b0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.config.ConfigEnvVarOverrideLocationProvider</span></td><td><code>9ad04cae49945420</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.config.SharedConfigDefaultLocationProvider</span></td><td><code>7263a778761b5193</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsDefaultLocationProvider</span></td><td><code>92b8a4b3a5f02919</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsEnvVarOverrideLocationProvider</span></td><td><code>a8935b0adc2a04e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsLegacyConfigLocationProvider</span></td><td><code>65d108782cc221af</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AbstractRegionMetadataProvider</span></td><td><code>9ec233df55bcef70</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsEnvVarOverrideRegionProvider</span></td><td><code>0d479bcab48ccff0</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsProfileRegionProvider</span></td><td><code>a85451b6639b9b93</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsRegionProvider</span></td><td><code>eba3622ab12edbb9</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsRegionProviderChain</span></td><td><code>67cce1f7e4eb0581</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsSystemPropertyRegionProvider</span></td><td><code>7477a3eb04e752ba</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.DefaultAwsRegionProviderChain</span></td><td><code>deb3928428940202</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.EndpointToRegion</span></td><td><code>6c48a64d655d3b49</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.EndpointToRegion.RegionOrRegionName</span></td><td><code>13ceb3a288610b9b</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.InstanceMetadataRegionProvider</span></td><td><code>5dd21d82290ab7f4</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.LegacyRegionXmlMetadataBuilder</span></td><td><code>3c9456e9fa9f902c</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.MetadataSupportedRegionFromEndpointProvider</span></td><td><code>8915f8673f8b37a4</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.Region</span></td><td><code>116a053783b45192</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionMetadata</span></td><td><code>34469e76dab70ea3</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionMetadataFactory</span></td><td><code>1cfcfcac5741643c</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionUtils</span></td><td><code>e3536e1fcb617990</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.Regions</span></td><td><code>c4a5651105f2691d</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.ClockSkewAdjuster</span></td><td><code>81ca73c997b86305</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.EqualJitterBackoffStrategy</span></td><td><code>5b1eb75d4343ac9d</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.FullJitterBackoffStrategy</span></td><td><code>5aaef3317650c7f2</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.SDKDefaultBackoffStrategy</span></td><td><code>047b21a6a17a10f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies</span></td><td><code>9d5431c25ea84254</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies.1</span></td><td><code>8da6f31ad44996fc</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies.SDKDefaultRetryCondition</span></td><td><code>74d4652d431d0a48</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryMode</span></td><td><code>d06cab468428df98</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy</span></td><td><code>6a4bafcff687c8da</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.BackoffStrategy</span></td><td><code>a8f89736179524bf</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.BackoffStrategy.1</span></td><td><code>0e567d224199fb96</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.RetryCondition</span></td><td><code>582fd7dd1407b948</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.RetryCondition.1</span></td><td><code>e0d8c9746c417e9e</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicyAdapter</span></td><td><code>f2f3b4974617a6f3</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.V2CompatibleBackoffStrategyAdapter</span></td><td><code>8414fa97290f5061</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.internal.MaxAttemptsResolver</span></td><td><code>f2c8b76ff90668fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.internal.RetryModeResolver</span></td><td><code>15570e943401c7b3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Builder</span></td><td><code>a9068fe55398663f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Builder.1</span></td><td><code>69c64866a23fc9c5</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Client</span></td><td><code>3faf7ad7b43b6b06</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Client.1</span></td><td><code>79eba4b3587d0b7b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientBuilder</span></td><td><code>30641d2100c9ba98</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientConfigurationFactory</span></td><td><code>8ce28080ff243529</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientParams</span></td><td><code>136e214657b43c0f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientParamsWrapper</span></td><td><code>b19f2f97cb011990</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3ClientOptions</span></td><td><code>b9558b36a36be046</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3ClientOptions.Builder</span></td><td><code>a2d783fe13916f76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3CredentialsProviderChain</span></td><td><code>756da7e0702846db</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.AWSS3V4Signer</span></td><td><code>bae8808ecefcecdf</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.AbstractS3ResponseHandler</span></td><td><code>3f6efa5c0ff2c6b0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.CompleteMultipartUploadRetryCondition</span></td><td><code>0614987f88860c50</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.CompleteMultipartUploadRetryablePredicate</span></td><td><code>6758e14397138a46</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.RegionalEndpointsOptionResolver</span></td><td><code>31a0d88d549a9d57</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.RegionalEndpointsOptionResolver.Option</span></td><td><code>c4c5e5993703f9cb</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.S3ErrorResponseHandler</span></td><td><code>49fac0b39ce87783</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.S3XmlResponseHandler</span></td><td><code>077caa9361b64640</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.ServiceUtils</span></td><td><code>181c64d92ef58fb0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.SkipMd5CheckStrategy</span></td><td><code>4c4fd16436b41da3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.UseArnRegionResolver</span></td><td><code>8d66ef9be551f835</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.auth.S3SignerProvider</span></td><td><code>c03097ed7ba5957c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric</span></td><td><code>63e7bcd3153b8347</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.1</span></td><td><code>24f40b907e145c05</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.2</span></td><td><code>83f4169b1edc5949</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.S3ThroughputMetric</span></td><td><code>d4ee86ac919dcaa8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.model.transform.BucketConfigurationXmlFactory</span></td><td><code>3173faffce81bf4d</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.model.transform.RequestPaymentConfigurationXmlFactory</span></td><td><code>9c5fcd3ab01de922</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSAsyncClient</span></td><td><code>35088a92f970a59b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSAsyncClientBuilder</span></td><td><code>ec373089e82aa03f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSClient</span></td><td><code>e55d00bcc3a2cc59</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SignatureVerifier</span></td><td><code>c14e288a5836a2e8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SigningCertUrlVerifier</span></td><td><code>2300334f77dce74d</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageManager</span></td><td><code>10a604e09a24b2aa</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageManager.1</span></td><td><code>ecc3fa526d9bdf3c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageUnmarshaller</span></td><td><code>e26b79dfd5c64a29</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.AuthorizationErrorExceptionUnmarshaller</span></td><td><code>1cdd0528f8543041</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.BatchEntryIdsNotDistinctExceptionUnmarshaller</span></td><td><code>a76e943fdd049c12</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.BatchRequestTooLongExceptionUnmarshaller</span></td><td><code>cbf8a4a342cefd77</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ConcurrentAccessExceptionUnmarshaller</span></td><td><code>c0555a51a2e65b44</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.EmptyBatchRequestExceptionUnmarshaller</span></td><td><code>743ef12738cdddcd</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.EndpointDisabledExceptionUnmarshaller</span></td><td><code>a597b4b0677c1ad4</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.FilterPolicyLimitExceededExceptionUnmarshaller</span></td><td><code>e81c3f961018913b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InternalErrorExceptionUnmarshaller</span></td><td><code>e10d40ca110c5cc2</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidBatchEntryIdExceptionUnmarshaller</span></td><td><code>94f279df78870159</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidParameterExceptionUnmarshaller</span></td><td><code>11b97fd77f2e1594</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidParameterValueExceptionUnmarshaller</span></td><td><code>cdd2c287da8201bc</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidSecurityExceptionUnmarshaller</span></td><td><code>1a41fda4e922cae6</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSAccessDeniedExceptionUnmarshaller</span></td><td><code>7f5c0f3345bf5c76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSDisabledExceptionUnmarshaller</span></td><td><code>9ef24849e4fe5f76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSInvalidStateExceptionUnmarshaller</span></td><td><code>915682984af74d22</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSNotFoundExceptionUnmarshaller</span></td><td><code>4b394354d937f041</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSOptInRequiredExceptionUnmarshaller</span></td><td><code>80213a1d8beec138</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSThrottlingExceptionUnmarshaller</span></td><td><code>bac03462b4b017de</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.NotFoundExceptionUnmarshaller</span></td><td><code>de1c884399187efd</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.OptedOutExceptionUnmarshaller</span></td><td><code>b292746c8e03f543</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.PlatformApplicationDisabledExceptionUnmarshaller</span></td><td><code>fdde9e1ff43a3bf3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ResourceNotFoundExceptionUnmarshaller</span></td><td><code>3dd4cc2bd9ec6692</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.StaleTagExceptionUnmarshaller</span></td><td><code>f558b1e319e95c16</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.SubscriptionLimitExceededExceptionUnmarshaller</span></td><td><code>f85b3f383a120084</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TagLimitExceededExceptionUnmarshaller</span></td><td><code>d1701deb0578561f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TagPolicyExceptionUnmarshaller</span></td><td><code>25f1e5391788a27e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ThrottledExceptionUnmarshaller</span></td><td><code>29dc82c111b74c4c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TooManyEntriesInBatchRequestExceptionUnmarshaller</span></td><td><code>a69b5646bccffca8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TopicLimitExceededExceptionUnmarshaller</span></td><td><code>eb13861cee01463f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.UserErrorExceptionUnmarshaller</span></td><td><code>4d50057c6de58c7e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ValidationExceptionUnmarshaller</span></td><td><code>820f668237e2bbef</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.VerificationExceptionUnmarshaller</span></td><td><code>e2832c82d93322e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker</span></td><td><code>4efd20ae108588d2</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker.1</span></td><td><code>a672d14b3992c26b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker.2</span></td><td><code>345ac8a4ae22630e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sqs.AmazonSQSAsync.MockitoMock.EhvzUCQq</span></td><td><code>a7827ec19431af94</code></td></tr><tr><td><span class="el_class">com.amazonaws.transform.AbstractErrorUnmarshaller</span></td><td><code>c2e1cfe910397389</code></td></tr><tr><td><span class="el_class">com.amazonaws.transform.StandardErrorUnmarshaller</span></td><td><code>08eb31d653db7ff8</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AWSRequestMetrics.Field</span></td><td><code>e2ad48c283d34479</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AWSServiceMetrics</span></td><td><code>4dfabdd007c0dae9</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AwsHostNameUtils</span></td><td><code>0c2936fad2175318</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Base16Codec</span></td><td><code>1d627ed666f922f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Base16Lower</span></td><td><code>d99355150bb1396c</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.BinaryUtils</span></td><td><code>44398a0d8aedcf5b</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.CapacityManager</span></td><td><code>2128ccc612ab32dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ClassLoaderHelper</span></td><td><code>6501e49befb3996e</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Classes</span></td><td><code>778598068fa90110</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.CodecUtils</span></td><td><code>ef8e08cde07c2cff</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.DateUtils</span></td><td><code>aae53c2b4d70eea4</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.IOUtils</span></td><td><code>ba1d5fb88de49026</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser</span></td><td><code>f2cfacbe49b47c45</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser.JavaVersion</span></td><td><code>b1dbe698e47e7461</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser.KnownJavaVersions</span></td><td><code>da60a97d7da6a4e5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.NumberUtils</span></td><td><code>2d5d785083bf6d27</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ResponseMetadataCache</span></td><td><code>9d98adf5666b9bd5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ResponseMetadataCache.InternalCache</span></td><td><code>46193684640d95ee</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.RuntimeHttpUtils</span></td><td><code>763e125900674e61</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.SdkHttpUtils</span></td><td><code>53cb059ed9f66ab5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.StringUtils</span></td><td><code>61348596f1a972f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ValidationUtils</span></td><td><code>2f7a173706ee0e64</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.VersionInfoUtils</span></td><td><code>16e695e19b6beefd</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.diff.compare.SynonymComparator</span></td><td><code>30b2848340ec288b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.markunused.change.MarkUnusedGenerator</span></td><td><code>321553fc4d3c7403</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.SynonymSnapshotGenerator</span></td><td><code>f07e6a7a575820ae</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.change.CreateSynonymGenerator</span></td><td><code>03727f454076a16d</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.change.DropSynonymGenerator</span></td><td><code>47cc14565e4991d4</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.LiquibaseProConfiguration</span></td><td><code>d80d1c63a88c0c09</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.NativeExecutorConfiguration</span></td><td><code>39411b4f8f6cb73e</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.SqlcmdConfiguration</span></td><td><code>83bddaba4d609224</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.SqlplusConfiguration</span></td><td><code>098739b664136be7</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.license.LicenseCheckingSnapshotGenerator</span></td><td><code>34f815a46961a7bb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.AbstractStoredDatabaseLogicSnapshotGenerator</span></td><td><code>a2187665baa2f0cb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.StoredLogicComparator</span></td><td><code>50cc3399151fafce</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.CheckConstraintComparator</span></td><td><code>6ac68818d4a1a0bc</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.CheckConstraintSnapshotGenerator</span></td><td><code>17d01a400cba022b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.AddCheckConstraintGenerator</span></td><td><code>803cac40ff44d151</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.DisableCheckConstraintGenerator</span></td><td><code>320245b86e830d9b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.DropCheckConstraintGenerator</span></td><td><code>1c6bc0614a84d7d2</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.EnableCheckConstraintGenerator</span></td><td><code>b031d34bb5652382</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.postgres.PostgresCheckConstraintSnapshotGenerator</span></td><td><code>d9da95a256f53bfb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.PackageBodySnapshotGenerator</span></td><td><code>aff58d1bf5c8ec3b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.PackageSnapshotGenerator</span></td><td><code>dbf97152bea55870</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.CreatePackageBodyGenerator</span></td><td><code>2a94534d6b3d8eaf</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.CreatePackageGenerator</span></td><td><code>da347d76e3f01499</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.DropPackageBodyGenerator</span></td><td><code>807236b4bf618bf1</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.DropPackageGenerator</span></td><td><code>219ebade501c89fe</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.FunctionSnapshotGenerator</span></td><td><code>00a58d2cfe273b6b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.change.CreateFunctionGenerator</span></td><td><code>4029ebb3f1d80f73</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.change.DropFunctionGenerator</span></td><td><code>492a68a59eaabdf6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.mysql.MySQLFunctionSnapshotGenerator</span></td><td><code>96cc71023fbcfc6a</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.postgres.EDBPostgresFunctionSnapshotGenerator</span></td><td><code>6c346b3e3210a1b6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.postgres.PostgresFunctionSnapshotGenerator</span></td><td><code>b6a3b1109c579dcf</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.MySQLStoredProcedureSnapshotGenerator</span></td><td><code>d8babc9961655475</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.PostgresStoredProcedureSnapshotGenerator</span></td><td><code>7653bb7e671a727b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.StoredProcedureSnapshotGenerator</span></td><td><code>ffc81b4aa822c410</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.TriggerSnapshotGenerator</span></td><td><code>fe16ac13660433c5</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.CreateTriggerGenerator</span></td><td><code>88593bb7c2dab747</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.DisableTriggerGenerator</span></td><td><code>2628a5646bfd087b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.DropTriggerGenerator</span></td><td><code>264f70dffef4ffc6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.EnableTriggerGenerator</span></td><td><code>91c9a20b3ae11dc1</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.RenameTriggerGenerator</span></td><td><code>36fb9722c466280d</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.postgres.PostgresTriggerSnapshotGenerator</span></td><td><code>9beed04637456be9</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.AbstractNativeToolExecutor</span></td><td><code>4bf6be2f903d5b3a</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.MssqlSqlcmdExecutor</span></td><td><code>f46d77c1313a718e</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.OracleSqlPlusExecutor</span></td><td><code>35034dd01a329e68</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationConfiguration</span></td><td><code>48627d31d1e7cc58</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationConfiguration.StdConfiguration</span></td><td><code>8066de299ba6fd23</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationInclusion</span></td><td><code>2cd7cc19ca9ee402</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.Annotations</span></td><td><code>f10d18c1473139ac</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.MemberResolver</span></td><td><code>730dabe65dc59225</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedType</span></td><td><code>2ad603928e2650d9</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedTypeWithMembers</span></td><td><code>9f4dc97cf3f610ed</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedTypeWithMembers.AnnotationHandler</span></td><td><code>7746a773399e6b7f</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.TypeBindings</span></td><td><code>dcbf06c8c7183f90</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.TypeResolver</span></td><td><code>d09b4b74c59c11c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.HierarchicType</span></td><td><code>37f26fb1b9dc7fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.RawMember</span></td><td><code>1ce775886aede4bc</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.RawMethod</span></td><td><code>970a18b6b6e1258c</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedMember</span></td><td><code>186cf0ddb43b3d5a</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedMethod</span></td><td><code>dd26050161dfc4d6</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedParameterizedMember</span></td><td><code>0f405ca4f3c52650</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedInterfaceType</span></td><td><code>0dc926f39e347b86</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedObjectType</span></td><td><code>4d7f5e3ceba40146</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedPrimitiveType</span></td><td><code>034de37e06583b7c</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ClassKey</span></td><td><code>375967f15b8a61aa</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ClassStack</span></td><td><code>45ff9549fe8dd5eb</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.LRUTypeCache</span></td><td><code>5053e773cfbd8cbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.LRUTypeCache.CacheMap</span></td><td><code>0f0286373be96557</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.MethodKey</span></td><td><code>6983f255b2d0a89e</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ResolvedTypeCache</span></td><td><code>7ebeb4ef1b798ce1</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ResolvedTypeKey</span></td><td><code>6e43c294f51b6aa2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonAutoDetect.1</span></td><td><code>6be52ec71dcf28a2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility</span></td><td><code>e56bcd385626eead</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonCreator.Mode</span></td><td><code>5e1d947ef261f336</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Feature</span></td><td><code>4821dea785bbd1d5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Features</span></td><td><code>8a42630725ca176f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Shape</span></td><td><code>c19c22f9661f3b7d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Value</span></td><td><code>c867e2a0cd371606</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value</span></td><td><code>4f0da3cf85f6ca76</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonInclude.Include</span></td><td><code>c1668d3ffac61cc7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonInclude.Value</span></td><td><code>ac2f9088b123c9d2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonIncludeProperties.Value</span></td><td><code>7ed084480a07ee84</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonProperty.Access</span></td><td><code>fd3fb50c2a337fe9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonSetter.Value</span></td><td><code>6ee26ce006658a00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonTypeInfo.As</span></td><td><code>6078d3105bfa2045</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonTypeInfo.Id</span></td><td><code>4872e9ad549a15ba</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.Nulls</span></td><td><code>724f990ec72b618f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.PropertyAccessor</span></td><td><code>a506c0b4a9292088</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variant</span></td><td><code>c0e8197f954dd06f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour</span></td><td><code>843a0ab5e9f9bc15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variants</span></td><td><code>706d40c092962881</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonEncoding</span></td><td><code>124995a58b48c11e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonFactory</span></td><td><code>92d2e770b8f35f8e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonFactory.Feature</span></td><td><code>8361ffaea30cff48</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonGenerator.Feature</span></td><td><code>5a49f8113c26ac2f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser</span></td><td><code>087ba07afe7d06ce</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser.Feature</span></td><td><code>004fd2ec010ce098</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser.NumberType</span></td><td><code>f7a23e271b922f44</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonStreamContext</span></td><td><code>8f79ce44d6acb1f0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonToken</span></td><td><code>12337f269c55f88a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.ObjectCodec</span></td><td><code>bcfadd4a47d8d174</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.PrettyPrinter</span></td><td><code>522e543d2d203e0c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.StreamReadCapability</span></td><td><code>4961b524041bfae0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.TokenStreamFactory</span></td><td><code>eeb403e3105a4c39</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.TreeCodec</span></td><td><code>9b794ee2c027e6c5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Version</span></td><td><code>0af4bf326090c50c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.base.ParserBase</span></td><td><code>09e44d2aba8e329d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.base.ParserMinimalBase</span></td><td><code>d1dfef4481f52146</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.CharTypes</span></td><td><code>3948d29ac237c8f4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.ContentReference</span></td><td><code>b7ba13bd0ff9bdf3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.IOContext</span></td><td><code>904cd3765ace74f5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.JsonStringEncoder</span></td><td><code>034ac13887946240</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.SerializedString</span></td><td><code>297ea024d97582cf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper</span></td><td><code>d00a9209449f0269</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.JsonReadContext</span></td><td><code>4a5d2465f91a7f95</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.UTF8StreamJsonParser</span></td><td><code>3b907ee12a7084dd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer</span></td><td><code>291229256a021e25</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.TableInfo</span></td><td><code>795012ec0e6c889b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer</span></td><td><code>35a1ac98a1bad939</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer.TableInfo</span></td><td><code>2e560d79a52cf0a8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.type.ResolvedType</span></td><td><code>15807997628a0aa4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.BufferRecycler</span></td><td><code>9b42a79424df3f8e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.BufferRecyclers</span></td><td><code>5fa617e1462e0caf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultIndenter</span></td><td><code>3b2beace17e888ee</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter</span></td><td><code>d1ebc5e64e35699e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter</span></td><td><code>4845911bdeabaf2a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter</span></td><td><code>23ef20344a80184e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.InternCache</span></td><td><code>5a30c73b3b03a45e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.JacksonFeatureSet</span></td><td><code>23f70a20c39e4603</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.Separators</span></td><td><code>2a5b790142732290</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.TextBuffer</span></td><td><code>789cefae4beae965</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.VersionUtil</span></td><td><code>1413be786bc77d26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector</span></td><td><code>af9daa2158870a32</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty</span></td><td><code>09f92466c78dd697</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type</span></td><td><code>d90a083248c5b3dc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.BeanDescription</span></td><td><code>c5613af91861c976</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.BeanProperty.Std</span></td><td><code>b4feecae05e99e22</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DatabindContext</span></td><td><code>171ac5f27083d860</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationConfig</span></td><td><code>beec5c0ed081b28e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationContext</span></td><td><code>63ca2b9e4cf1e650</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationFeature</span></td><td><code>7892aa29da749006</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JavaType</span></td><td><code>6774433437db819f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JsonDeserializer</span></td><td><code>f155d5de89ce5a60</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JsonSerializer</span></td><td><code>580d874493a44de7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.KeyDeserializer</span></td><td><code>57c3ce9990767641</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.MapperFeature</span></td><td><code>f1485765752306d7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.MappingJsonFactory</span></td><td><code>f3cae28c0c458d13</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.Module</span></td><td><code>bb66b81d910dbd05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper</span></td><td><code>9e2bf7d65aebeb2d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.1</span></td><td><code>d7d5c5df61482732</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder</span></td><td><code>ae6fc943a2f262b9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping</span></td><td><code>6a3011a4de84756b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectReader</span></td><td><code>c5d27a3b52d43594</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.PropertyMetadata</span></td><td><code>169ed055a423a1c4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.PropertyName</span></td><td><code>f0fe669cc1f8057b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializationConfig</span></td><td><code>dd23e85db1772fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializationFeature</span></td><td><code>a7f6fb742e4bb5ac</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializerProvider</span></td><td><code>e3847c31e373e473</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.BaseSettings</span></td><td><code>ee09f14529f6cfde</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionAction</span></td><td><code>9e15561f16680f97</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionConfig</span></td><td><code>ffad61191adeb87e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionConfigs</span></td><td><code>63f7b0f9840aafbd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionInputShape</span></td><td><code>90aad4e377b3dccd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverride</span></td><td><code>f1771a0d408303c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverride.Empty</span></td><td><code>3372ed519d9bafb4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverrides</span></td><td><code>6eccdb4ac13ab18a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConstructorDetector</span></td><td><code>9af1c9a41cb4b83d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConstructorDetector.SingleArgConstructor</span></td><td><code>b0c67222cebc30be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ContextAttributes</span></td><td><code>216e6db5a97ae48a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl</span></td><td><code>7e49bf155839b753</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.DeserializerFactoryConfig</span></td><td><code>797011776bfed729</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.HandlerInstantiator</span></td><td><code>db4c0da38ae13f35</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MapperConfig</span></td><td><code>ec06db667daccfe8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MapperConfigBase</span></td><td><code>82a2129d5033ef15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MutableCoercionConfig</span></td><td><code>0fd510ce548c5df5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.SerializerFactoryConfig</span></td><td><code>97a0b951463407ed</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory</span></td><td><code>35353283d28857e3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.ContainerDefaultMappings</span></td><td><code>6b760ad9e06a7e59</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.CreatorCollectionState</span></td><td><code>589901bf2de6cb73</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializer</span></td><td><code>1abdcde1c28a0481</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerBase</span></td><td><code>6f73fb66cef49338</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerBuilder</span></td><td><code>6017e2ecc1c5729c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerFactory</span></td><td><code>ebb2fb6497ab6fd1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.CreatorProperty</span></td><td><code>463e7e38167c7f14</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DefaultDeserializationContext</span></td><td><code>23471bff48f2d14a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.Impl</span></td><td><code>0c311b9cfe6a8407</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DeserializerCache</span></td><td><code>2d98eb7f38fe0ade</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DeserializerFactory</span></td><td><code>2ebdf24d93849f1a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.Deserializers.Base</span></td><td><code>a3b8086adb6ca320</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.SettableBeanProperty</span></td><td><code>2209452aee2349d1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiator</span></td><td><code>7de15bbcecdec668</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiator.Base</span></td><td><code>74d442e4bb57cf15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiators.Base</span></td><td><code>409ddb33d4295a19</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.BeanPropertyMap</span></td><td><code>9a15afcbb27fa7d3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCandidate</span></td><td><code>4f4ddd9e1b38909b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCandidate.Param</span></td><td><code>c635ef4a61409ee4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCollector</span></td><td><code>590fad3e8b67cf3b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.FailingDeserializer</span></td><td><code>4904d8577f214eb3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators</span></td><td><code>899467f4ced76f52</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators.ArrayListInstantiator</span></td><td><code>f835a690be876264</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators.LinkedHashMapInstantiator</span></td><td><code>2c8fe12c485f587f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.MethodProperty</span></td><td><code>d6354b9c19d5da76</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.NullsConstantProvider</span></td><td><code>ddb643ddeb01e747</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator</span></td><td><code>1d3ff8c84239a10e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValue</span></td><td><code>6f7a534faf2ca1fe</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValue.Regular</span></td><td><code>13468859ee1bd7fe</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValueBuffer</span></td><td><code>ade888c0ce0ab08b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.SetterlessProperty</span></td><td><code>cd526c2380240ba2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.CollectionDeserializer</span></td><td><code>68b7a77554bf6c94</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase</span></td><td><code>c68510ec00c11ce2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.FromStringDeserializer</span></td><td><code>bab8615bac5b2100</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.JdkDeserializers</span></td><td><code>6ed17d9e54e42f1d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.MapDeserializer</span></td><td><code>cb8fed36672f08c3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers</span></td><td><code>af4aa96d306dfbb7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BooleanDeserializer</span></td><td><code>b181afadc5e34b55</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.NumberDeserializer</span></td><td><code>acca61df8e576b9e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.PrimitiveOrWrapperDeserializer</span></td><td><code>467caf19a87c057e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer</span></td><td><code>0ccebc66d12b1aa5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdDeserializer</span></td><td><code>1fef92d543fe2c09</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer</span></td><td><code>c80c89050723096c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringKD</span></td><td><code>b1203fb69e79d221</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers</span></td><td><code>e277ef5e873fdf87</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdScalarDeserializer</span></td><td><code>25286f364997b846</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdValueInstantiator</span></td><td><code>899af61ed1fbec4e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StringCollectionDeserializer</span></td><td><code>c91d7b8ed05e21ec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StringDeserializer</span></td><td><code>400a7aba0eeb3d31</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer</span></td><td><code>d9352f6cdc59b396</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.Vanilla</span></td><td><code>fda27ced3fcdd12f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7Handlers</span></td><td><code>4bf515a2bee6b089</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7HandlersImpl</span></td><td><code>d3addcc5a37b4ed8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7Support</span></td><td><code>b7ed61265dad1e05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7SupportImpl</span></td><td><code>4bb02b62d1f4b08e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.OptionalHandlerFactory</span></td><td><code>03eabfe3ba4c3167</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy</span></td><td><code>3d3b7f563f5ca70a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy.Provider</span></td><td><code>6026222786456f26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.Annotated</span></td><td><code>47d3d49f2b832d54</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClass</span></td><td><code>d7618104caa817e7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClass.Creators</span></td><td><code>6d9ba5d6c00f185b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClassResolver</span></td><td><code>b71c842acb1f38fa</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedConstructor</span></td><td><code>310aa86b631e7761</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedCreatorCollector</span></td><td><code>32f23f0c58479951</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedField</span></td><td><code>6f235f67cf02b948</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedFieldCollector</span></td><td><code>d69681a80eda3647</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedFieldCollector.FieldBuilder</span></td><td><code>f895fc382a882b32</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMember</span></td><td><code>5879537c033bd580</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethod</span></td><td><code>8ecedbb812546ee8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodCollector</span></td><td><code>af7b87497b71c1df</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodCollector.MethodBuilder</span></td><td><code>da6256a78b2d96c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodMap</span></td><td><code>d69be24a07cecf16</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedParameter</span></td><td><code>f6b3615f2ae1822c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedWithParams</span></td><td><code>03688e0164cf2879</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector</span></td><td><code>c389709d2ffbb364</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.EmptyCollector</span></td><td><code>a87b6b2439611ec7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.NoAnnotations</span></td><td><code>9173d7167a075d90</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.OneCollector</span></td><td><code>4d7ed4cd12d6011c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair</span></td><td><code>931c959a3112db6c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationMap</span></td><td><code>4043d8fa37c478aa</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BasicBeanDescription</span></td><td><code>fcd042c4339e4ae6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BasicClassIntrospector</span></td><td><code>9b81bae8d2bdc7a9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BeanPropertyDefinition</span></td><td><code>1ce6d250a172084a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.ClassIntrospector</span></td><td><code>b20a1133edfcf6b5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.CollectorBase</span></td><td><code>1c0f669109aac37e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase</span></td><td><code>6d846e8cdba7e7e6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.DefaultAccessorNamingStrategy</span></td><td><code>3b7b9e1fd9ca60c0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.DefaultAccessorNamingStrategy.Provider</span></td><td><code>279a8d9b45166f1b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector</span></td><td><code>6ee54de73eb44d10</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.MemberKey</span></td><td><code>8d4fd74968966d89</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.MethodGenericTypeResolver</span></td><td><code>2f53d000aae045ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector</span></td><td><code>4f79871528bc10f4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector.1</span></td><td><code>c19d5234b41a5c53</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector</span></td><td><code>1e1c8f2eaab4288a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder</span></td><td><code>5748055b97ffdfd3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.1</span></td><td><code>925ffe3a324d008c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.2</span></td><td><code>f9f5816009560a85</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.4</span></td><td><code>ccfa1b83e27ecd92</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.5</span></td><td><code>8bc5c843a115ba34</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.6</span></td><td><code>a868a4e7297a3d8d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.Linked</span></td><td><code>3591f89e48568c1d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.MemberIterator</span></td><td><code>ce3ce565feb3578f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.SimpleMixInResolver</span></td><td><code>05d0015e0b63d267</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.TypeResolutionContext.Basic</span></td><td><code>09190ef225acb240</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.VisibilityChecker.1</span></td><td><code>fcd169612237adbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std</span></td><td><code>dcf4500664436616</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator</span></td><td><code>ff1c7cc76de984ce</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator.Base</span></td><td><code>ea9ae0e64ce11069</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.SubtypeResolver</span></td><td><code>b2ed8bc0e5fe669c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator</span></td><td><code>d02dab29b87ed521</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.StdSubtypeResolver</span></td><td><code>353a51b197dba4be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.StdTypeResolverBuilder</span></td><td><code>80460793d55968d5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.SubTypeValidator</span></td><td><code>9e976019b6ad258e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleDeserializers</span></td><td><code>6399f6a0f689fbda</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleKeyDeserializers</span></td><td><code>a819432235e4437e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleModule</span></td><td><code>142df66a318ceef6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleSerializers</span></td><td><code>39516f87ef2c71bf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.node.JsonNodeFactory</span></td><td><code>0f18f4e6ce6152ad</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.BasicSerializerFactory</span></td><td><code>97a7135d9fa67778</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.BeanSerializerFactory</span></td><td><code>01c553b8a2e9ae12</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.DefaultSerializerProvider</span></td><td><code>94637395bab35717</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.Impl</span></td><td><code>53b6a802688e5c4a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.SerializerCache</span></td><td><code>c9e57915400fb429</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.SerializerFactory</span></td><td><code>a96ec5a87f2a9dec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.Serializers.Base</span></td><td><code>443d0df59bde7b26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.impl.FailingSerializer</span></td><td><code>96696f091a076f00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.impl.UnknownSerializer</span></td><td><code>97051ea56a50f09d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.BooleanSerializer</span></td><td><code>6d935809cc70dedf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.CalendarSerializer</span></td><td><code>da6df272674c3c19</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.DateSerializer</span></td><td><code>dcf355b20d60965d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase</span></td><td><code>0f179763daa16b3e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NullSerializer</span></td><td><code>0db019a5d28b6525</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializer</span></td><td><code>b49271a382f5acb0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers</span></td><td><code>dfe8936a5bca95d8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base</span></td><td><code>e89fd22d3e157080</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.DoubleSerializer</span></td><td><code>b3b7c0a4dc5aa3c9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer</span></td><td><code>fd8000468d95d100</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntLikeSerializer</span></td><td><code>19a0e7c41fcbbb05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer</span></td><td><code>3b0eb434a3630ccd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.LongSerializer</span></td><td><code>8b431cced5b1b076</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.ShortSerializer</span></td><td><code>8613a6cf439f0b06</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdJdkSerializers</span></td><td><code>b1d950d41858d3ba</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdScalarSerializer</span></td><td><code>c49a8b0a712a1383</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdSerializer</span></td><td><code>4f003e0e5a335c53</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StringSerializer</span></td><td><code>3d337f1cb01ba05b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToEmptyObjectSerializer</span></td><td><code>ee5696656f5b577b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToStringSerializer</span></td><td><code>b965af9d2adb22d7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToStringSerializerBase</span></td><td><code>c323d855ecbf9188</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.UUIDSerializer</span></td><td><code>6409650c33e1c5b2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ArrayType</span></td><td><code>ad8a5b90ccf57379</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ClassKey</span></td><td><code>afd44456d80534c1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ClassStack</span></td><td><code>7c85624aef6e3562</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.CollectionLikeType</span></td><td><code>160a6991673d32be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.CollectionType</span></td><td><code>d93ee41eed402006</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.LogicalType</span></td><td><code>e0e08cb4c4d717b1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.MapLikeType</span></td><td><code>a930cb208bd12632</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.MapType</span></td><td><code>67ed0c0a97104570</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.SimpleType</span></td><td><code>6d6674d2612a166a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBase</span></td><td><code>30f634bc18651f68</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings</span></td><td><code>86a76fcb5c2bba33</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings.AsKey</span></td><td><code>8ebf3d4e93855157</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings.TypeParamStash</span></td><td><code>4550b96ac1086bd3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeFactory</span></td><td><code>d3a3629803fd686e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeModifier</span></td><td><code>3fde83f0d245be4f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeParser</span></td><td><code>2ce747808bc5c380</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.AccessPattern</span></td><td><code>44bf82acd8a3fffc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ArrayBuilders</span></td><td><code>8d854885f317f7a5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ArrayIterator</span></td><td><code>e4c9e4d38ac21c90</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.BeanUtil</span></td><td><code>2bb65aa725d7c668</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ClassUtil</span></td><td><code>fc6e81ed78dbbcd4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ClassUtil.Ctor</span></td><td><code>c595c310561c1b1e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.IgnorePropertiesUtil</span></td><td><code>2c9cb2f0c7499b84</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.LRUMap</span></td><td><code>7761915724985acc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.LinkedNode</span></td><td><code>73ca05873e25cb2e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ObjectBuffer</span></td><td><code>22f0b3bc035ced26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.RootNameLookup</span></td><td><code>0a1b6f208f22829a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.StdDateFormat</span></td><td><code>c7d18d58ada26440</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORFactory</span></td><td><code>e4c3c3f11dd0e259</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORGenerator.Feature</span></td><td><code>1eeb51fa76ead90e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORParser.Feature</span></td><td><code>bf830786c5b4cbf9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Deserializers</span></td><td><code>ea126fa2e06c1dde</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Module</span></td><td><code>8e82333ec60d37e3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Serializers</span></td><td><code>8e035f0805a72a0e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8TypeModifier</span></td><td><code>e4d14414fff8e7f3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.PackageVersion</span></td><td><code>b49516a458b071ea</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.JavaTimeModule</span></td><td><code>4110e68e5dc8a33b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.JavaTimeModule.1</span></td><td><code>6269c84e29480142</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.PackageVersion</span></td><td><code>21903845b80a2d37</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.DurationDeserializer</span></td><td><code>ab973e050cc98685</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.InstantDeserializer</span></td><td><code>9a2ebf5dc1053184</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310DateTimeDeserializerBase</span></td><td><code>451bbdbcdd0b2f3d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase</span></td><td><code>a42a100eb3db5063</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310StringParsableDeserializer</span></td><td><code>ec40549afa8898ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer</span></td><td><code>4ec9cd420b6efa6f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer</span></td><td><code>9cf25a0b2bde4767</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalTimeDeserializer</span></td><td><code>7889361dabb08019</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.MonthDayDeserializer</span></td><td><code>d43b9f169fd06f00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.OffsetTimeDeserializer</span></td><td><code>2a5d44e03892ea5c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.YearDeserializer</span></td><td><code>d56b6ecd9b0717ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.YearMonthDeserializer</span></td><td><code>f88f7121ace6966c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.DurationKeyDeserializer</span></td><td><code>86dee43d5fd8de58</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.InstantKeyDeserializer</span></td><td><code>c323cc187e10bdcd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.Jsr310KeyDeserializer</span></td><td><code>64893f60684210d1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalDateKeyDeserializer</span></td><td><code>3639e2ff55da7fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalDateTimeKeyDeserializer</span></td><td><code>ed7e026ffd090c77</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalTimeKeyDeserializer</span></td><td><code>c058ad0a221814f2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.MonthDayKeyDeserializer</span></td><td><code>fe54a17b388e76da</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.OffsetDateTimeKeyDeserializer</span></td><td><code>1bfce89e8c6142a4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.OffsetTimeKeyDeserializer</span></td><td><code>7e7c73d8f28d4c13</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.PeriodKeyDeserializer</span></td><td><code>1fb27ade4fa213e5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.YearKeyDeserializer</span></td><td><code>ded209cf80f75df6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.YearMonthKeyDeserializer</span></td><td><code>bbb3a607d3512540</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZoneIdKeyDeserializer</span></td><td><code>010f3e4e2802434d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZoneOffsetKeyDeserializer</span></td><td><code>b8b591cfa6cb7be9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZonedDateTimeKeyDeserializer</span></td><td><code>c3b6fe868b1396e4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.DurationSerializer</span></td><td><code>1e922bfe151864ec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializer</span></td><td><code>61c7dc946aa7e67a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializerBase</span></td><td><code>7878f0b5f564caa3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase</span></td><td><code>bd4e59d7380ca96c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.JSR310SerializerBase</span></td><td><code>2ad341990e9021dc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer</span></td><td><code>8f84db74e8d2427f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer</span></td><td><code>014d82d656c93b81</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer</span></td><td><code>30ef053f4ce38983</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.MonthDaySerializer</span></td><td><code>99c8e56bc8812c47</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.OffsetDateTimeSerializer</span></td><td><code>8a0e8bd7a69de71e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.OffsetTimeSerializer</span></td><td><code>ff84bad2852f3bf7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.YearMonthSerializer</span></td><td><code>b9428592c48c4dbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.YearSerializer</span></td><td><code>0f06fc30937c7746</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.ZoneIdSerializer</span></td><td><code>04f155c4ebbe4db1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.ZonedDateTimeSerializer</span></td><td><code>f3edd0908d04ed41</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.key.ZonedDateTimeKeySerializer</span></td><td><code>244ed33273b7bb0f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.PackageVersion</span></td><td><code>1aa7c1c8ebe1734e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterExtractor</span></td><td><code>33c12848ae24c025</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterNamesAnnotationIntrospector</span></td><td><code>26f4eb1794904d4a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterNamesModule</span></td><td><code>5d5820ec8fffc7a8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.DockerClientDelegate</span></td><td><code>a9dd14a589635de8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.async.ResultCallbackTemplate</span></td><td><code>4fc75e346e7c1159</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.CreateContainerCmd</span></td><td><code>851588790efd9296</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.CreateContainerResponse</span></td><td><code>5615c43a384b60a7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.GraphData</span></td><td><code>d82120d32cd9c71f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.GraphDriver</span></td><td><code>1d06e5dbbf3f9a1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse</span></td><td><code>e7761d0bc2c057bc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse.ContainerState</span></td><td><code>163d1f162296890c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse.Mount</span></td><td><code>05c378117a36a836</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectImageResponse</span></td><td><code>6eb708353c9c50a2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.RootFS</span></td><td><code>f5c14febd20645bc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.AccessMode</span></td><td><code>6ae5a6123282ed52</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.AuthConfig</span></td><td><code>70580c6150ed0e10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Bind</span></td><td><code>c6d44b47d74bcca0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.BindPropagation</span></td><td><code>304cd6e0289abaec</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Binds</span></td><td><code>790814c90ae74b7f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Capability</span></td><td><code>8f3fdd2c307b9cb5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ContainerConfig</span></td><td><code>697022c45fe186dc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ContainerNetwork</span></td><td><code>eb8d54f883894230</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.DockerObject</span></td><td><code>557852de89123528</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.DockerObjectAccessor</span></td><td><code>e2059dea34d529ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExposedPort</span></td><td><code>1178df063bb982c3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExposedPorts</span></td><td><code>bc81a6f2f9949380</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExternalCAProtocol</span></td><td><code>7a2691756a74cb28</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Frame</span></td><td><code>7dc8489497b804bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.HostConfig</span></td><td><code>103b6c6e7fa20dd3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Image</span></td><td><code>fd910998cbbb2d10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Info</span></td><td><code>2cdc458b12edc45b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InfoRegistryConfig</span></td><td><code>3fc9ed34f0f6a144</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InfoRegistryConfig.IndexConfig</span></td><td><code>9e8b65ba54a43b73</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InternetProtocol</span></td><td><code>b973b59c7e9be3a1</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Isolation</span></td><td><code>c492158865d7a99c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Links</span></td><td><code>0d6bd71b3841daba</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LocalNodeState</span></td><td><code>cdc7a0302d551794</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LogConfig</span></td><td><code>6261994fdb3eb8fc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LogConfig.LoggingType</span></td><td><code>b77412f3db86a0f6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.MountType</span></td><td><code>0581478361bc54f0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.NetworkSettings</span></td><td><code>52c5c2e196853df4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.PortBinding</span></td><td><code>d1f19697d2eaad98</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Ports</span></td><td><code>8a090962c57a1772</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Ports.Binding</span></td><td><code>67c501edc0bc1ca8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.PropagationMode</span></td><td><code>83faf858aef24464</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.RestartPolicy</span></td><td><code>ea0226a7d6627d81</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.SELContext</span></td><td><code>622b0ae2c820ddce</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.StreamType</span></td><td><code>6bb24baf46bb9eb2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.SwarmInfo</span></td><td><code>20b8ebd093f5dddc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Version</span></td><td><code>fe64a4451ae5eec5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.VersionComponent</span></td><td><code>31a21568988880e9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.VersionPlatform</span></td><td><code>d038c690966f2c86</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Volume</span></td><td><code>c9db8789811c511e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Volumes</span></td><td><code>13216c6315c7b3df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.AbstractSocket</span></td><td><code>495e9e7499e263d8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request</span></td><td><code>f16d88731f13fd4b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request.Builder</span></td><td><code>73aed29d6d7f0cb8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request.Method</span></td><td><code>d215504033a2eb71</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.ImmutableRequest</span></td><td><code>fa5d5cf09452ee50</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.ImmutableRequest.Builder</span></td><td><code>a5718c2d58dae13a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.UnixSocket</span></td><td><code>f2e40f3d8e007230</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.UnixSocket.WrappedWritableByteChannel</span></td><td><code>8ef7f98bfbe891bf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl</span></td><td><code>0c115a17a149afb0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.1</span></td><td><code>ce9bc655247bcecc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.2</span></td><td><code>e4d022befc8e317e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.ApacheResponse</span></td><td><code>b0ee86718bbe649d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.HijackingHttpRequestExecutor</span></td><td><code>ec0c5ea3f4c455df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ZerodepDockerHttpClient</span></td><td><code>80212d3cbfd7a18d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ZerodepDockerHttpClient.Builder</span></td><td><code>ca7da4e6c41dac19</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.HttpRoute</span></td><td><code>5639b44f475a02b6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteInfo.LayerType</span></td><td><code>386e754f379b45ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteInfo.TunnelType</span></td><td><code>f38a4ed642d6d2c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteTracker</span></td><td><code>a4e1c7c0b4d547cc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.SystemDefaultDnsResolver</span></td><td><code>f8785863521c0e3f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.AuthExchange</span></td><td><code>267e5be21b380522</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.AuthExchange.State</span></td><td><code>b0f6772b6b73daaf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.ChallengeType</span></td><td><code>b1bda1ce7fb39e8c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig</span></td><td><code>2b57d97db2006a9b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig.Builder</span></td><td><code>1d817214e4a08838</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig.Option</span></td><td><code>53055a041f204d0f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.classic.ExecChain.Scope</span></td><td><code>efb0dfb5f771963d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.classic.methods.HttpUriRequestBase</span></td><td><code>f0dd08ccae173739</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.config.RequestConfig</span></td><td><code>4d2b1f735b68d88c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.config.RequestConfig.Builder</span></td><td><code>315ee5b02dc853ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.BasicCookieStore</span></td><td><code>6d888c924efc8370</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.CookieIdentityComparator</span></td><td><code>d61ae0fec3deb484</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.CookieOrigin</span></td><td><code>3a457ca5e2f4b991</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.entity.DeflateInputStreamFactory</span></td><td><code>5ec4be2b8726c1f0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.entity.GZIPInputStreamFactory</span></td><td><code>32d2de7c36dd13b3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.AuthSupport</span></td><td><code>5bf4ee8c8d1063ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.ChainElement</span></td><td><code>5b26622b04e6e8f9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.CookieSpecSupport</span></td><td><code>9fe9c979d61fa283</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultAuthenticationStrategy</span></td><td><code>0b5aab05e814bc33</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultConnectionKeepAliveStrategy</span></td><td><code>7285648e70fca07e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultHttpRequestRetryStrategy</span></td><td><code>2fbcdfdb42e73857</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultRedirectStrategy</span></td><td><code>1b27322076f637c8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultSchemePortResolver</span></td><td><code>e7841ee08d7be5f8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.ExecSupport</span></td><td><code>9d01f4cc2e004f17</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.NoopUserTokenHandler</span></td><td><code>0b42e8493d6034eb</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.AuthChallengeParser</span></td><td><code>32bf8044f4051cc5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.BasicCredentialsProvider</span></td><td><code>1fc8304a29a098e5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.BasicSchemeFactory</span></td><td><code>e45b7bf9c58bba1a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.DigestSchemeFactory</span></td><td><code>75612bfb7f655b1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.HttpAuthenticator</span></td><td><code>ae401dd603e19e69</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.HttpAuthenticator.1</span></td><td><code>2880bcc49cc7654a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.KerberosSchemeFactory</span></td><td><code>c43a9be1636d3b6a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.NTLMSchemeFactory</span></td><td><code>81390b5d880b46c3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.SPNegoSchemeFactory</span></td><td><code>eef805dd38e465d3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ClassicRequestCopier</span></td><td><code>7eb65c1f1dbcf671</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpClient</span></td><td><code>79e8953b8e237287</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpResponse</span></td><td><code>78b58d209d4427f4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ConnectExec</span></td><td><code>c74bb40947cdff0f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ContentCompressionExec</span></td><td><code>d5ca1d974cf291ea</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ExecChainElement</span></td><td><code>d988f4d484a1c4a9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ExecChainElement.1</span></td><td><code>516b6a3968256a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpClientBuilder</span></td><td><code>b5c9a663459e1856</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpClients</span></td><td><code>fc576d6f2511cef8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpRequestRetryExec</span></td><td><code>18ccb4bb28bf8064</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.InternalExecRuntime</span></td><td><code>bf17a1e369aa2c38</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.InternalHttpClient</span></td><td><code>1db05671b0e43299</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.MainClientExec</span></td><td><code>71629c5d1ef0de98</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ProtocolExec</span></td><td><code>c7f0fd4f606a2172</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.RedirectExec</span></td><td><code>fb53bfbe51b63e84</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.RequestEntityProxy</span></td><td><code>4b8d29767acbaa5e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ResponseEntityProxy</span></td><td><code>08b170c16c0c5100</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.AbstractCookieAttributeHandler</span></td><td><code>68a2b0a8760fd57e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicDomainHandler</span></td><td><code>945a2fd1c591249a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicExpiresHandler</span></td><td><code>4c3e41295a2f8015</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicMaxAgeHandler</span></td><td><code>e0214bbe87fe1b04</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicPathHandler</span></td><td><code>024a27417b2166cd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicSecureHandler</span></td><td><code>a22c022be3b55748</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.IgnoreCookieSpecFactory</span></td><td><code>b5b0a35b90717179</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.PublicSuffixDomainFilter</span></td><td><code>f6907cc80665d560</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpec</span></td><td><code>e8737c9683b4567f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecBase</span></td><td><code>3d276d773ab24341</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory</span></td><td><code>27e73f56ca95accc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory.2</span></td><td><code>71942189c6dd3c96</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory.CompatibilityLevel</span></td><td><code>671aed441488a252</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265StrictSpec</span></td><td><code>7bd3bc538aaa477c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultHttpClientConnectionOperator</span></td><td><code>e2ade76d3720b640</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultHttpResponseParserFactory</span></td><td><code>1ae3abbaca133105</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultManagedHttpClientConnection</span></td><td><code>9ff5ac67ef929932</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.LenientHttpResponseParser</span></td><td><code>b281ff44aea9a593</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.ManagedHttpClientConnectionFactory</span></td><td><code>64319a5a6f425763</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager</span></td><td><code>336265a9769a80e4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.1</span></td><td><code>d13488340b082e10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.2</span></td><td><code>96f404d7a8c54170</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.InternalConnectionEndpoint</span></td><td><code>c3e231b64c052085</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.routing.BasicRouteDirector</span></td><td><code>b8598e29dd7b27ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.routing.DefaultRoutePlanner</span></td><td><code>1e46a900f1292eb4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.io.ConnectionEndpoint</span></td><td><code>dee11ec6945f170a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.HttpClientContext</span></td><td><code>c463709741b3863a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RedirectLocations</span></td><td><code>1309b7e42b68359e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestAddCookies</span></td><td><code>8efe5c4c45430a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestAuthCache</span></td><td><code>689fb82f44ff5361</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestClientConnControl</span></td><td><code>85e72cd67afeadfe</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestDefaultHeaders</span></td><td><code>4049e74fab1c28b8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestExpectContinue</span></td><td><code>1ac647a174ef3dc0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.ResponseProcessCookies</span></td><td><code>d2ddf7b6e77d3e70</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.DomainType</span></td><td><code>abc54bc039342632</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixList</span></td><td><code>c9356014edebc1df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixListParser</span></td><td><code>575b7174481d3e19</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixMatcher</span></td><td><code>94e70ef41285e08e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixMatcherLoader</span></td><td><code>ea848a4193f8a63b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.routing.RoutingSupport</span></td><td><code>73a0c3a51fe9b1fc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.socket.PlainConnectionSocketFactory</span></td><td><code>b385986570c0a067</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.1</span></td><td><code>7cb3321a1b7b3ff1</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.concurrent.BasicFuture</span></td><td><code>822cbb102e2fb04b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.EndpointDetails</span></td><td><code>c0a12d6d4c578280</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.HttpHost</span></td><td><code>02b20aaef77f395b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.HttpVersion</span></td><td><code>618730361a1cd382</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.Method</span></td><td><code>d0a5400628e0a0a0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.ProtocolVersion</span></td><td><code>4933195216c6fd36</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.URIScheme</span></td><td><code>0e5e45e2a175778e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.CharCodingConfig</span></td><td><code>2469d3bfcba19d72</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.CharCodingConfig.Builder</span></td><td><code>a6d9af891feefa21</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Http1Config</span></td><td><code>08595348ffa5af1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Http1Config.Builder</span></td><td><code>562d47f7cb16c26a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.NamedElementChain</span></td><td><code>615e8b4a459611a5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.NamedElementChain.Node</span></td><td><code>f9064f39a97271af</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Registry</span></td><td><code>e6522bcb9b37a5d0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.RegistryBuilder</span></td><td><code>b94ae1892bcd2d54</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicEndpointDetails</span></td><td><code>9ab5ec19a218d9e0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicHttpConnectionMetrics</span></td><td><code>4b5720c65545ceb7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicHttpTransportMetrics</span></td><td><code>8b4a24075ca160c2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.DefaultConnectionReuseStrategy</span></td><td><code>39342e995a48f243</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.DefaultContentLengthStrategy</span></td><td><code>4f01fe14113f01c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.EnglishReasonPhraseCatalog</span></td><td><code>a4a39ccfadd88a6a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.AbstractMessageParser</span></td><td><code>42ba8f2efed589f8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.AbstractMessageWriter</span></td><td><code>e477a7b307a9ede5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.BHttpConnectionBase</span></td><td><code>7884435ce1c0762b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream</span></td><td><code>f211697c725f1431</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.1</span></td><td><code>dd8ac481574b6c0e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.State</span></td><td><code>a920751bd065dbc7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ContentLengthOutputStream</span></td><td><code>f3e0cbd29144c48c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultBHttpClientConnection</span></td><td><code>5342fa8b6eac388b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultClassicHttpResponseFactory</span></td><td><code>5c201fe195d8e59d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpRequestWriter</span></td><td><code>f66465424cac81bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpRequestWriterFactory</span></td><td><code>182bd9ad3ef9a17f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpResponseParser</span></td><td><code>667929fa53dde2c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.EmptyInputStream</span></td><td><code>c4d0f4060f3bfe77</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.HttpRequestExecutor</span></td><td><code>b636217eb87e0d4d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.IncomingHttpEntity</span></td><td><code>aa50260928b07276</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl</span></td><td><code>712a2e3143485811</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionOutputBufferImpl</span></td><td><code>878c9ffaea8555cf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SocketHolder</span></td><td><code>5d483757d15af303</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.EofSensorInputStream</span></td><td><code>14845cf2f781c02f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.SocketConfig</span></td><td><code>db118248472906e7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.SocketConfig.Builder</span></td><td><code>7c1dfe92d53d2aca</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.AbstractHttpEntity</span></td><td><code>45f0fd151271e0d7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.ByteArrayEntity</span></td><td><code>511a35a2769c0307</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.HttpEntityWrapper</span></td><td><code>ef0fac7f6b9a246d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.AbstractHeaderElementIterator</span></td><td><code>9269305599ee4ff9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpRequest</span></td><td><code>463aa819d3e91c95</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpResponse</span></td><td><code>b5d600afbc79f0f6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeader</span></td><td><code>58a403c02c184b65</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeaderElementIterator</span></td><td><code>da6bf69b2cf62de4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeaderValueParser</span></td><td><code>62c7d9e722068365</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHttpRequest</span></td><td><code>133ff55a76ab3054</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHttpResponse</span></td><td><code>d09033044e453653</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicLineFormatter</span></td><td><code>02a95f57482acf1e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicLineParser</span></td><td><code>04142a67916637b7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicListHeaderIterator</span></td><td><code>8c3706d78b0813a9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicTokenIterator</span></td><td><code>6a5e20039b6d73fb</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BufferedHeader</span></td><td><code>0287c9c0fafa9a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.HeaderGroup</span></td><td><code>0914f083b73d22de</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.LazyLineParser</span></td><td><code>aa228693251d30e2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.MessageSupport</span></td><td><code>2301d5bc8fc538cf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.ParserCursor</span></td><td><code>41e24fbeea564aa0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.RequestLine</span></td><td><code>171fd1a75f257e35</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.StatusLine</span></td><td><code>1df309f719bf3451</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.StatusLine.StatusClass</span></td><td><code>cdd21e86333af2bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.TokenParser</span></td><td><code>a5b3076fea4c3680</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.BasicHttpContext</span></td><td><code>e0b2c132546acab6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.ChainBuilder</span></td><td><code>e03148917954dc59</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.DefaultHttpProcessor</span></td><td><code>48786f6ba95f7ce8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.HttpCoreContext</span></td><td><code>4b36eccd789a9adf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.HttpProcessorBuilder</span></td><td><code>546554a72cc3f837</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestContent</span></td><td><code>7a0c1d1af223dd68</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestTargetHost</span></td><td><code>0e809b8c79c439fe</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestUserAgent</span></td><td><code>a0594e90863a7b2b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.CloseMode</span></td><td><code>168f292b0e7de080</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer</span></td><td><code>79c86de1f1f7740f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.net.Ports</span></td><td><code>226adeea69f79632</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.net.URIAuthority</span></td><td><code>01205eaab5ed7b54</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolConcurrencyPolicy</span></td><td><code>a2e0e05340a53b79</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolEntry</span></td><td><code>5261dc32d6398e71</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolReusePolicy</span></td><td><code>726cc311e8a76eae</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool</span></td><td><code>78fa8d1dee2f11c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.3</span></td><td><code>33c79afa299e8c3e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.LeaseRequest</span></td><td><code>3d445177d5178ac8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.PerRoutePool</span></td><td><code>a08b1a7717e793ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Args</span></td><td><code>247581dd475b4510</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Asserts</span></td><td><code>9696829f19000de8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.ByteArrayBuffer</span></td><td><code>e7e65864fe0347fa</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.CharArrayBuffer</span></td><td><code>aaa0f3c50179f678</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Deadline</span></td><td><code>8601b20585c670bf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.LangUtils</span></td><td><code>9d13c4eb192cf7de</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.TextUtils</span></td><td><code>96945fec48a46287</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.TimeValue</span></td><td><code>1d71a1744b92816f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Timeout</span></td><td><code>83147054a857cd83</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.VersionInfo</span></td><td><code>c55229b885a1a4dc</code></td></tr><tr><td><span class="el_class">com.google.common.base.Absent</span></td><td><code>0e98e570b062fe59</code></td></tr><tr><td><span class="el_class">com.google.common.base.Optional</span></td><td><code>eb22d289a64dc947</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy</span></td><td><code>a9ccb88e12628bab</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.1</span></td><td><code>74e60530f9dfd5a6</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.2</span></td><td><code>cca6591a7aa10fd3</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.3</span></td><td><code>a2f613527e2eaacb</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.4</span></td><td><code>139ef2624c75bbd3</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.5</span></td><td><code>6355fc1f4b132f3e</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.6</span></td><td><code>d2839c0903e98a16</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.7</span></td><td><code>b15574aea5c36ec6</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson</span></td><td><code>84cf04b3f981b2c6</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.1</span></td><td><code>a54da7d249136d9c</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.2</span></td><td><code>0f5c6a06820aa4a8</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.4</span></td><td><code>6d64043c24e1e411</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.5</span></td><td><code>a2f7e6ff00fa88ea</code></td></tr><tr><td><span class="el_class">com.google.gson.GsonBuilder</span></td><td><code>0542674a7b5c4ca2</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy</span></td><td><code>0383e8018575dd2d</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy.1</span></td><td><code>cff239f5198750ee</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy.2</span></td><td><code>f8175a77e442ec4a</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy</span></td><td><code>6b3f5eb48341c0f7</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.1</span></td><td><code>3e28bcbd9e18f906</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.2</span></td><td><code>9ed1f6c68a8f7a31</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.3</span></td><td><code>78745d4a07673284</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.4</span></td><td><code>4f0bc632663193b9</code></td></tr><tr><td><span class="el_class">com.google.gson.TypeAdapter</span></td><td><code>09a301f116f23dc6</code></td></tr><tr><td><span class="el_class">com.google.gson.TypeAdapter.1</span></td><td><code>c6c289b4bd4187f1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal..Gson.Preconditions</span></td><td><code>2ad574710e4bd8e8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal..Gson.Types</span></td><td><code>f86f0e8ee8bf09df</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.ConstructorConstructor</span></td><td><code>a03e4ced9bed69a8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.Excluder</span></td><td><code>d7ab9e2a761c2e82</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ArrayTypeAdapter</span></td><td><code>ebce4a78f6b30b13</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ArrayTypeAdapter.1</span></td><td><code>3c5f19f1af83884f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.CollectionTypeAdapterFactory</span></td><td><code>c89f9bd47ce9b7e4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DateTypeAdapter</span></td><td><code>a918f4b3cc484a9e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DateTypeAdapter.1</span></td><td><code>1e1e04a31853ce1a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DefaultDateTypeAdapter.DateType</span></td><td><code>67600e175a04fa9c</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DefaultDateTypeAdapter.DateType.1</span></td><td><code>95e6b44340ce7477</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.JsonAdapterAnnotationTypeAdapterFactory</span></td><td><code>f754ec6a28319d24</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.MapTypeAdapterFactory</span></td><td><code>26cec4b55889fec9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.NumberTypeAdapter</span></td><td><code>2c1c4b5a515ff5cc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.NumberTypeAdapter.1</span></td><td><code>d669ec06e8eb62d8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ObjectTypeAdapter</span></td><td><code>9ebf25805006560a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ObjectTypeAdapter.1</span></td><td><code>39c37c9644321ab5</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ReflectiveTypeAdapterFactory</span></td><td><code>ad10c451ca83c1d1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters</span></td><td><code>78c1a094ed4fdeb0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.1</span></td><td><code>2ae19dadeff11dbe</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.10</span></td><td><code>48458b488550f3b0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.11</span></td><td><code>bf9c4f1b1dca896b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.12</span></td><td><code>aa13c9cdb1a53c8e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.13</span></td><td><code>42fbd5445c171038</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.14</span></td><td><code>741a8fb483adf9c2</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.15</span></td><td><code>62f5139bae16aa25</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.16</span></td><td><code>b007b18742872348</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.17</span></td><td><code>77d1fb19e7f815a9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.18</span></td><td><code>004a5836575aaa15</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.19</span></td><td><code>758b65b73745e3a4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.2</span></td><td><code>56232bab96587059</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.20</span></td><td><code>19c905ded284bf19</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.21</span></td><td><code>6e9bbe5466f1d0e0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.22</span></td><td><code>c5dd3a44e3b9486b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.23</span></td><td><code>d79412a54d7878bb</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.24</span></td><td><code>342dea905fb076bc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.25</span></td><td><code>092297d95ef2d73d</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.26</span></td><td><code>376ffb7ff9997834</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.27</span></td><td><code>25c3851a58dade5e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.28</span></td><td><code>925a28b55aa7c1ea</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.29</span></td><td><code>806c498d6bc27245</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.3</span></td><td><code>7c4a5e89dda44ff5</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.31</span></td><td><code>e67ab9752e5e2ac4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.32</span></td><td><code>a2226a3f7501418a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.33</span></td><td><code>904642f306b5f77e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.34</span></td><td><code>850555ea6520cf3f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.4</span></td><td><code>476d80dfdaf927a9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.5</span></td><td><code>1aa4273bfb4a700a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.6</span></td><td><code>1b30212b5d9b9bb8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.7</span></td><td><code>379c815c77bfb5c9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.8</span></td><td><code>4194b15a375b9e4b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.9</span></td><td><code>a15d63bdfb43ec44</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlDateTypeAdapter</span></td><td><code>759c80a351806a6a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlDateTypeAdapter.1</span></td><td><code>5e8177dacb42fdcc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimeTypeAdapter</span></td><td><code>c03cfadd1131b29a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimeTypeAdapter.1</span></td><td><code>38f494c57c386f02</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimestampTypeAdapter</span></td><td><code>685ac2966df2335f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimestampTypeAdapter.1</span></td><td><code>38e74c1f432005c2</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport</span></td><td><code>24f8c951b0c966e1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport.1</span></td><td><code>85ef3fff6448d68a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport.2</span></td><td><code>0c921201327ae0f7</code></td></tr><tr><td><span class="el_class">com.google.gson.reflect.TypeToken</span></td><td><code>5ae7964eb1100f16</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Configuration</span></td><td><code>2401dbd750d28834</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Configuration.ConfigurationBuilder</span></td><td><code>2c6eca0db31ca57d</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.JsonPath</span></td><td><code>eb4e91662a59b621</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Option</span></td><td><code>40891bb147661f72</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.internal.ParseContextImpl</span></td><td><code>8ac5a97bf22f2cfb</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.internal.Utils</span></td><td><code>f8ee92b9923a4484</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.AbstractJsonProvider</span></td><td><code>8893cb8865d9aca7</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.JacksonJsonProvider</span></td><td><code>da4781eab57c322f</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.JsonProvider</span></td><td><code>c22ff2858ce8fd40</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.mapper.JacksonMappingProvider</span></td><td><code>1c6758cb32a1af0c</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL</span></td><td><code>64616edb9a35b7d8</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL.1</span></td><td><code>0c5e6fbb019aaa08</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL.ProviderService</span></td><td><code>9b2beff76c2c0ad0</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.HikariConfig</span></td><td><code>8953450743ee4b80</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.HikariDataSource</span></td><td><code>5992a4f5451e078d</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool</span></td><td><code>154f98ab83d63f44</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.HouseKeeper</span></td><td><code>f478520d97529b30</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.MaxLifetimeTask</span></td><td><code>ef06d03502f55713</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.PoolEntryCreator</span></td><td><code>d6b32389c1f40375</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyCallableStatement</span></td><td><code>4afa1004d5bb956c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyConnection</span></td><td><code>ced98f84c51ad30f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyDatabaseMetaData</span></td><td><code>2fe1695b0847b9d8</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyPreparedStatement</span></td><td><code>78e3216211f2b206</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyResultSet</span></td><td><code>f112093aff2c53e2</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyStatement</span></td><td><code>84742b56928ba903</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase</span></td><td><code>970b6cfceb4b6d45</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase.IMetricsTrackerDelegate</span></td><td><code>4a3b6ef7fd0813c6</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase.NopMetricsTrackerDelegate</span></td><td><code>cb47907bfacd6cbf</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolEntry</span></td><td><code>1ebec30f1673f16f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyCallableStatement</span></td><td><code>4962fa3551796493</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyConnection</span></td><td><code>9a1082408a54a2c4</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyConnection.ClosedConnection</span></td><td><code>9a7724eefceaa28c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyDatabaseMetaData</span></td><td><code>642972d037d11e25</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyFactory</span></td><td><code>565ee10c145aa9c0</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTask</span></td><td><code>6afe9a99f2a2749a</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTask.1</span></td><td><code>eaf7af10fa978b4c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTaskFactory</span></td><td><code>a54eecc61fcd0374</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyPreparedStatement</span></td><td><code>d445ad8610bd3712</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyResultSet</span></td><td><code>a9f035effef039b5</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyStatement</span></td><td><code>d88854512b92899f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource</span></td><td><code>b9f5d3120f27f553</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource.Factory</span></td><td><code>f123275c185a89bb</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource.MillisecondClockSource</span></td><td><code>768d9c39d69dd48f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ConcurrentBag</span></td><td><code>21160ac953c51c4e</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.DriverDataSource</span></td><td><code>78f2554b899f3e3c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.FastList</span></td><td><code>9c8091f2cadee0c2</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.SuspendResumeLock</span></td><td><code>08306a367e823d4a</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.SuspendResumeLock.1</span></td><td><code>679c81a431296d17</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.UtilityElf</span></td><td><code>f8142ee56f1f720f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.UtilityElf.DefaultThreadFactory</span></td><td><code>2796dcf22b5967fd</code></td></tr><tr><td><span class="el_class">feign.AsyncResponseHandler</span></td><td><code>8dc97d9db00baa8f</code></td></tr><tr><td><span class="el_class">feign.BaseBuilder</span></td><td><code>390d369be61c0b65</code></td></tr><tr><td><span class="el_class">feign.Client.Default</span></td><td><code>6c2f1335cd321c93</code></td></tr><tr><td><span class="el_class">feign.CollectionFormat</span></td><td><code>1352acd6f69c1972</code></td></tr><tr><td><span class="el_class">feign.Contract.BaseContract</span></td><td><code>c88ead77174dfde9</code></td></tr><tr><td><span class="el_class">feign.Contract.Default</span></td><td><code>d09d053951f82023</code></td></tr><tr><td><span class="el_class">feign.DeclarativeContract</span></td><td><code>b6f32fe8877a710e</code></td></tr><tr><td><span class="el_class">feign.DeclarativeContract.GuardedAnnotationProcessor</span></td><td><code>c0f7763a6e0435e4</code></td></tr><tr><td><span class="el_class">feign.ExceptionPropagationPolicy</span></td><td><code>dbcef08f023031f8</code></td></tr><tr><td><span class="el_class">feign.Feign</span></td><td><code>f9b1659d2bfc3f6b</code></td></tr><tr><td><span class="el_class">feign.Feign.Builder</span></td><td><code>eb9fc073c818093b</code></td></tr><tr><td><span class="el_class">feign.InvocationHandlerFactory.Default</span></td><td><code>c474750856699d05</code></td></tr><tr><td><span class="el_class">feign.Logger</span></td><td><code>83f957b993963c8f</code></td></tr><tr><td><span class="el_class">feign.Logger.Level</span></td><td><code>8d470c011260de1d</code></td></tr><tr><td><span class="el_class">feign.Logger.NoOpLogger</span></td><td><code>8b8e6833e9834a4d</code></td></tr><tr><td><span class="el_class">feign.MethodMetadata</span></td><td><code>21d162f88602bcd0</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign</span></td><td><code>6824b42ab3c14f06</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.BuildEncodedTemplateFromArgs</span></td><td><code>b855784a119b3074</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.BuildTemplateByResolvingArgs</span></td><td><code>b5e262d10dff4726</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.FeignInvocationHandler</span></td><td><code>1f20d409cb487a9b</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.ParseHandlersByName</span></td><td><code>8ac3ea92f8e7774b</code></td></tr><tr><td><span class="el_class">feign.Request.Body</span></td><td><code>21566a807e4bd2d0</code></td></tr><tr><td><span class="el_class">feign.Request.HttpMethod</span></td><td><code>185ace938fe2faf4</code></td></tr><tr><td><span class="el_class">feign.Request.Options</span></td><td><code>deb3587d621972e6</code></td></tr><tr><td><span class="el_class">feign.RequestTemplate</span></td><td><code>021ba6d55e4575c2</code></td></tr><tr><td><span class="el_class">feign.ResponseInterceptor</span></td><td><code>238b6528f2d58170</code></td></tr><tr><td><span class="el_class">feign.Retryer</span></td><td><code>041c0a87f9ce475a</code></td></tr><tr><td><span class="el_class">feign.Retryer.1</span></td><td><code>679fb91d151ed12a</code></td></tr><tr><td><span class="el_class">feign.Retryer.Default</span></td><td><code>fef4a600c91d24f3</code></td></tr><tr><td><span class="el_class">feign.SynchronousMethodHandler</span></td><td><code>e25b3f36ef03dc94</code></td></tr><tr><td><span class="el_class">feign.SynchronousMethodHandler.Factory</span></td><td><code>20089823daad8d8b</code></td></tr><tr><td><span class="el_class">feign.Target.HardCodedTarget</span></td><td><code>b0a6b4fd8858683b</code></td></tr><tr><td><span class="el_class">feign.Types</span></td><td><code>798e0e5864a4164b</code></td></tr><tr><td><span class="el_class">feign.Types.ParameterizedTypeImpl</span></td><td><code>9ddaf11846f13084</code></td></tr><tr><td><span class="el_class">feign.Types.WildcardTypeImpl</span></td><td><code>4ea8d4f3f923441b</code></td></tr><tr><td><span class="el_class">feign.Util</span></td><td><code>412b1b41f871ba9b</code></td></tr><tr><td><span class="el_class">feign.codec.Decoder.Default</span></td><td><code>b3e40fadbfe76a04</code></td></tr><tr><td><span class="el_class">feign.codec.Encoder.Default</span></td><td><code>750191ab05a7529d</code></td></tr><tr><td><span class="el_class">feign.codec.ErrorDecoder.Default</span></td><td><code>c6759fd9d3582bb1</code></td></tr><tr><td><span class="el_class">feign.codec.ErrorDecoder.RetryAfterDecoder</span></td><td><code>f9bee18846e0cb96</code></td></tr><tr><td><span class="el_class">feign.codec.StringDecoder</span></td><td><code>6eb508f0494bdbd4</code></td></tr><tr><td><span class="el_class">feign.form.ContentType</span></td><td><code>9c60e4fb5a56d8b8</code></td></tr><tr><td><span class="el_class">feign.form.FormEncoder</span></td><td><code>29667cc5b54b8f47</code></td></tr><tr><td><span class="el_class">feign.form.MultipartFormContentProcessor</span></td><td><code>9c33910572c4f6e4</code></td></tr><tr><td><span class="el_class">feign.form.UrlencodedFormContentProcessor</span></td><td><code>73b16bebbfba2cad</code></td></tr><tr><td><span class="el_class">feign.form.multipart.AbstractWriter</span></td><td><code>4652d5e403627309</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ByteArrayWriter</span></td><td><code>da7d76db507c87dc</code></td></tr><tr><td><span class="el_class">feign.form.multipart.DelegateWriter</span></td><td><code>7eba88b5df43269b</code></td></tr><tr><td><span class="el_class">feign.form.multipart.FormDataWriter</span></td><td><code>0c128a2e8feb938e</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ManyFilesWriter</span></td><td><code>429547dd86058434</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ManyParametersWriter</span></td><td><code>a5c315a9a27d0567</code></td></tr><tr><td><span class="el_class">feign.form.multipart.PojoWriter</span></td><td><code>b859030b5d30b113</code></td></tr><tr><td><span class="el_class">feign.form.multipart.SingleFileWriter</span></td><td><code>8e1b1182a22cc8f3</code></td></tr><tr><td><span class="el_class">feign.form.multipart.SingleParameterWriter</span></td><td><code>a92c68325f16730a</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringFormEncoder</span></td><td><code>e3673615351fe8bc</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringManyMultipartFilesWriter</span></td><td><code>85aed832d6fee2dd</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringSingleMultipartFileWriter</span></td><td><code>0cc8d58965c0a9fb</code></td></tr><tr><td><span class="el_class">feign.optionals.OptionalDecoder</span></td><td><code>b6215e9faf519f7c</code></td></tr><tr><td><span class="el_class">feign.querymap.BeanQueryMapEncoder</span></td><td><code>a645a69f08db72ee</code></td></tr><tr><td><span class="el_class">feign.querymap.FieldQueryMapEncoder</span></td><td><code>e5e295cf04f6cffb</code></td></tr><tr><td><span class="el_class">feign.slf4j.Slf4jLogger</span></td><td><code>1b9c0c04f8142cd2</code></td></tr><tr><td><span class="el_class">feign.template.Expression</span></td><td><code>b518714d3e7cff7f</code></td></tr><tr><td><span class="el_class">feign.template.Expressions</span></td><td><code>ca8414054c7e0818</code></td></tr><tr><td><span class="el_class">feign.template.Expressions.SimpleExpression</span></td><td><code>72b8133e63158541</code></td></tr><tr><td><span class="el_class">feign.template.Literal</span></td><td><code>279d822a73c0efe1</code></td></tr><tr><td><span class="el_class">feign.template.QueryTemplate</span></td><td><code>ec8bdeb8086e7475</code></td></tr><tr><td><span class="el_class">feign.template.Template</span></td><td><code>71ca2e23c289b0fd</code></td></tr><tr><td><span class="el_class">feign.template.Template.ChunkTokenizer</span></td><td><code>d2069f8320936f9c</code></td></tr><tr><td><span class="el_class">feign.template.Template.EncodingOptions</span></td><td><code>d1d43de3bc7ba1d5</code></td></tr><tr><td><span class="el_class">feign.template.Template.ExpansionOptions</span></td><td><code>c95f99e560c6c22c</code></td></tr><tr><td><span class="el_class">feign.template.UriTemplate</span></td><td><code>d0a96c8a63fd0a9c</code></td></tr><tr><td><span class="el_class">feign.template.UriUtils</span></td><td><code>80e2cd211236016b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.SpringBootApp</span></td><td><code>d72fbd9bba9f11d0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.SpringBootApp..EnhancerBySpringCGLIB..7979b644</span></td><td><code>b874de4bd4866d30</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig</span></td><td><code>af472d3fec354869</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..EnhancerBySpringCGLIB..d30e7ba5</span></td><td><code>b86e98a5b39ce7e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..EnhancerBySpringCGLIB..d30e7ba5..FastClassBySpringCGLIB..35de66a6</span></td><td><code>6d5704917f353941</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..FastClassBySpringCGLIB..4739e156</span></td><td><code>d3252373a786ff2a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.LoggingConfig</span></td><td><code>376a19ee6c2ef548</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.Mapping</span></td><td><code>e6cac722fe05936d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.Mapping.1</span></td><td><code>3213b5068dc225aa</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.1NAZUTl0</span></td><td><code>42284d375ce78933</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.2BqfxJhD</span></td><td><code>154a9218a1e76c03</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.2fwqtdUT</span></td><td><code>62e5bd3ff3386b41</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.3kXH3bBq</span></td><td><code>ab5b1a20c563783a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.3tJPYDDp</span></td><td><code>eccacb6d1ff743ca</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4KPVuOeV</span></td><td><code>4d1f42cfd0a803c0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4clURWac</span></td><td><code>02bb560088de8217</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4yvpcbFj</span></td><td><code>8f159693d4d1b530</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.5rldtkQD</span></td><td><code>e2d8606a574e4ef0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.65TQg3wn</span></td><td><code>baeaa28b8ae796f5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.6ws476Sc</span></td><td><code>763f42b571ebce6e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.71XQ1JIz</span></td><td><code>76ca4705c3fad729</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.7WqSlZwQ</span></td><td><code>b29c2ce74f1ba523</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.81EeE2A8</span></td><td><code>c26293a3ca299a1d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.8WDoAC3O</span></td><td><code>33023c7d2c65e160</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.8vP68NDh</span></td><td><code>e6d096e01b239d61</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.97sBtNTs</span></td><td><code>3900832666c318d5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.98Hjvk5H</span></td><td><code>1ebc76fc23ef4b9b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.9WZsqfEW</span></td><td><code>2962a6ad5938a338</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ALu0eIFh</span></td><td><code>b60fe12d2c81086c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.AXz4geHe</span></td><td><code>9c2470b1dd425ab9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CAbx32nL</span></td><td><code>bc79c41dc3016f7a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CAv7iyuS</span></td><td><code>207277ab3dab3260</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CMqur7GG</span></td><td><code>2fe260a89b4a16d1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CrArw6wl</span></td><td><code>bf72961a14c65eb6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.E9qk7qvJ</span></td><td><code>4b5e1cff5c2b3bd1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.EspRtFtP</span></td><td><code>ae3a0ecb5a08d9fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Fzrac00h</span></td><td><code>f293324baf1e5214</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.G3gAjDVR</span></td><td><code>160ab754608e0453</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GEQ1FSN0</span></td><td><code>935d6d307eb72b27</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GGuFt1iZ</span></td><td><code>aaebe2cc3f960733</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GMRd3HLV</span></td><td><code>ff292b133dff55e6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Gv6vtY3w</span></td><td><code>95e5a97f0077f45a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.HWNjFvyB</span></td><td><code>930f6ea8b3bdb878</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.HYgc2BB9</span></td><td><code>c33cfe203e48a9fb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Ixh1rYT5</span></td><td><code>7ba792d4430bdded</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.J4H8E9Lj</span></td><td><code>40903ee2a447696a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Jt3P7be5</span></td><td><code>784b961237fac03a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.K7ObvSdm</span></td><td><code>f280c1ad8012a770</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.L1gQIntG</span></td><td><code>feebf704bdc5800e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LGUb3FJI</span></td><td><code>5e31d48eb734dcd3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LKVCo34c</span></td><td><code>802fac94820f9bcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LOU03qmV</span></td><td><code>515d0e440fe44ddb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LpWEWYmV</span></td><td><code>0c7a65cdab801c37</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.MOgEAWTM</span></td><td><code>6ad1e38006e458c5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.N4OyhoCa</span></td><td><code>fb542beb53232f6b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.NjgyfQCg</span></td><td><code>e84c85b6dcc16783</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.QCxerHA2</span></td><td><code>afe04dc27aad726c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.RyRkfPNz</span></td><td><code>10d4cb288d8e3fda</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TAnhnuxJ</span></td><td><code>3ca6efa5cf78922f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TO9qOm82</span></td><td><code>0097e48a37c6a8a6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TXVCkyon</span></td><td><code>a89dcd4a5966e997</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ULHGz3hd</span></td><td><code>dacfbbad99dacfe3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.VlkmOjfn</span></td><td><code>31e153cfcc757a2b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.W6V6VgsD</span></td><td><code>dec958425a3e86ea</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.WXBNHHms</span></td><td><code>a5eac70e67ea13a8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.WruTg5CU</span></td><td><code>dfe0e4ed5f0f2be0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.XMzjr0Je</span></td><td><code>5b1c6c03fcda96b7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Xiv5cIS4</span></td><td><code>1f847ced09e76f88</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.XqAiXLD9</span></td><td><code>b510bbe3ba08410d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Y48dX48H</span></td><td><code>61d2fc18c87f45cf</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.YJhTcvEp</span></td><td><code>2e05ba5e0c416d83</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ZW9HYeSM</span></td><td><code>a0f4f10141413bfc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Zy0nZBVA</span></td><td><code>b04ac2c8a5ad05f6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.aaxlMdbL</span></td><td><code>157b1623e9c1c057</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.bJuQgm9A</span></td><td><code>daab6991bd8cf942</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.bvA4beuj</span></td><td><code>97b0b18d7f90e55a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.cDxRnjBV</span></td><td><code>bf15a0e592393bed</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.cfwEsObE</span></td><td><code>85412b933199f52e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dPtumDEH</span></td><td><code>a42b158b49419744</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dhOZLnLD</span></td><td><code>09910942beee5c20</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dmdydC8m</span></td><td><code>0add9340927bdf1b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dwvvgFA8</span></td><td><code>cb0c2da40190aac3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.e6eKcCNN</span></td><td><code>92f52e37f4b20562</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.gIsCYPGV</span></td><td><code>bbb6c642a183cf0e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.gS0heMFL</span></td><td><code>275582821f4d448c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.giyoUeht</span></td><td><code>e0716906ec1eba74</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.iObRMauk</span></td><td><code>716836664c3d892d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.iWZ6s6Ue</span></td><td><code>e478925e86bd928c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.kHkFLKyt</span></td><td><code>87a6db4f4249f829</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.kxgFpA5M</span></td><td><code>59bb5ba127027845</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.m01pJz0H</span></td><td><code>8a65a62ece98fc9d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.mPckbVwt</span></td><td><code>6844d56904e6ec40</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.nuqacccY</span></td><td><code>a5e7999161099f7e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oHxlk3ub</span></td><td><code>933f9db9ff7475ef</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oQHSlgCc</span></td><td><code>4de7bb450be71c0a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oRRsZmQL</span></td><td><code>33a15b0e85ab5df9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.owTFK0JH</span></td><td><code>78fd2807dbaca3a7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pERB3TvZ</span></td><td><code>aa528b4ecefa7589</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pW74xi7n</span></td><td><code>9eaaaec24bcbe212</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pyhdc4Un</span></td><td><code>05daf89d45b79d95</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.rKFHubud</span></td><td><code>e197dec271109148</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.rpcSixGu</span></td><td><code>2f5fe39e1393c62a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.tRisl71v</span></td><td><code>4bb5fe16e56e275f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vB4AzxJh</span></td><td><code>d22710d43a0387be</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vprGwd7N</span></td><td><code>318562c9b7e52f6c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vu9nRByF</span></td><td><code>aaa21cf5b13d1230</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.w9UgoNXI</span></td><td><code>8e28b658e6eba6e5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yCNsfRTj</span></td><td><code>0ee8ecefd43f2495</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yE5OY6Oi</span></td><td><code>b6c0d6e1332bf9fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yFImbtHu</span></td><td><code>1d69c25c2a8175c6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ywhDuS48</span></td><td><code>8bfe41b27e1f3e8a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.zE7DDA9W</span></td><td><code>3f810029c01f75e7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.zLyABuG0</span></td><td><code>98b5e7756858528e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.health.PropertiesServiceAvailable</span></td><td><code>3a0dc17a6b35b792</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient</span></td><td><code>b55ba36001fe9ef7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.0unvaU5D</span></td><td><code>704f0344b22544f1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.0vLnxjt5</span></td><td><code>ca7b73252c66b0c5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.1dAzvVr8</span></td><td><code>bfa29ce2917f4ca6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.1rd9s5iW</span></td><td><code>3be17c56ac000f39</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.2PZr7L3V</span></td><td><code>c5329af5a69b31f8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.2bH44m2I</span></td><td><code>1bcad36bba088c01</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.3JGcZWR7</span></td><td><code>55f836318811a116</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.3YizcUfv</span></td><td><code>5933078e4f1a3c21</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.4YJckhyE</span></td><td><code>2b175fb1da9d02be</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.4ky0FyOQ</span></td><td><code>1ba8362b3494258c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.5EqmZL6J</span></td><td><code>5d7143c910aa4a4e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.7UrY7ET5</span></td><td><code>2893c6a4480e920e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.9l9ioRSw</span></td><td><code>56b32af83d8552e8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.9uCPHD8A</span></td><td><code>bf0ae27bc6f33178</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.A08xD82Y</span></td><td><code>977e4ada7465fc2d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AMs39YWi</span></td><td><code>c8aabd2b13a5eb41</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AVAfLMjt</span></td><td><code>3cb82214ac1f64a2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AfvZHjdU</span></td><td><code>35f83107eb99b869</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Cgjm2ta2</span></td><td><code>6977a9c1deeb59bc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.D2r2uywn</span></td><td><code>433e6dbe33ac0c3d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.D9V1258P</span></td><td><code>5f6c19d501610132</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.FQNMHH8o</span></td><td><code>e57d91ec9a7dc63b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GXlDL7bx</span></td><td><code>1125652ed1f7be64</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GoqMbEZW</span></td><td><code>b1b1ae8d79e48289</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GvGAhFFO</span></td><td><code>39551d9605f16e09</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.IDxwfKj1</span></td><td><code>c45400927100a477</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JJ7v5O3b</span></td><td><code>6df12ecdaebf7896</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JM9arvTB</span></td><td><code>277bf0e3b4af19d3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JfjNtV9g</span></td><td><code>606683666a9c1fcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JjOKZthy</span></td><td><code>0f2ec8a75e3f2c18</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JnEPltCj</span></td><td><code>bb7136871d42b2a3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JusZ67Zd</span></td><td><code>cec909c56cfcb4c3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.LjGVDRLU</span></td><td><code>d0ff4c06a009a9a8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Mt35eLBu</span></td><td><code>b968ef33a2ccf5de</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.NQfNDVB3</span></td><td><code>3c6f3d6ffeed6b1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Nja84fS5</span></td><td><code>50d3600d2839c6d9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.NrbkRRlb</span></td><td><code>8a5598b95226c01d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.PqT5LNGI</span></td><td><code>ed0568f23d2134c0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.PzcDKBxk</span></td><td><code>bb042997571a6ac6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Q2E5dir5</span></td><td><code>edc0fe3e9cd27b31</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Qcdhpb8f</span></td><td><code>e8fdb8b9557d59a0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.QjO8LNlf</span></td><td><code>d0bd413d181aa71e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.S2hfatWA</span></td><td><code>6d906423f52096ab</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.SNZEsgpa</span></td><td><code>22510f7f677017d3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.TlrTQ1pU</span></td><td><code>f8396193f5f97960</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.TmxlT659</span></td><td><code>73cced4bc9f022f3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.UMvRI6Ln</span></td><td><code>ab30896fc8be6bcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.V8SAE4zr</span></td><td><code>2e922e7068f3e85d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.VlgNAM4X</span></td><td><code>fd125f0cbf54a546</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.VpOoWiji</span></td><td><code>c5111674bbd1063c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.WfrL3tCE</span></td><td><code>1956f53643e12b8e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.X1ioFary</span></td><td><code>b0ac7f222e5c6c08</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Y9hwQAx2</span></td><td><code>19d682e060e88ac5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.YCusH6P5</span></td><td><code>10860120051c1a76</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ZN8LdWll</span></td><td><code>6d9e5605adb3554f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ZqoC4hki</span></td><td><code>c61aa628b87b027f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.bDNPrQy6</span></td><td><code>c53706e02a086fc2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.bi05yoVq</span></td><td><code>358315c9b7b3693b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.cij6NM5d</span></td><td><code>358905680ca0eed6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.clFu3XhQ</span></td><td><code>7126163b05e06ac4</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ct58Foug</span></td><td><code>2876638cc2df85ee</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.d8GaDFrU</span></td><td><code>3b8b89c1ab2b8e8a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.dkRpW7jD</span></td><td><code>a84669e3e61cb688</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.e04BwM2s</span></td><td><code>b94460d69e5ea43c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.gNo8MS4J</span></td><td><code>c4874fe6dacc1f33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.gayVz1A7</span></td><td><code>60b3f256c7961b2b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.hSQpFEZd</span></td><td><code>2e94860fef1b14de</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jJcOAq7r</span></td><td><code>29fb0cc466117079</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jVGzAvSk</span></td><td><code>22438cc107b4e4da</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jmQhPTpK</span></td><td><code>26d1735677bd63fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jz3TDn1m</span></td><td><code>37787c8031e7dc31</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.lhOCoGbu</span></td><td><code>77ae949bf941e906</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.md2WjjVV</span></td><td><code>950a6f8f4da0be5b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.mrnlaEmm</span></td><td><code>55b1b254529d86eb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.nLoUMFLe</span></td><td><code>a8a7d50579c7984d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oE8mb8KG</span></td><td><code>72eb0288630855a0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oR6o9ELQ</span></td><td><code>e37dcbcc42c1fd62</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oUd65Hm4</span></td><td><code>b4d3c5a057da0453</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.obAiCFMo</span></td><td><code>8792c9605037a825</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.on8Zo9hL</span></td><td><code>66e73c50b0bb7d5f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.paF0t6VM</span></td><td><code>ac1c1af96d741e9f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.pwKL9G8m</span></td><td><code>690c8ed48d1c9d1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.q5ftKEIB</span></td><td><code>a63f2d901e54e128</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qITO9duJ</span></td><td><code>b6e0f7a33d7d8693</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qxssMzfw</span></td><td><code>b09704bf430e9d3f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qyvnsIGd</span></td><td><code>49721e0b91ea16a5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.r49YwygE</span></td><td><code>c5b1480e25d4af3c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.rZHvDPnb</span></td><td><code>e0e558af3496aa33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.riae9MfC</span></td><td><code>1059cb577ab15503</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.s5P0YAHw</span></td><td><code>6d88aa93281898bb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.sIxbC5CR</span></td><td><code>ff770d82b24bd379</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.sujt6Drx</span></td><td><code>3861d56601b74fcc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.tMeFldqd</span></td><td><code>71ca029adce6c116</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.tyXLcFtj</span></td><td><code>90af39789968e6b8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.vDos0udM</span></td><td><code>56f86a0240468804</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.vvAABRdu</span></td><td><code>39d37a5d49d3d565</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.w7htM1kR</span></td><td><code>575a324c7403117c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.wBodVug9</span></td><td><code>7b8e29ca2b3d3d25</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.wsM6hJwO</span></td><td><code>bab36f45ebb5ea11</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xDm07pyd</span></td><td><code>5e252ab1a0f8254a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xsWHT4NM</span></td><td><code>4adf39e72b40909a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xuABsRp5</span></td><td><code>fe16deeab65b7b71</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.yWIHEIVR</span></td><td><code>3ae197b6353b0768</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.zy4bCVsS</span></td><td><code>0b96216e6bfdfb35</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.Role</span></td><td><code>31c4f95e3001faf0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.SinceSource</span></td><td><code>f39395c805743710</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.TimestampBase</span></td><td><code>8dcdba78e3486b1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.TooFrequentInvocations</span></td><td><code>3a42c8e963383d68</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.properties.PropertiesServiceImpl</span></td><td><code>0e361667415e0746</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceImpl</span></td><td><code>ad86a5d5566d19f0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceImpl..EnhancerBySpringCGLIB..e1857030</span></td><td><code>5abb13d3c3468fa8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceStub</span></td><td><code>86c4632345671122</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl</span></td><td><code>6717b256e889593b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..EnhancerBySpringCGLIB..e84ea5d5</span></td><td><code>b519e499f56c479c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..EnhancerBySpringCGLIB..e84ea5d5..FastClassBySpringCGLIB..85e5092e</span></td><td><code>50b64ef02689de24</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..FastClassBySpringCGLIB..2f05934</span></td><td><code>3ad261966ea94ce5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ResourceNotFoundException</span></td><td><code>c1dbf326fbf512e4</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.RoleServiceImpl</span></td><td><code>855d7c160b044703</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DPostgresqlContainer</span></td><td><code>ea92aedb4749868d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig</span></td><td><code>750478b47e5252e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..EnhancerBySpringCGLIB..155f405e</span></td><td><code>cf66fdd89860e924</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..EnhancerBySpringCGLIB..155f405e..FastClassBySpringCGLIB..358d91eb</span></td><td><code>f340c3bcd03d327b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..FastClassBySpringCGLIB..aff467ef</span></td><td><code>853e156651c4603a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig</span></td><td><code>339ebed9f788f1ca</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..EnhancerBySpringCGLIB..6cde31c7</span></td><td><code>3670cf68182241cb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..EnhancerBySpringCGLIB..6cde31c7..FastClassBySpringCGLIB..58161a41</span></td><td><code>2962e8f3ef6e567a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..FastClassBySpringCGLIB..fc123538</span></td><td><code>660525c3b25cdde5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.DataSetup</span></td><td><code>9e74d3147898e543</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.DateUtil</span></td><td><code>0ee657f949290243</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract</span></td><td><code>d5213578f7cd152d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract.ContractType</span></td><td><code>3b7b4fe6f0359810</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract.UpdateMode</span></td><td><code>5bb0c2f09d65cd51</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.413XWEyS</span></td><td><code>702172e394aac64c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.Abck14VX</span></td><td><code>2be185d0c12c2851</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.AvJZYSZs</span></td><td><code>867dace998dcffda</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.BSwTiPtE</span></td><td><code>8f393e7e5a4edfc7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.CQZR0M1K</span></td><td><code>e1f72c40181fc51a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.DHxDNUaK</span></td><td><code>bcf648619f769dc6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.FYv82cqa</span></td><td><code>402b0550ff5b38e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.GZsnPpWm</span></td><td><code>ce55e07e30a7a587</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.I7MkikbB</span></td><td><code>e4e16387393d5d38</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.KaTYjiR6</span></td><td><code>dbe84afdd781d956</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.Nu5esgJq</span></td><td><code>444424873bd01763</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.QQDMZBzC</span></td><td><code>0acaa8e391518c8b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.RRpCtOiH</span></td><td><code>e0f0c7f9f1c2b273</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.UAIu1YlQ</span></td><td><code>06bfce35810e7bf5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.VblF9rOq</span></td><td><code>351daa5b22f379ec</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.XOPveZOh</span></td><td><code>d84197d9e5473ada</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.YTTUrBD9</span></td><td><code>4eca1c6c9c244c98</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.ZqjWRVXd</span></td><td><code>881c9dd3f31ba513</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.e5YkS7sz</span></td><td><code>86dd452b14d131d2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.jeKlcTgY</span></td><td><code>371de93aa4af5c54</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.qYzf0LZD</span></td><td><code>10c99a9f910737b0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.rGCx50IN</span></td><td><code>9b95f2ee51fb2989</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.sJwLj0NQ</span></td><td><code>d2d115ed118cfaeb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.sjrGn86d</span></td><td><code>c9f9ece450f42039</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.uNPAbt0V</span></td><td><code>f753ca5efdb296f1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.uOs2YISU</span></td><td><code>73c755ce07f09afb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.TimestampBase</span></td><td><code>98d3d71e16ca2649</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig</span></td><td><code>d1bbf3436d19819c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..EnhancerBySpringCGLIB..d7dbd5c1</span></td><td><code>3f9af44e1df61c8e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..EnhancerBySpringCGLIB..d7dbd5c1..FastClassBySpringCGLIB..f0d0ea57</span></td><td><code>f6881a9a2ff693fd</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..FastClassBySpringCGLIB..56df93f2</span></td><td><code>d3cb8811b880c9f5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSEventClient</span></td><td><code>eaf05804f6e524f7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.config.Ab2dEnvironment</span></td><td><code>4e83aedecc0646b8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.JobStatusChangeEvent</span></td><td><code>017daff7a9c2ab06</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.LoggableEvent</span></td><td><code>b5aac0c2c6d382c9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.SlackEvents</span></td><td><code>998a7d6e51271dc3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.fhir.FhirVersion</span></td><td><code>e0d5d638201cfdc3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.fhir.Versions</span></td><td><code>8ee0e779cb2379e9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.JobTestSpringBootApp</span></td><td><code>df32e7e7c3e4e2d6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.JobTestSpringBootApp..EnhancerBySpringCGLIB..9cecf5c9</span></td><td><code>f1eebd1b3e03df33</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/JobPollResult.html" class="el_class">gov.cms.ab2d.job.dto.JobPollResult</a></td><td><code>169df12eba1d72f5</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/StaleJob.html" class="el_class">gov.cms.ab2d.job.dto.StaleJob</a></td><td><code>000e5132023ded2f</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/StartJobDTO.html" class="el_class">gov.cms.ab2d.job.dto.StartJobDTO</a></td><td><code>f0a15b91d5fedd71</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/Job.html" class="el_class">gov.cms.ab2d.job.model.Job</a></td><td><code>2f57beff628ad983</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobOutput.html" class="el_class">gov.cms.ab2d.job.model.JobOutput</a></td><td><code>2bd4f8d1b6911fe4</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStartedBy.html" class="el_class">gov.cms.ab2d.job.model.JobStartedBy</a></td><td><code>2b0fe7460ae306f5</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus.html" class="el_class">gov.cms.ab2d.job.model.JobStatus</a></td><td><code>371057992d3b6a49</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$1.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.1</a></td><td><code>41fd2321b7d0b691</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$2.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.2</a></td><td><code>556f7ee3ae6c72cc</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$3.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.3</a></td><td><code>161a7b73c14b4a34</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$4.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.4</a></td><td><code>9a656652e1b8ef3a</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$5.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.5</a></td><td><code>0f20640f46136df2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.model.JobTest</span></td><td><code>b4dc2186bc63e435</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/InvalidJobAccessException.html" class="el_class">gov.cms.ab2d.job.service.InvalidJobAccessException</a></td><td><code>76da73823d0164b6</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/InvalidJobStateTransition.html" class="el_class">gov.cms.ab2d.job.service.InvalidJobStateTransition</a></td><td><code>daf5e86dbe1942b5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobCleanup</span></td><td><code>0dd1aae13c75998f</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobOutputMissingException.html" class="el_class">gov.cms.ab2d.job.service.JobOutputMissingException</a></td><td><code>ea2d4888f5bf12db</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobOutputServiceImpl.html" class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl</a></td><td><code>74057a92b17791cc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..EnhancerBySpringCGLIB..8ec30a3e</span></td><td><code>beaa37bf5fb21330</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..EnhancerBySpringCGLIB..8ec30a3e..FastClassBySpringCGLIB..4e42a082</span></td><td><code>697a4fd501a562d1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..FastClassBySpringCGLIB..ec078cb7</span></td><td><code>4ab5b840e3553998</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceTest</span></td><td><code>9fc4414581d252ab</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobServiceImpl.html" class="el_class">gov.cms.ab2d.job.service.JobServiceImpl</a></td><td><code>0dcbb2aad10f60c3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..EnhancerBySpringCGLIB..b06190e1</span></td><td><code>cac3a6f109c6eac3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..EnhancerBySpringCGLIB..b06190e1..FastClassBySpringCGLIB..4400f50d</span></td><td><code>5bac0c678acf4b33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..FastClassBySpringCGLIB..385276b8</span></td><td><code>81041e7cee30f652</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceTest</span></td><td><code>ad00826271a3e2db</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.MaxJobsTest</span></td><td><code>0903682bee65914a</code></td></tr><tr><td><a href="gov.cms.ab2d.job.util/JobUtil.html" class="el_class">gov.cms.ab2d.job.util.JobUtil</a></td><td><code>1d3e5fbcaf6d78ed</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.util.JobUtilTest</span></td><td><code>b1522dea279fa270</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.properties.client.PropertiesClientImpl</span></td><td><code>630329cdcc654d63</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.condition.OnAwsCloudEnvironmentCondition</span></td><td><code>eccf47c546d4cdb7</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextCredentialsAutoConfiguration</span></td><td><code>554171c127512f0f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextCredentialsAutoConfiguration.Registrar</span></td><td><code>5b58543aaf7c9995</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextRegionProviderAutoConfiguration</span></td><td><code>ee3eb11a73c406af</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextRegionProviderAutoConfiguration.Registrar</span></td><td><code>602fb2b6584f0ef4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextResourceLoaderAutoConfiguration</span></td><td><code>42bff6f302202dcd</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextResourceLoaderAutoConfiguration.Registrar</span></td><td><code>580f7e2ca0c27b42</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsCredentialsProperties</span></td><td><code>d3179a2449dcaa31</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsRegionProperties</span></td><td><code>2d0e288106d738a4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsS3ResourceLoaderProperties</span></td><td><code>a2f7de5058963f33</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration</span></td><td><code>79f0a33aff65ad20</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration.SnsWebConfiguration</span></td><td><code>b592a511c074cd51</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration.SnsWebConfiguration.1</span></td><td><code>ba0a2d60af5dd2ce</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsProperties</span></td><td><code>eb4a9a9f3f3b3057</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration</span></td><td><code>ca2ea2e3ce2fb52c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration.SqsClientConfiguration</span></td><td><code>e446ea899a659032</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration.SqsConfiguration</span></td><td><code>5c5328b1730247fd</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties</span></td><td><code>c4e4b72ba87f1c87</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties.HandlerProperties</span></td><td><code>3ab31f7c45165a82</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties.ListenerProperties</span></td><td><code>a0c57f0a3ac6e207</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.security.CognitoAuthenticationAutoConfiguration.OnUserPoolIdAndRegionPropertiesCondition</span></td><td><code>528138b716fe0cc6</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.annotation.OnMissingAmazonClientCondition</span></td><td><code>f32344994f3eaa6d</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.config.annotation.ContextResourceLoaderConfiguration.Registrar</span></td><td><code>3d9e83361904b453</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.support.io.SimpleStorageProtocolResolverConfigurer</span></td><td><code>59398fcdb40deb29</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.SpringCloudClientConfiguration</span></td><td><code>f6eec74a4a355348</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AmazonWebserviceClientConfigurationUtils</span></td><td><code>fa5c6a3f92d4f16d</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AmazonWebserviceClientFactoryBean</span></td><td><code>57b461a6f4f79317</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AwsClientProperties</span></td><td><code>62961bfc4748acca</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.io.s3.SimpleStorageNameUtils</span></td><td><code>cb4ebd7b30214750</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.io.s3.SimpleStorageProtocolResolver</span></td><td><code>93cbadb32d64c89f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.region.StaticRegionProvider</span></td><td><code>3ccdc670fbaf096c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.config.QueueMessageHandlerFactory</span></td><td><code>aff51f1e91e411f0</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.config.SimpleMessageListenerContainerFactory</span></td><td><code>af632973a7fd3bb5</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.core.QueueMessagingTemplate</span></td><td><code>4d3d6b31f3766161</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.core.support.AbstractMessageChannelMessagingSendingTemplate</span></td><td><code>ca1c56cd5304a17b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.AbstractNotificationMessageHandlerMethodArgumentResolver</span></td><td><code>9163c5b5c28c3a06</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationMessageHandlerMethodArgumentResolver</span></td><td><code>36a1e346604a0a76</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationStatusHandlerMethodArgumentResolver</span></td><td><code>f5b475247911b237</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationSubjectHandlerMethodArgumentResolver</span></td><td><code>e460fbb72c424de6</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.config.NotificationHandlerMethodArgumentResolverConfigurationUtils</span></td><td><code>d61148fc3f309e56</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.AbstractMessageListenerContainer</span></td><td><code>fd78ed31ae20f29f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.QueueMessageHandler</span></td><td><code>0ca476ee3fa60bce</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.QueueMessageHandler.NoOpValidator</span></td><td><code>a3d325f9bbe7501b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SendToHandlerMethodReturnValueHandler</span></td><td><code>b01aca0392c4cb64</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SimpleMessageListenerContainer</span></td><td><code>69545d24bd1e29c4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SqsMessageDeletionPolicy</span></td><td><code>ee52f9c759739e2c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SqsMessageMethodArgumentResolver</span></td><td><code>6b6320bced425df2</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.support.AcknowledgmentHandlerMethodArgumentResolver</span></td><td><code>966ae62baacb1b8e</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.support.VisibilityHandlerMethodArgumentResolver</span></td><td><code>42724e0c10a39dc4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.NotificationMessageArgumentResolver</span></td><td><code>b2d0a52e19442f9b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.NotificationSubjectArgumentResolver</span></td><td><code>ce9cb5e9346cdfd2</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.SqsHeadersMethodArgumentResolver</span></td><td><code>61d1352dbbb2cd39</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.converter.NotificationRequestConverter</span></td><td><code>1843f52db95e2e7f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.converter.ObjectMessageConverter</span></td><td><code>86e2a599b8e2fadf</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.destination.DynamicQueueUrlDestinationResolver</span></td><td><code>9e9fa514743494cc</code></td></tr><tr><td><span class="el_class">io.netty.util.AbstractConstant</span></td><td><code>0f040c9c0d06c7a3</code></td></tr><tr><td><span class="el_class">io.netty.util.AttributeKey</span></td><td><code>75cb5b176dc487c1</code></td></tr><tr><td><span class="el_class">io.netty.util.AttributeKey.1</span></td><td><code>21d1e71eb5b0c66a</code></td></tr><tr><td><span class="el_class">io.netty.util.ConstantPool</span></td><td><code>f136ff447d5c0a93</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.CleanerJava9</span></td><td><code>c3217a004b2cb445</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.CleanerJava9.1</span></td><td><code>715f0315895648ab</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.ObjectUtil</span></td><td><code>f761d0f0aaff1a5b</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent</span></td><td><code>06e808f0efd2a309</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.1</span></td><td><code>6de9e3bec6d77e49</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.2</span></td><td><code>bec19bd2b2a422a6</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.4</span></td><td><code>65e7a0a6d8af0738</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0</span></td><td><code>192d501cb5e4c9da</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.1</span></td><td><code>f03ff3a49bff1101</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.2</span></td><td><code>e854371902d30ab4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.3</span></td><td><code>0df1a05674ffc3c4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.4</span></td><td><code>df80102c32cdcaf6</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.5</span></td><td><code>3cd7e2a765c36019</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.6</span></td><td><code>684e777e0bee3ca8</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.7</span></td><td><code>5beb42d1db3de883</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.9</span></td><td><code>19a1250c80b0d417</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.ReflectionUtil</span></td><td><code>c494a7a84e352d17</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.SystemPropertyUtil</span></td><td><code>eda8201dbf84e815</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.AbstractInternalLogger</span></td><td><code>4ed6b1fea48925d4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.InternalLoggerFactory</span></td><td><code>fc75e15d1bb35362</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.LocationAwareSlf4JLogger</span></td><td><code>06cccddcab82d498</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.Slf4JLoggerFactory</span></td><td><code>1042cae2dcaea037</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.Slf4JLoggerFactory.NopInstanceHolder</span></td><td><code>2dfbd24a979764a5</code></td></tr><tr><td><span class="el_class">java.sql.DriverInfo</span></td><td><code>eb5e9effe229e19a</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager</span></td><td><code>c36bb91292800306</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager.1</span></td><td><code>4d9905a690b31323</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager.2</span></td><td><code>82075f840596abb3</code></td></tr><tr><td><span class="el_class">java.sql.SQLException</span></td><td><code>70f019c57e2fb6e1</code></td></tr><tr><td><span class="el_class">java.sql.SQLPermission</span></td><td><code>54412b8d052da6b6</code></td></tr><tr><td><span class="el_class">java.sql.Timestamp</span></td><td><code>a63c1c76a5380acd</code></td></tr><tr><td><span class="el_class">javax.annotation.meta.When</span></td><td><code>584296a1ba8ea611</code></td></tr><tr><td><span class="el_class">javax.el.ELManager</span></td><td><code>a12387794d838f22</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory</span></td><td><code>8af382a33040e370</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory.CacheKey</span></td><td><code>9ae5b8172ab611f9</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory.CacheValue</span></td><td><code>f3c4077141a2308d</code></td></tr><tr><td><span class="el_class">javax.el.Util</span></td><td><code>de5656582166fafa</code></td></tr><tr><td><span class="el_class">javax.el.Util.CacheKey</span></td><td><code>63faabc22e2fd964</code></td></tr><tr><td><span class="el_class">javax.el.Util.CacheValue</span></td><td><code>213084bee75afc60</code></td></tr><tr><td><span class="el_class">javax.persistence.CacheRetrieveMode</span></td><td><code>273bd91184737933</code></td></tr><tr><td><span class="el_class">javax.persistence.CacheStoreMode</span></td><td><code>736c4a51d1a49265</code></td></tr><tr><td><span class="el_class">javax.persistence.CascadeType</span></td><td><code>b5dcba77401134f8</code></td></tr><tr><td><span class="el_class">javax.persistence.ConstraintMode</span></td><td><code>3e699fe68739c682</code></td></tr><tr><td><span class="el_class">javax.persistence.DiscriminatorType</span></td><td><code>6b1671936519c1dc</code></td></tr><tr><td><span class="el_class">javax.persistence.EnumType</span></td><td><code>52b3f8e8d0f8bad9</code></td></tr><tr><td><span class="el_class">javax.persistence.FetchType</span></td><td><code>a4d3e24993e21060</code></td></tr><tr><td><span class="el_class">javax.persistence.FlushModeType</span></td><td><code>607eb60219b1a13e</code></td></tr><tr><td><span class="el_class">javax.persistence.GenerationType</span></td><td><code>4c62a706c2ffa234</code></td></tr><tr><td><span class="el_class">javax.persistence.InheritanceType</span></td><td><code>f8d4b7e7055576f3</code></td></tr><tr><td><span class="el_class">javax.persistence.LockModeType</span></td><td><code>6a6d75bdc9e5ac41</code></td></tr><tr><td><span class="el_class">javax.persistence.NoResultException</span></td><td><code>720fb171df10bc10</code></td></tr><tr><td><span class="el_class">javax.persistence.Persistence</span></td><td><code>216045b6f0a93b9e</code></td></tr><tr><td><span class="el_class">javax.persistence.Persistence.PersistenceUtilImpl</span></td><td><code>e31045726852dfe8</code></td></tr><tr><td><span class="el_class">javax.persistence.PersistenceContextType</span></td><td><code>33022ffbba0e3bfb</code></td></tr><tr><td><span class="el_class">javax.persistence.PersistenceException</span></td><td><code>f7ba9f9693e93073</code></td></tr><tr><td><span class="el_class">javax.persistence.PessimisticLockScope</span></td><td><code>c07a815215710a6c</code></td></tr><tr><td><span class="el_class">javax.persistence.RollbackException</span></td><td><code>ac7526fc0be9db0b</code></td></tr><tr><td><span class="el_class">javax.persistence.SharedCacheMode</span></td><td><code>31e581cfc81eb206</code></td></tr><tr><td><span class="el_class">javax.persistence.SynchronizationType</span></td><td><code>3e49777a7c0f37e2</code></td></tr><tr><td><span class="el_class">javax.persistence.TemporalType</span></td><td><code>e4593e83ade1734a</code></td></tr><tr><td><span class="el_class">javax.persistence.ValidationMode</span></td><td><code>7b6e77cd751c7f51</code></td></tr><tr><td><span class="el_class">javax.persistence.criteria.JoinType</span></td><td><code>64720838777121e6</code></td></tr><tr><td><span class="el_class">javax.persistence.criteria.Predicate.BooleanOperator</span></td><td><code>ef69fb07afeb45ab</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Attribute.PersistentAttributeType</span></td><td><code>b8358747980c390a</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Bindable.BindableType</span></td><td><code>c8a4b006cca9f9da</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.PluralAttribute.CollectionType</span></td><td><code>2b4a348bbe532b3f</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Type.PersistenceType</span></td><td><code>f7e21cadc0ce09b7</code></td></tr><tr><td><span class="el_class">javax.persistence.spi.PersistenceUnitTransactionType</span></td><td><code>983aa44b000e5bb2</code></td></tr><tr><td><span class="el_class">javax.servlet.DispatcherType</span></td><td><code>ee110897cc14a56f</code></td></tr><tr><td><span class="el_class">javax.servlet.GenericServlet</span></td><td><code>ed7d65aabb6e22e1</code></td></tr><tr><td><span class="el_class">javax.servlet.MultipartConfigElement</span></td><td><code>8a88686f5909a372</code></td></tr><tr><td><span class="el_class">javax.servlet.ServletInputStream</span></td><td><code>9210b1a3c6e801bc</code></td></tr><tr><td><span class="el_class">javax.servlet.ServletOutputStream</span></td><td><code>3919a67b4b56f729</code></td></tr><tr><td><span class="el_class">javax.servlet.SessionTrackingMode</span></td><td><code>4728805721f3b238</code></td></tr><tr><td><span class="el_class">javax.servlet.http.HttpServlet</span></td><td><code>37bbd38a827afbc4</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintTarget</span></td><td><code>ac805a75a8daa5a7</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintValidator</span></td><td><code>c10dc7b1141cc822</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintViolationException</span></td><td><code>42a247eeee013328</code></td></tr><tr><td><span class="el_class">javax.validation.ElementKind</span></td><td><code>0f8ad4fec70a4a77</code></td></tr><tr><td><span class="el_class">javax.validation.Validation</span></td><td><code>abc4ea9938d7fa94</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.DefaultValidationProviderResolver</span></td><td><code>00a6fa0b850d03ff</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.GenericBootstrapImpl</span></td><td><code>0f9c2e6ab70940c2</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.GetValidationProviderListAction</span></td><td><code>fd32dbde6072ceae</code></td></tr><tr><td><span class="el_class">javax.validation.ValidationException</span></td><td><code>181bc43b3b6fbe05</code></td></tr><tr><td><span class="el_class">javax.validation.constraintvalidation.ValidationTarget</span></td><td><code>d5f8ccab5b116560</code></td></tr><tr><td><span class="el_class">javax.validation.executable.ExecutableType</span></td><td><code>fba9bc85de946dde</code></td></tr><tr><td><span class="el_class">javax.validation.metadata.ValidateUnwrappedValue</span></td><td><code>3d1c7ece025c0687</code></td></tr><tr><td><span class="el_class">kotlin.DeprecationLevel</span></td><td><code>55f7095ae1aec5fc</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersion</span></td><td><code>9fbc7386c90d0af4</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersion.Companion</span></td><td><code>434d4b13b54b168a</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersionCurrentValue</span></td><td><code>5bf8c4393b965df4</code></td></tr><tr><td><span class="el_class">kotlin.annotation.AnnotationRetention</span></td><td><code>7bbe3b678e9908fe</code></td></tr><tr><td><span class="el_class">kotlin.annotation.AnnotationTarget</span></td><td><code>12f6a905b338b488</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractCollection</span></td><td><code>d5263d9c0000663a</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractList</span></td><td><code>bb17e23cb871a039</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractList.Companion</span></td><td><code>c58a8c2d20ee730a</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArrayAsCollection</span></td><td><code>fdebeca9a0243472</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysKt___ArraysJvmKt</span></td><td><code>42eb3fe86b4ad4a0</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysKt___ArraysKt</span></td><td><code>3ec92cdd5f4b3dde</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysUtilJVM</span></td><td><code>9595b65dba34e5b6</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__CollectionsJVMKt</span></td><td><code>03e0a0357f0bc3b3</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__CollectionsKt</span></td><td><code>e4e1208a66288323</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__MutableCollectionsJVMKt</span></td><td><code>2ed61bceedb93d4a</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt___CollectionsKt</span></td><td><code>1cdce47d79685212</code></td></tr><tr><td><span class="el_class">kotlin.collections.EmptySet</span></td><td><code>58a1426bea9aaa9f</code></td></tr><tr><td><span class="el_class">kotlin.collections.SetsKt__SetsKt</span></td><td><code>e5504b460d14b879</code></td></tr><tr><td><span class="el_class">kotlin.comparisons.ComparisonsKt__ComparisonsKt</span></td><td><code>e3e49a4d49c05bc3</code></td></tr><tr><td><span class="el_class">kotlin.internal.ProgressionUtilKt</span></td><td><code>5eaee631f07b15e2</code></td></tr><tr><td><span class="el_class">kotlin.jvm.internal.Intrinsics</span></td><td><code>842f06f411842f7e</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntProgression</span></td><td><code>d0542f70884d71c0</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntProgression.Companion</span></td><td><code>8a2231aef68bed7b</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntRange</span></td><td><code>f64ded03573c7202</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntRange.Companion</span></td><td><code>30a380b0dced0df5</code></td></tr><tr><td><span class="el_class">kotlin.ranges.RangesKt__RangesKt</span></td><td><code>76b2c81500d7d69a</code></td></tr><tr><td><span class="el_class">kotlin.ranges.RangesKt___RangesKt</span></td><td><code>6f2fbc845c3873a4</code></td></tr><tr><td><span class="el_class">kotlin.text.Regex</span></td><td><code>6bee4dae530801fc</code></td></tr><tr><td><span class="el_class">kotlin.text.Regex.Companion</span></td><td><code>bcfa89c12e9e13c2</code></td></tr><tr><td><span class="el_class">kotlin.text.StringsKt__StringsJVMKt</span></td><td><code>c68ee1189adf9c3b</code></td></tr><tr><td><span class="el_class">kotlin.text.StringsKt__StringsKt</span></td><td><code>6b790c2539737b4b</code></td></tr><tr><td><span class="el_class">liquibase.AbstractExtensibleObject</span></td><td><code>02a2ceaa90277dd2</code></td></tr><tr><td><span class="el_class">liquibase.CatalogAndSchema</span></td><td><code>3afda14d0ab815af</code></td></tr><tr><td><span class="el_class">liquibase.CatalogAndSchema.CatalogAndSchemaCase</span></td><td><code>9de4acd38cc56070</code></td></tr><tr><td><span class="el_class">liquibase.ContextExpression</span></td><td><code>d190b2220da7e8f8</code></td></tr><tr><td><span class="el_class">liquibase.Contexts</span></td><td><code>360b55cc555ed0d6</code></td></tr><tr><td><span class="el_class">liquibase.GlobalConfiguration</span></td><td><code>66846a398ad9c8ea</code></td></tr><tr><td><span class="el_class">liquibase.LabelExpression</span></td><td><code>6c976fd0590afc2a</code></td></tr><tr><td><span class="el_class">liquibase.Labels</span></td><td><code>2d38831717e52ab0</code></td></tr><tr><td><span class="el_class">liquibase.Liquibase</span></td><td><code>f9f0ebbd35147838</code></td></tr><tr><td><span class="el_class">liquibase.RuntimeEnvironment</span></td><td><code>47d372d4d489e269</code></td></tr><tr><td><span class="el_class">liquibase.Scope</span></td><td><code>4151a916e260dbc2</code></td></tr><tr><td><span class="el_class">liquibase.Scope.Attr</span></td><td><code>2f0b4853bd9b7d0e</code></td></tr><tr><td><span class="el_class">liquibase.ScopeManager</span></td><td><code>34f2063d190bda20</code></td></tr><tr><td><span class="el_class">liquibase.SingletonScopeManager</span></td><td><code>4ca760b3f45e77ee</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractChange</span></td><td><code>ac4968be46eb3cbb</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractSQLChange</span></td><td><code>09dc22c44013f73e</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractSQLChange.NormalizingStream</span></td><td><code>00db93189f150c2f</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeFactory</span></td><td><code>c87497ef40bbdabb</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeMetaData</span></td><td><code>43480eac9974f9e7</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeParameterMetaData</span></td><td><code>d4ab6ad604aa9f5b</code></td></tr><tr><td><span class="el_class">liquibase.change.CheckSum</span></td><td><code>dba0b23ad31524a5</code></td></tr><tr><td><span class="el_class">liquibase.change.ColumnConfig</span></td><td><code>c679daf22963494a</code></td></tr><tr><td><span class="el_class">liquibase.change.core.RawSQLChange</span></td><td><code>f1d5c14bd6978102</code></td></tr><tr><td><span class="el_class">liquibase.changelog.AbstractChangeLogHistoryService</span></td><td><code>e86ffb69b370c4b5</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogHistoryServiceFactory</span></td><td><code>15204ca889ac4c5c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogHistoryServiceFactory.1</span></td><td><code>919b49f91316a203</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogIterator</span></td><td><code>82e43cabc9759f8b</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogIterator.2</span></td><td><code>e56132a04b8a705a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters</span></td><td><code>9c3e5084a19a8014</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters.ChangeLogParameter</span></td><td><code>8190406a00c0acae</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters.ExpressionExpander</span></td><td><code>3a6b572188804cda</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet</span></td><td><code>4fd012037b30f195</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.ExecType</span></td><td><code>b90e8d7444351e21</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.RunStatus</span></td><td><code>89a22a55e07ca12c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.ValidationFailOption</span></td><td><code>8b5616e7e39f851b</code></td></tr><tr><td><span class="el_class">liquibase.changelog.DatabaseChangeLog</span></td><td><code>05d9b7b69545db97</code></td></tr><tr><td><span class="el_class">liquibase.changelog.DatabaseChangeLog.GlobalPreconditionContainer</span></td><td><code>0d6870b0b0ae0d69</code></td></tr><tr><td><span class="el_class">liquibase.changelog.MockChangeLogHistoryService</span></td><td><code>d767ef59deac85fc</code></td></tr><tr><td><span class="el_class">liquibase.changelog.RanChangeSet</span></td><td><code>57e097c14925d3e0</code></td></tr><tr><td><span class="el_class">liquibase.changelog.RollbackContainer</span></td><td><code>b2d0962b7a503af1</code></td></tr><tr><td><span class="el_class">liquibase.changelog.StandardChangeLogHistoryService</span></td><td><code>b28da4f45ccc0a96</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ChangeSetFilterResult</span></td><td><code>b454bde355151a3c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ContextChangeSetFilter</span></td><td><code>7c2c2a9f7b171b6a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.DbmsChangeSetFilter</span></td><td><code>5001a26d067cc51f</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.IgnoreChangeSetFilter</span></td><td><code>c300e69c4125d862</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.LabelChangeSetFilter</span></td><td><code>f45e650eb12e318c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ShouldRunChangeSetFilter</span></td><td><code>1312dc33482d6bf5</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.ChangeSetVisitor.Direction</span></td><td><code>6c31c394a06b194a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.UpdateVisitor</span></td><td><code>b7441806531c80ed</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.ValidatingVisitor</span></td><td><code>52c15b79bbba3333</code></td></tr><tr><td><span class="el_class">liquibase.configuration.AbstractConfigurationValueProvider</span></td><td><code>deab989a4f9150a8</code></td></tr><tr><td><span class="el_class">liquibase.configuration.AbstractMapConfigurationValueProvider</span></td><td><code>5a576dd76ef840c0</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition</span></td><td><code>cd85e6d315a0a502</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.Builder</span></td><td><code>e9e7b1d8e118cd8d</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.Building</span></td><td><code>d54724bbf1b72b52</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.DefaultValueProvider</span></td><td><code>34a2e240ac1d9e50</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationValueConverter</span></td><td><code>9933799300eee540</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationValueObfuscator</span></td><td><code>7dc1ee5bcc9e3eab</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfiguredValue</span></td><td><code>41b33785ca091456</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfiguredValue.NoValueProvider</span></td><td><code>247f98e53ed535f5</code></td></tr><tr><td><span class="el_class">liquibase.configuration.LiquibaseConfiguration</span></td><td><code>c1866df8a69ed3d9</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ProvidedValue</span></td><td><code>1dfdafef6060f100</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.DeprecatedConfigurationValueProvider</span></td><td><code>c52148dc2dc496d0</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.ScopeValueProvider</span></td><td><code>e0cca000533c7d4d</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.SystemPropertyValueProvider</span></td><td><code>f50f8513abde3bcf</code></td></tr><tr><td><span class="el_class">liquibase.configuration.pro.EnvironmentValueProvider</span></td><td><code>04215ed24484d37c</code></td></tr><tr><td><span class="el_class">liquibase.database.AbstractJdbcDatabase</span></td><td><code>43488964edc81e19</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseFactory</span></td><td><code>2948ce128ff2af88</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseFactory.DatabaseComparator</span></td><td><code>b0c4e3d5a20bcc6c</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseList</span></td><td><code>8891e93bc1c5905c</code></td></tr><tr><td><span class="el_class">liquibase.database.MockDatabaseConnection</span></td><td><code>1c2d24ce48aa8a1c</code></td></tr><tr><td><span class="el_class">liquibase.database.ObjectQuotingStrategy</span></td><td><code>41e0d6c475859d1c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.AbstractDb2Database</span></td><td><code>607e324210a93118</code></td></tr><tr><td><span class="el_class">liquibase.database.core.CockroachDatabase</span></td><td><code>507609905970504d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.DB2Database</span></td><td><code>e6446b7ca7c5204d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Db2zDatabase</span></td><td><code>4b7c69611df60f67</code></td></tr><tr><td><span class="el_class">liquibase.database.core.DerbyDatabase</span></td><td><code>d57931a1c59420a9</code></td></tr><tr><td><span class="el_class">liquibase.database.core.EnterpriseDBDatabase</span></td><td><code>bf589104ee9d632c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Firebird3Database</span></td><td><code>8c6df98ae2ee190c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.FirebirdDatabase</span></td><td><code>d78ec923e15c322f</code></td></tr><tr><td><span class="el_class">liquibase.database.core.H2Database</span></td><td><code>7eccc2a86e339bd5</code></td></tr><tr><td><span class="el_class">liquibase.database.core.HsqlDatabase</span></td><td><code>c5047d7123efb57c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.InformixDatabase</span></td><td><code>fd74c7ce6277d2b8</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Ingres9Database</span></td><td><code>23a404cd7c63e4d4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MSSQLDatabase</span></td><td><code>e261cacc6bb7771f</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MariaDBDatabase</span></td><td><code>a2992671530e267a</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MockDatabase</span></td><td><code>994f9793fb1e21a4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MySQLDatabase</span></td><td><code>f52eb17fc2af1fdd</code></td></tr><tr><td><span class="el_class">liquibase.database.core.OracleDatabase</span></td><td><code>4b1f63c2c80578d4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.PostgresDatabase</span></td><td><code>8992946a689beb15</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SQLiteDatabase</span></td><td><code>f202b244f77d9a9d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SybaseASADatabase</span></td><td><code>836e04da9ac6ae21</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SybaseDatabase</span></td><td><code>b14aab295bc9343d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.UnsupportedDatabase</span></td><td><code>f937e9ac691ff8b6</code></td></tr><tr><td><span class="el_class">liquibase.database.jvm.JdbcConnection</span></td><td><code>b5964a0d2637c5e4</code></td></tr><tr><td><span class="el_class">liquibase.database.jvm.JdbcConnection.PatternPair</span></td><td><code>f4656b526ed8aad4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.DataTypeFactory</span></td><td><code>976dd421ce3f29f4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.DatabaseDataType</span></td><td><code>bb3012c8899c9533</code></td></tr><tr><td><span class="el_class">liquibase.datatype.LiquibaseDataType</span></td><td><code>2618811fc53dab15</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BigIntType</span></td><td><code>73526f2f80e70083</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BlobType</span></td><td><code>76b40badf5b54691</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BooleanType</span></td><td><code>8ce42b24e6f3ee9b</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.CharType</span></td><td><code>891c7f7977e1bd41</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.ClobType</span></td><td><code>ad91d8c5952dcb48</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.CurrencyType</span></td><td><code>3c5643e63400d1b2</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DatabaseFunctionType</span></td><td><code>8fc10339d99b2ee9</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DateTimeType</span></td><td><code>cc7cb8efc5b5e22a</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DateType</span></td><td><code>19c195b59b3a765e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DecimalType</span></td><td><code>dd7b45442b414bbc</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DoubleType</span></td><td><code>5912b41e472c0539</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.FloatType</span></td><td><code>89393da5f2bf949e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.IntType</span></td><td><code>69319486ee4832dc</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.MediumIntType</span></td><td><code>447b66868ee33509</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NCharType</span></td><td><code>d943396f38e051b2</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NVarcharType</span></td><td><code>a8544c25150335a4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NumberType</span></td><td><code>5dddf688d929b58e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.SmallIntType</span></td><td><code>3c23aac28f02b2ea</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TimeType</span></td><td><code>4a50b20c40fb833f</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TimestampType</span></td><td><code>bd8c8add262d5164</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TinyIntType</span></td><td><code>2a9d1f98fb517623</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.UUIDType</span></td><td><code>667b15f2db105d04</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.UnknownType</span></td><td><code>6f3ba1db2dfd34a0</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.VarcharType</span></td><td><code>7eb0f8213aaf7e9f</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.XMLType</span></td><td><code>ded5cdfbd61d84ec</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorChain</span></td><td><code>c729ba7f551376b1</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorComparator</span></td><td><code>7c36a260f838b1a6</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorFactory</span></td><td><code>9acfa7ffdfb5f3c8</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.CatalogComparator</span></td><td><code>0faf76fbaebd44b3</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.ColumnComparator</span></td><td><code>a2fb5282f39b9497</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.CommonCatalogSchemaComparator</span></td><td><code>150ec8e7c71134cc</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.DefaultDatabaseObjectComparator</span></td><td><code>d5c267640cdc127e</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.ForeignKeyComparator</span></td><td><code>a50e13d0dc6c2024</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.IndexComparator</span></td><td><code>2e31069e74d2957c</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.PrimaryKeyComparator</span></td><td><code>ee375e9e8751df1a</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.SchemaComparator</span></td><td><code>42cd2be5dda7a2ef</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.TableComparator</span></td><td><code>c3f9bb80f8b8aa53</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.UniqueConstraintComparator</span></td><td><code>3cb8df70248890c9</code></td></tr><tr><td><span class="el_class">liquibase.exception.DatabaseException</span></td><td><code>f64db69a716e7896</code></td></tr><tr><td><span class="el_class">liquibase.exception.LiquibaseException</span></td><td><code>89ab8987fb1470d2</code></td></tr><tr><td><span class="el_class">liquibase.exception.ValidationErrors</span></td><td><code>bda9492d441d9b1a</code></td></tr><tr><td><span class="el_class">liquibase.exception.Warnings</span></td><td><code>b207b9bdec7f2a8c</code></td></tr><tr><td><span class="el_class">liquibase.executor.AbstractExecutor</span></td><td><code>f434e22435994a1e</code></td></tr><tr><td><span class="el_class">liquibase.executor.Executor</span></td><td><code>71f0f531d57276d9</code></td></tr><tr><td><span class="el_class">liquibase.executor.ExecutorService</span></td><td><code>3a339993796c3c3b</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.ColumnMapRowMapper</span></td><td><code>4b62d9e5fe7d04a2</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor</span></td><td><code>d1aaa7a37dd49ff4</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.1UpdateStatementCallback</span></td><td><code>1882f19b35ce8c22</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.ExecuteStatementCallback</span></td><td><code>002b90d18131b675</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.QueryCallableStatementCallback</span></td><td><code>338f6ff456c895bf</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.QueryStatementCallback</span></td><td><code>24587f5003aa5c38</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.RowMapperResultSetExtractor</span></td><td><code>dd5e75d188c9c791</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.SingleColumnRowMapper</span></td><td><code>66e21f4e9a6a6179</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubConfiguration</span></td><td><code>a621d87e44615758</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubConfiguration.HubMode</span></td><td><code>348e549a90e790c8</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubServiceFactory</span></td><td><code>590c7fcf7a55d34e</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubServiceFactory.FallbackHubService</span></td><td><code>77eb14d59b23ff58</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubUpdater</span></td><td><code>19ea372f1d45ff2a</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.HttpClient</span></td><td><code>80bf4e37273b5740</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.HttpClient.HubRepresenter</span></td><td><code>93c718918ad005fc</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.MockHubService</span></td><td><code>489bd33ac0ce2c48</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.StandardHubService</span></td><td><code>994f188db2fc3c74</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.Connection</span></td><td><code>3cb19f7fe2530cab</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.HubChangeLog</span></td><td><code>a93e889978abbc9f</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.Project</span></td><td><code>92ebae42ec01a536</code></td></tr><tr><td><span class="el_class">liquibase.integration.commandline.LiquibaseCommandLineConfiguration</span></td><td><code>fda6155a62744fc1</code></td></tr><tr><td><span class="el_class">liquibase.integration.spring.SpringLiquibase</span></td><td><code>d15671591f19ec88</code></td></tr><tr><td><span class="el_class">liquibase.integration.spring.SpringResourceAccessor</span></td><td><code>41e7379ecf713d93</code></td></tr><tr><td><span class="el_class">liquibase.license.LicenseServiceFactory</span></td><td><code>8d272d83f692f7c3</code></td></tr><tr><td><span class="el_class">liquibase.license.LicenseServiceUtils</span></td><td><code>efc0a44cc43f1659</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.DaticalTrueLicenseService</span></td><td><code>d7751456f423f672</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.LicensingSchema</span></td><td><code>916a1f229f2a72cd</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.LicensingSchema.Lazy</span></td><td><code>da97537e5477622f</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceFactory</span></td><td><code>3f47bbb48707c69b</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceFactory.1</span></td><td><code>964090b33a8e5bc4</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceImpl</span></td><td><code>bee67d31b6890e6a</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.MockLockService</span></td><td><code>3b8d098e4106eaa8</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.OfflineLockService</span></td><td><code>5e3543a1c79e370a</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.StandardLockService</span></td><td><code>fa36d5f9af350b46</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.AbstractLogService</span></td><td><code>5aadd4940946b66a</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.AbstractLogger</span></td><td><code>3f8ddbf9e14e62c5</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogService</span></td><td><code>0243f2a200606a39</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogService.BufferedLogMessage</span></td><td><code>f710382a00588bbe</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogger</span></td><td><code>36282e73da5817b7</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.CompositeLogService</span></td><td><code>c48cb3082e7885cd</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.CompositeLogger</span></td><td><code>eb2106a23283863f</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.DefaultLogMessageFilter</span></td><td><code>102539ebebc8ee70</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.DefaultLoggerConfiguration</span></td><td><code>e6fb1ee5dcd7d388</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.JavaLogService</span></td><td><code>aa0296b83409d5b2</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.JavaLogger</span></td><td><code>a8eb085810c81d64</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.LogServiceFactory</span></td><td><code>e53285433492c7d9</code></td></tr><tr><td><span class="el_class">liquibase.osgi.Activator.OSGIContainerChecker</span></td><td><code>a76a88f9a24577dc</code></td></tr><tr><td><span class="el_class">liquibase.parser.ChangeLogParserConfiguration</span></td><td><code>4c6f84d994540262</code></td></tr><tr><td><span class="el_class">liquibase.parser.ChangeLogParserFactory</span></td><td><code>debfd5421eb46f1f</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.ParsedNode</span></td><td><code>c7bf6d218a9cae92</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.formattedsql.FormattedSqlChangeLogParser</span></td><td><code>52ac06ff6f50c732</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.json.JsonChangeLogParser</span></td><td><code>7d06712980f9f569</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.sql.SqlChangeLogParser</span></td><td><code>e84237aa626a4a2e</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.AbstractChangeLogParser</span></td><td><code>0806867b05416205</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.LiquibaseEntityResolver</span></td><td><code>29746467a1625ffe</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.XMLChangeLogSAXParser</span></td><td><code>aec944c1f9d03b1c</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.yaml.YamlChangeLogParser</span></td><td><code>41dab82a22cf7381</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.yaml.YamlParser</span></td><td><code>0697948e26fddf2a</code></td></tr><tr><td><span class="el_class">liquibase.plugin.AbstractPlugin</span></td><td><code>9028ddfdc9dee17f</code></td></tr><tr><td><span class="el_class">liquibase.plugin.AbstractPluginFactory</span></td><td><code>28dadae5eb15c9be</code></td></tr><tr><td><span class="el_class">liquibase.precondition.AbstractPrecondition</span></td><td><code>4cc4dcd1e8dd0426</code></td></tr><tr><td><span class="el_class">liquibase.precondition.PreconditionLogic</span></td><td><code>e052ae0e6db674b9</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.AndPrecondition</span></td><td><code>c6c20d17290fe2a5</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer</span></td><td><code>41c052ad27a6c317</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.ErrorOption</span></td><td><code>5c37368911e7645c</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.FailOption</span></td><td><code>8654d215a5c1d9f6</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.OnSqlOutputOption</span></td><td><code>000deed29b9f1bb7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.C</span></td><td><code>4bb8da311eca5350</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.D</span></td><td><code>1fff28b787e6cfb6</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.N</span></td><td><code>6391bd62bc3ad7b0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.Z</span></td><td><code>63f4109663983e0e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aA</span></td><td><code>bd521a23bec021c2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aB</span></td><td><code>8da894463572e87d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aC</span></td><td><code>a33551aab5f9129d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aE</span></td><td><code>5b03f8a7f4e1d433</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aG</span></td><td><code>e825dd9380fe8500</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ak</span></td><td><code>71e4be0ad3efbb13</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.al</span></td><td><code>417aaa0e6ff8dd6e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.an</span></td><td><code>d260f0c94ee657c0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ao</span></td><td><code>e2d17ba9ffb068bf</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ar</span></td><td><code>8a5884576f9d6f25</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.av</span></td><td><code>fa905c32a7fbffa9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aw</span></td><td><code>88628e189a92cfb4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bG</span></td><td><code>c2df2e8742a0d164</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bH</span></td><td><code>7d4650c26a2885d7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bI</span></td><td><code>034200368bf6a8ba</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bK</span></td><td><code>bfde17780d304225</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bR</span></td><td><code>9596e8716cedea7c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bV</span></td><td><code>08d62438ce89a0da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bW</span></td><td><code>d765bc12a7f9a412</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bX</span></td><td><code>1c5ee3d8a9744e0d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bc</span></td><td><code>913df1812729abdc</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bf</span></td><td><code>17499ce91d5fa92a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bu</span></td><td><code>02004e81ec5223ae</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bv</span></td><td><code>e6d44b5663ec927a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bw</span></td><td><code>9a16d4f7bc8c92dd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.by</span></td><td><code>dea5569d3c2a2eaa</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bz</span></td><td><code>7bdb715af3719157</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cA</span></td><td><code>206dc331c6f52917</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cA.1</span></td><td><code>29ef50209a14d10c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cJ</span></td><td><code>e05310487fb2ff26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cS</span></td><td><code>62c762c8f5b6f50a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cT</span></td><td><code>839d15a49e76312e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cU</span></td><td><code>b27253cdf54cb275</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ca</span></td><td><code>3f37febba3b014d4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ce</span></td><td><code>9028e57743cfe246</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cf</span></td><td><code>f82f9faef0d9e732</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cg</span></td><td><code>086e0d7b4e181ee3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ch</span></td><td><code>c9718d24cfbc3984</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cj</span></td><td><code>eb44023f40909dd4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ck</span></td><td><code>84b61ce00f2ccec6</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cr</span></td><td><code>bdd66cb6c26931eb</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cv</span></td><td><code>3928988778aa2a9f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cx</span></td><td><code>cff2c340c5d803ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cy</span></td><td><code>ad0e7f169ff0f819</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dE</span></td><td><code>30c7449189a7dd10</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dM</span></td><td><code>b6928601d42c6ad7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dN</span></td><td><code>6ec79f312aca899b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dP</span></td><td><code>093f0c581cb68d1d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dQ</span></td><td><code>6989a0bed3e734db</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.de</span></td><td><code>6939b913663b44b0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dk</span></td><td><code>85830ee90f1fb94b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dm</span></td><td><code>98426534a74007b9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dn</span></td><td><code>7148a863d885fa74</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.do</span></td><td><code>90ede11180480639</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dp</span></td><td><code>860f45b4cc29aac5</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dq</span></td><td><code>442c1af4e25dbf1e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dr</span></td><td><code>8599b21c8aea10d9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dt</span></td><td><code>586cafdd9eb87f33</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.du</span></td><td><code>fa92ce017f264b9f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dx</span></td><td><code>d19399130a1673da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dz</span></td><td><code>29f005f3c28129b2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.fX</span></td><td><code>6a5d17d0b41052c9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gC</span></td><td><code>9befff3215e1668b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gD</span></td><td><code>7f189ca489bd0be2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gE</span></td><td><code>086b9a4b53383038</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gF</span></td><td><code>4a55c277c0584b14</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gV</span></td><td><code>773477520a361c70</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gY</span></td><td><code>c71ae38c80dd9e24</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ge</span></td><td><code>2982a4a0ea1bf291</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gf</span></td><td><code>728c6b5bb8e63588</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gx</span></td><td><code>59797f1d34a99d8e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gy</span></td><td><code>56ea5fc426297c6a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hN</span></td><td><code>29a28cfaba065e18</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hc</span></td><td><code>9b1f860446c26b58</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.he</span></td><td><code>f07845cf98afe0ee</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hf</span></td><td><code>3dc722b1a0fe02db</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hh</span></td><td><code>8edb5d420e789698</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hl</span></td><td><code>19c29ab235aefdb9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hu</span></td><td><code>9111bd65b64ae94d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hz</span></td><td><code>25dc722cf0367b64</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.i</span></td><td><code>6cb9caada90da36e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iA</span></td><td><code>eb476973961ffa5b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iR</span></td><td><code>b418d84907cd43cd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iW</span></td><td><code>da7844fadeeebb93</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iZ</span></td><td><code>a2e97afd698eb2e8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.id</span></td><td><code>d24633bf364f9ebc</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ik</span></td><td><code>e0bf01676fe40944</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.in</span></td><td><code>823e9cefb76556f2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jK</span></td><td><code>0c40c4ddbbd5f945</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jS</span></td><td><code>655888c6773157ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jW</span></td><td><code>a918a9238452020c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jZ</span></td><td><code>086a8013d0c1810d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ja</span></td><td><code>6c00701d3382a873</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jc.1</span></td><td><code>f39f5e0ad29af5e9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jg</span></td><td><code>63c1cac75d4716da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jm</span></td><td><code>9c310eff2f008558</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kM</span></td><td><code>a78f3cf24c4f24a9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kW</span></td><td><code>19aea4465753762a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kX</span></td><td><code>6dad02abff3effff</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kY</span></td><td><code>3140d86c6f92fed1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ka</span></td><td><code>63b71f3bf0c3c084</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kl</span></td><td><code>d1fc749066ba4b73</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.km</span></td><td><code>2cba72f0e15b3f5f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kn</span></td><td><code>a3d8c99a337072f7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ko</span></td><td><code>9aee79512ea6a96c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kp</span></td><td><code>dd34e5086fd49cc7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kq</span></td><td><code>51db3727e21c21a8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kr</span></td><td><code>8824bff8eec9b90d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ks</span></td><td><code>dd93289692fb668d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kt</span></td><td><code>d6e621a4bb29b5d9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ku</span></td><td><code>61ec6e4168c52e02</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lJ</span></td><td><code>696eedd4b7d971e0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lS</span></td><td><code>9ea48a4b9e2e708b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.la</span></td><td><code>350b0384d76ca300</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lc</span></td><td><code>4d98f0ea153e0359</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.le</span></td><td><code>b6259d04f45d0c26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lm</span></td><td><code>9729549301d4d96a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ln</span></td><td><code>b3ccca1df2f6a548</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lo</span></td><td><code>9df4130005b8cc26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lr</span></td><td><code>83c13e63a4ec0759</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lt</span></td><td><code>a3add68c0da6de8d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lx</span></td><td><code>540fdfa7895948c9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mB</span></td><td><code>3803f6f63bc9fc11</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mC</span></td><td><code>7ad3dcd932ef0a39</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mD</span></td><td><code>d07011f3a4abe499</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mE</span></td><td><code>f272ba4cbb4a10cb</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mF</span></td><td><code>977a955c53b60306</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mL</span></td><td><code>897468cffc05f583</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mb</span></td><td><code>1825a90c011a606d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.me</span></td><td><code>06439529c50dc5ba</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mo</span></td><td><code>f20a99b99e9bfc66</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mp</span></td><td><code>9f5ceb7bb2f2f88f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mp.1</span></td><td><code>b7327bf18738482e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mq</span></td><td><code>905082e98d5178ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mr</span></td><td><code>d313b6a146471224</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ms</span></td><td><code>6b000fe730251a95</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mt</span></td><td><code>cea150d7e1329972</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu</span></td><td><code>8b89add3197b6609</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.1</span></td><td><code>bdd41ef94986acd1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.2</span></td><td><code>36be0db0fe41c817</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.3</span></td><td><code>15060aff5180ac18</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv</span></td><td><code>c5deab8916d6cf86</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.1</span></td><td><code>5d1de7ea0fcf5a70</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a</span></td><td><code>5562745d808cbd5d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.1</span></td><td><code>b0db20e11170c53b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.2</span></td><td><code>effb150d808b4db3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.3</span></td><td><code>a4e929682bc1a4b3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mw</span></td><td><code>de27fe835c1b8038</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mx</span></td><td><code>68e4ab94abd6f065</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.my</span></td><td><code>93c070e5007d15d7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mz</span></td><td><code>4850de6425c3e8ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nC</span></td><td><code>839e8fa2990009f5</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nC.1</span></td><td><code>e138d952984ed558</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nH</span></td><td><code>bb06203190223760</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nQ</span></td><td><code>a1ddb463227ee717</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nR</span></td><td><code>8511ebf8d0b78555</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nR.2</span></td><td><code>19d91ae1f41a77fd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nS</span></td><td><code>064f933956814617</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nb</span></td><td><code>5fb46fc3b5fb6ea8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nc</span></td><td><code>2b5ad1be415ecfbd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nj</span></td><td><code>df79e593030d6605</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nw</span></td><td><code>e4fcd2bbc1e52413</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nz</span></td><td><code>d81edfed8b49d3b1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.r</span></td><td><code>708a30ad8464a1b9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.s</span></td><td><code>71072d46223a55e3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.t</span></td><td><code>ce75846996a2a181</code></td></tr><tr><td><span class="el_class">liquibase.resource.AbstractResourceAccessor</span></td><td><code>4bb7789bb3768498</code></td></tr><tr><td><span class="el_class">liquibase.resource.ClassLoaderResourceAccessor</span></td><td><code>12dee763de54525d</code></td></tr><tr><td><span class="el_class">liquibase.resource.InputStreamList</span></td><td><code>e5fc8e90380efddf</code></td></tr><tr><td><span class="el_class">liquibase.serializer.AbstractLiquibaseSerializable</span></td><td><code>1bb893cc6eaedc05</code></td></tr><tr><td><span class="el_class">liquibase.serializer.LiquibaseSerializable.SerializationType</span></td><td><code>4a81f984b860f518</code></td></tr><tr><td><span class="el_class">liquibase.servicelocator.PrioritizedService</span></td><td><code>11693c5a9ca95cc9</code></td></tr><tr><td><span class="el_class">liquibase.servicelocator.StandardServiceLocator</span></td><td><code>9bf32abe27aecc76</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.CachedRow</span></td><td><code>a70d139f0ba829cd</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.DatabaseSnapshot</span></td><td><code>91101d85272a48b2</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot</span></td><td><code>be7cd1d7e643c0bd</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData</span></td><td><code>17d0d0c941e102c5</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData.2</span></td><td><code>3bb60883f499fa5c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData.GetColumnResultSetCache</span></td><td><code>8937dbece614403f</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache</span></td><td><code>b70706c12db4ca64</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.ResultSetExtractor</span></td><td><code>fa39ff258601a683</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.ResultSetExtractor.1</span></td><td><code>894557bfa9001a2a</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.RowData</span></td><td><code>d6d2462d9f0e1a33</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.SingleResultSetExtractor</span></td><td><code>94b28655eda304da</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotControl</span></td><td><code>3e472c4a9024367c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorChain</span></td><td><code>607b2c206f5fb6a7</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorComparator</span></td><td><code>61c0da6be148d431</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorFactory</span></td><td><code>de43d4408b2c2f7d</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotIdService</span></td><td><code>0c4e0b52562c3413</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.CatalogSnapshotGenerator</span></td><td><code>6836ffe7bc8bf3e3</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGenerator</span></td><td><code>b093300fa61a61f5</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorH2</span></td><td><code>8b9682f1d26efe88</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorInformix</span></td><td><code>ba8d8eb98bac4dea</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorOracle</span></td><td><code>cd7727e6371d1b27</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.DataSnapshotGenerator</span></td><td><code>e44dcf1ed53a19d8</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ForeignKeySnapshotGenerator</span></td><td><code>e8b29fbdfda2d32c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.IndexSnapshotGenerator</span></td><td><code>643412e06441f561</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.JdbcSnapshotGenerator</span></td><td><code>04e2354cda23b236</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.PrimaryKeySnapshotGenerator</span></td><td><code>f21ff824f6c2c732</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.SchemaSnapshotGenerator</span></td><td><code>139715ad6b82595f</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.SequenceSnapshotGenerator</span></td><td><code>86a4f77d787f3818</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.TableSnapshotGenerator</span></td><td><code>721107a8f2bda960</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.UniqueConstraintSnapshotGenerator</span></td><td><code>e5dfbbd834c61073</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ViewSnapshotGenerator</span></td><td><code>d3e82cb2a37b1332</code></td></tr><tr><td><span class="el_class">liquibase.sql.SqlConfiguration</span></td><td><code>545a2e1f11a9107d</code></td></tr><tr><td><span class="el_class">liquibase.sql.UnparsedSql</span></td><td><code>81d815af28a1d5f1</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorChain</span></td><td><code>c48bc1a103e08dd1</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorComparator</span></td><td><code>4f30cd87c63c601e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorFactory</span></td><td><code>8eb58899dbe683fb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AbstractSqlGenerator</span></td><td><code>19cdd537d37c78fd</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGenerator</span></td><td><code>8fa20c1f749f668f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorDB2</span></td><td><code>68aebab08090de14</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorHsqlH2</span></td><td><code>c00054f53850d452</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorInformix</span></td><td><code>6fbc099571b4f959</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorMySQL</span></td><td><code>532cfcc19c22072a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorSQLite</span></td><td><code>31ac7dd428a3e58f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGenerator</span></td><td><code>2f6bc49645484bd2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGeneratorDefaultClauseBeforeNotNull</span></td><td><code>ca05b30d2d0d1784</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGeneratorSQLite</span></td><td><code>5490a624ab750f5f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGenerator</span></td><td><code>ab021232b78a9b76</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorDerby</span></td><td><code>fcd62d2f2444730e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorInformix</span></td><td><code>5759a7b416cfbffa</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorMSSQL</span></td><td><code>f051a57690e74d70</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorMySQL</span></td><td><code>b69a39d2301c8bcb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorOracle</span></td><td><code>fc51042519278848</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorPostgres</span></td><td><code>5368d5f2ede93434</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSQLite</span></td><td><code>bf8d70504f8cfb6e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSybase</span></td><td><code>68e70b6c742ecb9b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSybaseASA</span></td><td><code>71a8fadaf09ddb1b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddForeignKeyConstraintGenerator</span></td><td><code>ce3e1a3dab4764c6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddPrimaryKeyGenerator</span></td><td><code>14c12c8ed8adec1d</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddPrimaryKeyGeneratorInformix</span></td><td><code>c86064d013e7ed9d</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGenerator</span></td><td><code>fa510c865ad35a0a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGeneratorInformix</span></td><td><code>7bed2b1753aecd9e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGeneratorTDS</span></td><td><code>b7a41440db59b047</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AlterSequenceGenerator</span></td><td><code>c733197a0b2ff939</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.BatchDmlExecutablePreparedStatementGenerator</span></td><td><code>87aa6ed550d7070e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ClearDatabaseChangeLogTableGenerator</span></td><td><code>dc01dba2efd47473</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CommentGenerator</span></td><td><code>0bbbc79f515d0ce3</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CopyRowsGenerator</span></td><td><code>0a2c8871b48d2b0b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogLockTableGenerator</span></td><td><code>f2c17b638f0a74ff</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogTableGenerator</span></td><td><code>43a5faa227be4d48</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogTableGeneratorSybase</span></td><td><code>611ec4a8f670bb38</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGenerator</span></td><td><code>38ee1c6de8783d1b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGeneratorFirebird</span></td><td><code>c96d35b2aac92267</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGeneratorPostgres</span></td><td><code>7e65213fece9cef6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateProcedureGenerator</span></td><td><code>ab16d2421d2b6734</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateSequenceGenerator</span></td><td><code>c0594e01543bd57e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateTableGenerator</span></td><td><code>aa26e88da446030b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateTableGeneratorInformix</span></td><td><code>a69b1127d60cd1dc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateViewGenerator</span></td><td><code>8f15d71f4361cdbc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateViewGeneratorInformix</span></td><td><code>835176f0b5567e5e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DeleteGenerator</span></td><td><code>e342751ddaa728bb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropColumnGenerator</span></td><td><code>50548da6a3ac711f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropDefaultValueGenerator</span></td><td><code>98c860728f896866</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropForeignKeyConstraintGenerator</span></td><td><code>949522492e4a0403</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropIndexGenerator</span></td><td><code>768d5ff27b0e210f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropPrimaryKeyGenerator</span></td><td><code>928555779afde53f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropProcedureGenerator</span></td><td><code>7a86b8dbc4ff32cb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropSequenceGenerator</span></td><td><code>1746184ae02c5432</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropTableGenerator</span></td><td><code>3574f11a71e11870</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropUniqueConstraintGenerator</span></td><td><code>59101a674391a7d2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropViewGenerator</span></td><td><code>608c3ddc9b896840</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetNextChangeSetSequenceValueGenerator</span></td><td><code>72b1c904aaa32211</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGenerator</span></td><td><code>7a4ffc6037676da2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorDB2</span></td><td><code>1dfe8247deea3f6c</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorDerby</span></td><td><code>dd6d09a0f06c562f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorFirebird</span></td><td><code>b4974c9ac7396875</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorHsql</span></td><td><code>0cf90f877a172276</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorInformix</span></td><td><code>ac44cb9c8aae9325</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorMSSQL</span></td><td><code>15f616959a40e9df</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorOracle</span></td><td><code>d06e29596ada9449</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorPostgres</span></td><td><code>bd34cf015ec63d77</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorSybase</span></td><td><code>5441ec122612c844</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorSybaseASA</span></td><td><code>20947ceac4c171d4</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InitializeDatabaseChangeLogLockTableGenerator</span></td><td><code>df5958bd976890b8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertDataChangeGenerator</span></td><td><code>e885c017ddf26fdf</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertGenerator</span></td><td><code>37086bc81a3c3e39</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGenerator</span></td><td><code>c2b56a95b4f03ce8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorDB2</span></td><td><code>8c2578dd1096304f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorH2</span></td><td><code>c43eee7a35df802b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorHsql</span></td><td><code>903eb4bd2bffac94</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorInformix</span></td><td><code>75308f1a1f82c629</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorMSSQL</span></td><td><code>d64945fccc0aba79</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorMySQL</span></td><td><code>3f13b18ca96154df</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorOracle</span></td><td><code>aba4b5af001a18cf</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorPostgres</span></td><td><code>0d8a5c2da92dbdc6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorSQLite</span></td><td><code>2e31adbaf6ecb5b2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorSybaseASA</span></td><td><code>351899840e449688</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertSetGenerator</span></td><td><code>d98ee86566726988</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.LockDatabaseChangeLogGenerator</span></td><td><code>131121314cae7335</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.MarkChangeSetRanGenerator</span></td><td><code>870cab213c952aa7</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ModifyDataTypeGenerator</span></td><td><code>5e608be391dba4a5</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RawSqlGenerator</span></td><td><code>558592556920ec59</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ReindexGeneratorSQLite</span></td><td><code>235db6c32f3e0d3e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RemoveChangeSetRanStatusGenerator</span></td><td><code>3ff4c4fa5bb001c8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameColumnGenerator</span></td><td><code>7fde6cdcec9f3603</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameSequenceGenerator</span></td><td><code>efb6fa46d9eec122</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameTableGenerator</span></td><td><code>906e928142b59f97</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameViewGenerator</span></td><td><code>4b962e7cac17494b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ReorganizeTableGeneratorDB2</span></td><td><code>a3e038664e6cc6aa</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RuntimeGenerator</span></td><td><code>925ee39f4cf53802</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogGenerator</span></td><td><code>19de3aa6b2504d1a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogGenerator.1</span></td><td><code>127ec49c5fea2f2a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogLockGenerator</span></td><td><code>1fc160088c75f5eb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogLockGenerator.1</span></td><td><code>5194e9d4efb0f0ef</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetColumnRemarksGenerator</span></td><td><code>1044eb76144276f8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetNullableGenerator</span></td><td><code>0b0ff1b204bfd3e5</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetTableRemarksGenerator</span></td><td><code>dfc122dbabd57abc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.StoredProcedureGenerator</span></td><td><code>faf0e954430dae03</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.TableRowCountGenerator</span></td><td><code>f115dae0e358e7ed</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.TagDatabaseGenerator</span></td><td><code>532c0c9404fd26f0</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UnlockDatabaseChangeLogGenerator</span></td><td><code>bf32eb7efcb47077</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateChangeSetChecksumGenerator</span></td><td><code>7848509886a9faf7</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateDataChangeGenerator</span></td><td><code>4c86a73b327f0e71</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateGenerator</span></td><td><code>96515dcbc0d6bf03</code></td></tr><tr><td><span class="el_class">liquibase.statement.AbstractSqlStatement</span></td><td><code>ee4d9a2fa8844998</code></td></tr><tr><td><span class="el_class">liquibase.statement.DatabaseFunction</span></td><td><code>4933ae1a8ef1673f</code></td></tr><tr><td><span class="el_class">liquibase.statement.NotNullConstraint</span></td><td><code>70268e5cd6146be6</code></td></tr><tr><td><span class="el_class">liquibase.statement.PrimaryKeyConstraint</span></td><td><code>6fa09fa75984be72</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateDatabaseChangeLogLockTableStatement</span></td><td><code>bb87e1a39a1526ea</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateDatabaseChangeLogTableStatement</span></td><td><code>019bf015ca8dd488</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateTableStatement</span></td><td><code>f2f8a9e1853c638b</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.DeleteStatement</span></td><td><code>764c09865d365b85</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.GetNextChangeSetSequenceValueStatement</span></td><td><code>8a393ff3860ec738</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.InitializeDatabaseChangeLogLockTableStatement</span></td><td><code>be25fbe774647c88</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.InsertStatement</span></td><td><code>54da958ad6b50753</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.LockDatabaseChangeLogStatement</span></td><td><code>4b39a4e422e5fbc3</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.MarkChangeSetRanStatement</span></td><td><code>7fca178c33f6ae46</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.RawCallStatement</span></td><td><code>dba4a54d893ce198</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.RawSqlStatement</span></td><td><code>b3cb380cdded3808</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogLockStatement</span></td><td><code>1b3e26cd36555299</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogStatement</span></td><td><code>552cafba76861d8d</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogStatement.ByNotNullCheckSum</span></td><td><code>b0b31e24c159105e</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.UnlockDatabaseChangeLogStatement</span></td><td><code>6babe4397deb08e8</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.UpdateStatement</span></td><td><code>bf552359fdd5d7ec</code></td></tr><tr><td><span class="el_class">liquibase.structure.AbstractDatabaseObject</span></td><td><code>4348fb2f92537b0c</code></td></tr><tr><td><span class="el_class">liquibase.structure.DatabaseObjectCollection</span></td><td><code>b8f6cd876ffc3430</code></td></tr><tr><td><span class="el_class">liquibase.structure.DatabaseObjectCollection.1</span></td><td><code>53a8eb1a7e7b3e98</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Catalog</span></td><td><code>3c187342fe0d8bc1</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Column</span></td><td><code>b6d6a7494ebab28f</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.DataType</span></td><td><code>caf6a808d491749c</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.DataType.ColumnSizeUnit</span></td><td><code>baf77bd8b8fb12e0</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Relation</span></td><td><code>3bc6a643a439e621</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Schema</span></td><td><code>66ae6cb80b91ab76</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Table</span></td><td><code>499e1feea720c98a</code></td></tr><tr><td><span class="el_class">liquibase.ui.ConsoleUIService</span></td><td><code>473d07df3537d593</code></td></tr><tr><td><span class="el_class">liquibase.ui.ConsoleUIService.ConsoleWrapper</span></td><td><code>2d47143cea3806f4</code></td></tr><tr><td><span class="el_class">liquibase.util.BomAwareInputStream</span></td><td><code>c12f43ce033b9219</code></td></tr><tr><td><span class="el_class">liquibase.util.BooleanUtil</span></td><td><code>e6207a3945b26145</code></td></tr><tr><td><span class="el_class">liquibase.util.ExpressionMatcher</span></td><td><code>6f9e67f0bc66ed3b</code></td></tr><tr><td><span class="el_class">liquibase.util.JdbcUtil</span></td><td><code>c8a646c80f1988cb</code></td></tr><tr><td><span class="el_class">liquibase.util.LiquibaseUtil</span></td><td><code>53953fdb7a3b05ac</code></td></tr><tr><td><span class="el_class">liquibase.util.MD5Util</span></td><td><code>ad6d9d06d1b47e88</code></td></tr><tr><td><span class="el_class">liquibase.util.NetUtil</span></td><td><code>1f33168a177cc111</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil</span></td><td><code>73f8e0d772b4ca8c</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.DefaultBeanIntrospector</span></td><td><code>08f239c863526997</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.FluentPropertyBeanIntrospector</span></td><td><code>dc977cbf6741481e</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.IntrospectionContext</span></td><td><code>71bf3fcbf5efaa5e</code></td></tr><tr><td><span class="el_class">liquibase.util.SmartMap</span></td><td><code>1a66046fe81af4c2</code></td></tr><tr><td><span class="el_class">liquibase.util.SqlParser</span></td><td><code>98142d45444ddf0f</code></td></tr><tr><td><span class="el_class">liquibase.util.SqlUtil</span></td><td><code>27e768da2cff155f</code></td></tr><tr><td><span class="el_class">liquibase.util.StreamUtil</span></td><td><code>bc81783e25e34915</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses</span></td><td><code>88062096494d0e38</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses.Comment</span></td><td><code>09c4231307d6fd1f</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses.Whitespace</span></td><td><code>f8f8f2c712386bea</code></td></tr><tr><td><span class="el_class">liquibase.util.StringUtil</span></td><td><code>286ad9c4d64aaef5</code></td></tr><tr><td><span class="el_class">liquibase.util.StringUtil.ToStringFormatter</span></td><td><code>4858ac9ca8f40da2</code></td></tr><tr><td><span class="el_class">liquibase.util.Validate</span></td><td><code>f7d5e0a57ed39143</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleCharStream</span></td><td><code>08d0c57e1fdd0570</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleSqlGrammar</span></td><td><code>7adedb2fd5185f34</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleSqlGrammarTokenManager</span></td><td><code>74ef95e42a237244</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.Token</span></td><td><code>02da3e93ee69518c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ByteBuddy</span></td><td><code>d4e5f2084d659ff9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion</span></td><td><code>907fca1b89111e0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion.VersionLocator.Resolved</span></td><td><code>c8b4f3ffa3a708cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion.VersionLocator.Resolver</span></td><td><code>575662f2862fb481</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.AbstractBase</span></td><td><code>77e9d686c976f6e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing</span></td><td><code>65bfa03c85847dc9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForFixedValue</span></td><td><code>e388f70646ddfaa7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType</span></td><td><code>1fb9c5c929a4a173</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.SuffixingRandom</span></td><td><code>cdbdedcf0cea0a02</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.SuffixingRandom.BaseNameResolver.ForFixedValue</span></td><td><code>6b3551ea310c5dc8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache</span></td><td><code>d02df3631a17fa08</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.LookupKey</span></td><td><code>b75da15a4577d948</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.SimpleKey</span></td><td><code>99731a44c3f39c30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort</span></td><td><code>3f135d4f310abf3c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.1</span></td><td><code>3be4336e35a8cbfd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.2</span></td><td><code>5a2bb9e71930a24a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.3</span></td><td><code>5792db85826ac4ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.StorageKey</span></td><td><code>da984e48de27d4a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.WithInlineExpunction</span></td><td><code>5c74d69cd94d649e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent</span></td><td><code>6521ae6f4fb8e332</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AgentProvider.ForByteBuddyAgent</span></td><td><code>e91ab95d7c39b139</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider</span></td><td><code>6ee52ecc6379effa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment</span></td><td><code>cfe13f1c5e96a232</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Simple</span></td><td><code>a3b5cacaf8429640</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Simple.WithExternalAttachment</span></td><td><code>b602b861147e031f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Compound</span></td><td><code>5c9a4568ff101685</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForEmulatedAttachment</span></td><td><code>65059e338f64eb55</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJ9Vm</span></td><td><code>f27145f94d568553</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForModularizedVm</span></td><td><code>619abbfe88e81fad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForStandardToolsJarVm</span></td><td><code>f059931c5e7e6755</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForUserDefinedToolsJar</span></td><td><code>384dea4cf5e16afd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentTypeEvaluator.ForJava9CapableVm</span></td><td><code>0efc5136ccb7b3ec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentTypeEvaluator.InstallationAction</span></td><td><code>16bc84b273a6923b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm</span></td><td><code>2ade5134cc92220d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVm</span></td><td><code>feb37df41e4b9de5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.Installer</span></td><td><code>9e98232f904ea6a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice</span></td><td><code>fafdd893a19dbad9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor</span></td><td><code>f2b03776da96f358</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor.WithExitAdvice</span></td><td><code>045f62084935ddaf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor.WithExitAdvice.WithoutExceptionHandling</span></td><td><code>e742ad16a8ed334e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory</span></td><td><code>e457d0c581ac501c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory.1</span></td><td><code>679d5cf8aeda8445</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory.2</span></td><td><code>0032dc52c3b7120c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default</span></td><td><code>18e5aa2522c28deb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default.ForMethodEnter</span></td><td><code>edf2fdcd0d0dde4e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default.ForMethodExit</span></td><td><code>2f8c4b953622d123</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForInstrumentedMethod.Default</span></td><td><code>3d7d485d55b58179</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForInstrumentedMethod.Default.Copying</span></td><td><code>e2c8324e03ea998a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Delegator.ForStaticInvocation</span></td><td><code>ab51ba6c32dfcaf8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher</span></td><td><code>5971377d4c02ba88</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inactive</span></td><td><code>ac3f64fa3a2c48bf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining</span></td><td><code>29366a0c64cfbce3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.CodeTranslationVisitor</span></td><td><code>51d11cbdf1100c95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved</span></td><td><code>8c3a54ffa4d7d16e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner</span></td><td><code>c9b14874b193264d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableCollector</span></td><td><code>1ff8865f981e7ec9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableExtractor</span></td><td><code>9b4ac2fa43c8f7f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableSubstitutor</span></td><td><code>a6f422c86511a502</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodEnter</span></td><td><code>2cb1aa8f7949ebd0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodEnter.WithRetainedEnterType</span></td><td><code>362d455cff4f2b0e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodExit</span></td><td><code>f52b5a843c156d0d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodExit.WithoutExceptionHandler</span></td><td><code>3c99eb4ddbdf41ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.Disabled</span></td><td><code>107d2adfebe20ada</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForType</span></td><td><code>f73e560374ff4750</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue</span></td><td><code>5b8a6404ba7b033e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.1</span></td><td><code>af4ae73d545c680d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.2</span></td><td><code>d9f01336c2b1b5a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.3</span></td><td><code>5d4df3b91437a7da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.4</span></td><td><code>b8cac1580b9f52a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.5</span></td><td><code>255258b8377dc404</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.Bound</span></td><td><code>5f9bcb622b93c561</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.Inverted</span></td><td><code>cb361573d72ca0cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.Relocation.ForLabel</span></td><td><code>45a0cb5b2b57add4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Resolved.AbstractBase</span></td><td><code>4cc3354bbb1cf8c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.SuppressionHandler.NoOp</span></td><td><code>dcc16bac660004dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.SuppressionHandler.Suppressing</span></td><td><code>d12838aa61a470bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default</span></td><td><code>4eebff7becb12c11</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.1</span></td><td><code>687050010a11eab9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.2</span></td><td><code>276e11996418515b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.3</span></td><td><code>cc2955ef4c26538c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default</span></td><td><code>823020fb81eff481</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default.ForAdvice</span></td><td><code>73aceb933c70d6f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default.WithCopiedArguments</span></td><td><code>b309d0b59511cc7c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.NoExceptionHandler</span></td><td><code>02b45f94c15479e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Factory.AdviceType</span></td><td><code>5436adacd265f976</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Factory.Illegal</span></td><td><code>9f50378c3340586e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForAllArguments</span></td><td><code>b8e284399f58ef5c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForAllArguments.Factory</span></td><td><code>66166243eb9aab20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument</span></td><td><code>b8e82a63154819c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument.Unresolved</span></td><td><code>afe1f1bf2651e093</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument.Unresolved.Factory</span></td><td><code>cc1dcc2d968d307e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForEnterValue</span></td><td><code>28d6e9ff8ed3c3e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForEnterValue.Factory</span></td><td><code>7d380bffb92b3278</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForExitValue.Factory</span></td><td><code>3d70f02bb85960ae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForField.Unresolved.Factory</span></td><td><code>493f3e8cf9e6db96</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod</span></td><td><code>17d11f0b21d8e4ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.1</span></td><td><code>5c4e9d5bd7728646</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.2</span></td><td><code>1cc551b345fb637b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.3</span></td><td><code>9d7f62ccdcb54699</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedType</span></td><td><code>ef5f749a1a10e356</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForLocalValue.Factory</span></td><td><code>bff25561afd03a4b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForOrigin.Factory</span></td><td><code>cc0ccce12225b68d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForReturnValue</span></td><td><code>edc0c146162e2a27</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForReturnValue.Factory</span></td><td><code>fc5a6081db74f50f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStackManipulation</span></td><td><code>ca5dd0df49741a75</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStackManipulation.Factory</span></td><td><code>6e2243b91d8e65dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStubValue</span></td><td><code>f738dd3dd3f020fa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThisReference</span></td><td><code>65f6f370f3ae3d8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThisReference.Factory</span></td><td><code>393a848dcbef6bee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThrowable.Factory</span></td><td><code>1ab16d2e43df3537</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForUnusedValue.Factory</span></td><td><code>2965981bfbb196c8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort</span></td><td><code>140190dac4b520bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort.1</span></td><td><code>ae0372e05b4aeef8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort.2</span></td><td><code>03028cda0d177ded</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForArray</span></td><td><code>0d85aa6b490e1f31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForArray.ReadOnly</span></td><td><code>f34cd325f7bd9ab5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForDefaultValue</span></td><td><code>27027067bd626366</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForDefaultValue.ReadWrite</span></td><td><code>922d546b593c91a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForStackManipulation</span></td><td><code>980460e553976f4f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable</span></td><td><code>1cd71b18dbb6101a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable.ReadOnly</span></td><td><code>993f2ea5d00f838e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable.ReadWrite</span></td><td><code>2db8333c6a9c37da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.PostProcessor.NoOp</span></td><td><code>b86bdee4006d122a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default</span></td><td><code>1216447a48b7f4ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.ForAdvice</span></td><td><code>22bb3b1552f983da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization</span></td><td><code>54098c3f1a13c6ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization.1</span></td><td><code>413691c7b7dc8ef2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization.2</span></td><td><code>069fa028c89254eb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode</span></td><td><code>8fb8d33aa53eefdb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.1</span></td><td><code>92d2c5d916c2b57c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.2</span></td><td><code>d89d79352a7ac1ca</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.3</span></td><td><code>5ff292330643a375</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.WithPreservedArguments</span></td><td><code>2f5d944eb33c7e5c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.WithPreservedArguments.WithArgumentCopy</span></td><td><code>ff070c8b1b37ffef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.WithCustomMapping</span></td><td><code>254aa3f19a5eafb0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.AbstractBase</span></td><td><code>3cd03b050731d22c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.Compound</span></td><td><code>7b1e520e5f4262e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods</span></td><td><code>573191880a5a4e0d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods.DispatchingVisitor</span></td><td><code>ac51d486f8ec0e4b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods.Entry</span></td><td><code>28eb46b4467366d6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.NoOp</span></td><td><code>a613c160b15bbc65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.MemberRemoval</span></td><td><code>005cb62907cc0df7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.MemberRemoval.MemberRemovingClassVisitor</span></td><td><code>fe382217ff7273dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.ByteCodeElement.Token.TokenList</span></td><td><code>1070489264457774</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.ModifierReviewable.AbstractBase</span></td><td><code>0b625f401d945e23</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.NamedElement.WithDescriptor</span></td><td><code>69f25e85d31086f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.TypeVariableSource.AbstractBase</span></td><td><code>b8003891860323ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription</span></td><td><code>7e080fcc4ab41eb1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription.AbstractBase</span></td><td><code>55a8b2f7b58a15aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription.ForLoadedAnnotation</span></td><td><code>a2b247526c4d26ca</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.AbstractBase</span></td><td><code>c3dca45e359b717d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.Empty</span></td><td><code>10e1e01ec4afb6b0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.Explicit</span></td><td><code>b96636e855735fc3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.ForLoadedAnnotations</span></td><td><code>a6be8b00fa72ab7a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationSource.Empty</span></td><td><code>034fcbd435657d97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue</span></td><td><code>e46e60f3e4357d8a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.AbstractBase</span></td><td><code>6b46c288929d794a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant</span></td><td><code>650f7b88da7502df</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType</span></td><td><code>8683233734d98d81</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.1</span></td><td><code>ecf694f5c718a013</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.2</span></td><td><code>113fe247f14fdcdd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.3</span></td><td><code>ad40ce4c8d647d57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.4</span></td><td><code>649136274570c878</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.5</span></td><td><code>25519a3723562b18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.6</span></td><td><code>d0a4ee1eb78e8925</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.7</span></td><td><code>5cc6d38c7688ce9e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.8</span></td><td><code>542fa217a5fe4c51</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.9</span></td><td><code>9adc51229ebb26c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForDescriptionArray</span></td><td><code>198e8cb892ebb0c6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription</span></td><td><code>451401174e8ca82f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription.Loaded</span></td><td><code>fda0610025cc12ff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForTypeDescription</span></td><td><code>256f9475d7baab5e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase</span></td><td><code>1a834bbf25c86ab4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.State</span></td><td><code>db0e0a0878d7e335</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.enumeration.EnumerationDescription.AbstractBase</span></td><td><code>36efae2fe3237ba9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.enumeration.EnumerationDescription.ForLoadedEnumeration</span></td><td><code>5b47cbeca30adac0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription</span></td><td><code>68bfcf27b64f643e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.AbstractBase</span></td><td><code>8e18b7d4e1ceddcb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.ForLoadedField</span></td><td><code>60b2439cfc69a4cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.InDefinedShape.AbstractBase</span></td><td><code>e1174a0c69da5a57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.Latent</span></td><td><code>f267c31e54d89fa1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.SignatureToken</span></td><td><code>3fabeebea84ce146</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.Token</span></td><td><code>3f20efc75bd15e42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.AbstractBase</span></td><td><code>78739d279005d8a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.Explicit</span></td><td><code>323b76a02a64f9a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.ForLoadedFields</span></td><td><code>fc8cc870e5f42b89</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.ForTokens</span></td><td><code>ea98dba6ef4eb758</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription</span></td><td><code>cb9472a3dd295bbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.AbstractBase</span></td><td><code>deaeb62afc98ead8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.ForLoadedConstructor</span></td><td><code>f8e1111441309268</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.ForLoadedMethod</span></td><td><code>d9fe344c56539dc6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase</span></td><td><code>673ca3d2d56a4b0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase.ForLoadedExecutable</span></td><td><code>db01999a48adc399</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Latent</span></td><td><code>20e100c8a3802774</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Latent.TypeInitializer</span></td><td><code>d5f8ea2d4fb9f2a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.SignatureToken</span></td><td><code>5888f2557f6a88e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Token</span></td><td><code>a89fdbfb13002946</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.TypeSubstituting</span></td><td><code>8dc21d2e259d2c0f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.TypeToken</span></td><td><code>f7f14b8ac76ebd98</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.AbstractBase</span></td><td><code>b054427f9b6a48f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.Explicit</span></td><td><code>b03ab4c21a93dfd0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.ForLoadedMethods</span></td><td><code>38bd1bf17eb05676</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.ForTokens</span></td><td><code>40aa960dc7616ac5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.TypeSubstituting</span></td><td><code>f1f510557a04392e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.AbstractBase</span></td><td><code>173e1a83772e6071</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter</span></td><td><code>8dd9bfdcb695c00c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfConstructor</span></td><td><code>a18e1a81fc7465d0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfMethod</span></td><td><code>811597af8855d53c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.InDefinedShape.AbstractBase</span></td><td><code>717f5d8d90c005f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Latent</span></td><td><code>1aa2e08f2ad0d5c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Token</span></td><td><code>36549650fa40d54b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Token.TypeList</span></td><td><code>1890975119bdb094</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.TypeSubstituting</span></td><td><code>6cc95e3ea064743d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.AbstractBase</span></td><td><code>6fe6f7a3a2c191ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.Empty</span></td><td><code>8f4a45d2f54ed28b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.Explicit.ForTypes</span></td><td><code>75d84e0b4fcd99a9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable</span></td><td><code>1456c072c3be7105</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfConstructor</span></td><td><code>6d7eaa8911075319</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfMethod</span></td><td><code>f0835708e2d15fb4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForTokens</span></td><td><code>b77d0ee711552f0c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.TypeSubstituting</span></td><td><code>293f1f350b97c439</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.FieldManifestation</span></td><td><code>61ed9ad5f460d425</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.ModifierContributor.Resolver</span></td><td><code>4c37457cc5fe415c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Ownership</span></td><td><code>03978521bbedeaac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.SynchronizationState</span></td><td><code>1ee1e76d573ad75b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.SyntheticState</span></td><td><code>0ea0b3d14a159257</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.TypeManifestation</span></td><td><code>823497b74af56cf0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Visibility</span></td><td><code>eddec8671a9488f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Visibility.1</span></td><td><code>d7e383ada6123e01</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.AbstractBase</span></td><td><code>fbc5f3918eb9463b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.ForLoadedPackage</span></td><td><code>647cf445f49b7cf5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.Simple</span></td><td><code>0cb49b8e5cdceb1d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.AbstractBase</span></td><td><code>fa2d664156de0c87</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.Empty</span></td><td><code>facb71157fa46ed2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.ForTokens</span></td><td><code>b72447d1fcbe18bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDefinition.Sort</span></td><td><code>e252ac8a021f4082</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDefinition.SuperClassIterator</span></td><td><code>dcc41092c6176f54</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription</span></td><td><code>36fd0fa20ad52135</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.AbstractBase</span></td><td><code>258559cdb4b6404f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.AbstractBase.OfSimpleType</span></td><td><code>c72c2e5e6e03df99</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.ArrayProjection</span></td><td><code>a900e473d864b2b5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.ForLoadedType</span></td><td><code>8fa35f44ace50391</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic</span></td><td><code>5601518ac3dba89e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AbstractBase</span></td><td><code>3e49593313e4528f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator</span></td><td><code>b0fc4c110c19aecd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Chained</span></td><td><code>ce5936070db33961</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableExceptionType</span></td><td><code>83ae335cad65ee98</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableParameterType</span></td><td><code>3db4d13b1a55ffe8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedField</span></td><td><code>bc47da1b7672770d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedInterface</span></td><td><code>25bcc5acc7d6039e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedMethodReturnType</span></td><td><code>68fd86a349490e9d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedSuperClass</span></td><td><code>64cbe4cf03033a19</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedTypeVariable</span></td><td><code>607805b81a44c1a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Simple</span></td><td><code>58348630fb7f5660</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForComponentType</span></td><td><code>0f95408415168381</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForOwnerType</span></td><td><code>dbe792b296842cfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeArgument</span></td><td><code>c4c5a6817a5b11ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeVariableBoundType</span></td><td><code>260242c433f7db80</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeVariableBoundType.OfFormalTypeVariable</span></td><td><code>14bd8a3cecc2168a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForWildcardUpperBoundType</span></td><td><code>3ebd458a5a263baf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.NoOp</span></td><td><code>7d262d1efdc1a658</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection</span></td><td><code>0ee749354388952f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedFieldType</span></td><td><code>1724bc9738037670</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedReturnType</span></td><td><code>09e831a0a48649e7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedSuperClass</span></td><td><code>4097c89a98a6a8c7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfConstructorParameter</span></td><td><code>268259d971f079da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfMethodParameter</span></td><td><code>cc35cbb5a12db70b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation</span></td><td><code>ba4ed13a2c16fa27</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation.OfAnnotatedElement</span></td><td><code>5bccd0ca3c6cf39e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation</span></td><td><code>5734f0b82230f143</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation.OfAnnotatedElement</span></td><td><code>2203d6c2cc2e43d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithResolvedErasure</span></td><td><code>5656afa8f8c7fa04</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProxy</span></td><td><code>837c46ba31dd9215</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray</span></td><td><code>d13b176c2d3dc84b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray.ForLoadedType</span></td><td><code>a6c044aee537c5ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray.Latent</span></td><td><code>5d23c8971e97c94c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType</span></td><td><code>ffefd02f303394e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForErasure</span></td><td><code>d952d613f637b449</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForLoadedType</span></td><td><code>f00423b3668c6a6d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.Latent</span></td><td><code>7f6b65eac82ccacd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType</span></td><td><code>91d595189a038777</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForGenerifiedErasure</span></td><td><code>4fa1e7c89c00c97f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType</span></td><td><code>68b564e96aa7b7f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType.ParameterArgumentTypeList</span></td><td><code>186a3e289af3008c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.Latent</span></td><td><code>0563e8e02d018d81</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable</span></td><td><code>c522788ac45e74aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.ForLoadedType</span></td><td><code>e9a761f5db6d7559</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.ForLoadedType.TypeVariableBoundList</span></td><td><code>732848281d848591</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.Symbolic</span></td><td><code>7fc3f163d6308332</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.WithAnnotationOverlay</span></td><td><code>ff4f9bd6f4dd76ad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType</span></td><td><code>eb4830fed7178b97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType</span></td><td><code>db7fcf43960281f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardLowerBoundTypeList</span></td><td><code>24942c2b7fad7535</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardUpperBoundTypeList</span></td><td><code>5882d1d8d1e8b70d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.Latent</span></td><td><code>cbb90f0dea0557f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.AnnotationStripper</span></td><td><code>1b14e58accc4a72d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.AnnotationStripper.NonAnnotatedTypeVariable</span></td><td><code>8301b694bbcc7961</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForRawType</span></td><td><code>2730ba635b3e4dae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor</span></td><td><code>7c9ee6e3c386d02f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument</span></td><td><code>d8e6035b10ed1222</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reducing</span></td><td><code>6646869e65b4683e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying</span></td><td><code>f695f950ef96d452</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.1</span></td><td><code>3887b35198c64c3f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.2</span></td><td><code>dda2c47b308dfe77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor</span></td><td><code>65dc96c548e3e991</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForAttachment</span></td><td><code>da6e736f271084bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForDetachment</span></td><td><code>84581ab83cefe0ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForTypeVariableBinding</span></td><td><code>eee2707f84480265</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForTypeVariableBinding.TypeVariableSubstitutor</span></td><td><code>f090db409dd7659d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.WithoutTypeSubstitution</span></td><td><code>17ef049604f02334</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator</span></td><td><code>13ff0a7ec71a9596</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.1</span></td><td><code>3122adbd7aaaeca9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.2</span></td><td><code>36d36c5061f2243e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.3</span></td><td><code>ca3595549a574d77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.ForTypeAnnotations</span></td><td><code>f22bf42b89621378</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Latent</span></td><td><code>5790060e779aeaed</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.LazyProxy</span></td><td><code>12b49bec0a736b32</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList</span></td><td><code>da60a7cfb717d0a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.AbstractBase</span></td><td><code>4700315364477234</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Empty</span></td><td><code>59d00ad7b53c811a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Explicit</span></td><td><code>81495dfc3a359dfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.ForLoadedTypes</span></td><td><code>4356a7471aec6f20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.AbstractBase</span></td><td><code>5376e1d2298a6512</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.Empty</span></td><td><code>df9431d33e66dbb4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.Explicit</span></td><td><code>1ab8c93e54ee2ac6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes</span></td><td><code>1b6544725fdb45a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables</span></td><td><code>05b85732c40f12b7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables.AttachedTypeVariable</span></td><td><code>8133514c5d90955c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.WithResolvedErasure</span></td><td><code>3ae7efc80de7c3db</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes</span></td><td><code>c603bfa8790b860c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes.OfTypeVariables</span></td><td><code>d713fc161a8b3c83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfConstructorExceptionTypes</span></td><td><code>41a985dd07ed867c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes</span></td><td><code>99d4f3faf0ed1337</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes.TypeProjection</span></td><td><code>7f6f3c7654719119</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes</span></td><td><code>74966b175ac75ab9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes.TypeProjection</span></td><td><code>2d651d381fd3d0a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeVariableToken</span></td><td><code>0b904605bce2d673</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.ForClassLoader</span></td><td><code>3d93d02aae11ab20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.ForClassLoader.BootLoaderProxyCreationAction</span></td><td><code>92592514e911da0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.Resolution.Explicit</span></td><td><code>0d4fd821f05a20f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.Simple</span></td><td><code>f699c5335eed704c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase</span></td><td><code>531a2e961b13325b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter</span></td><td><code>5f4faab3b408ec94</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.FieldDefinitionAdapter</span></td><td><code>fd8d7a11be3c9ede</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter</span></td><td><code>e75374fa15e452ff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.AnnotationAdapter</span></td><td><code>baf66768a8ba7010</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.SimpleParameterAnnotationAdapter</span></td><td><code>24c4f03b22480ac9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter</span></td><td><code>5914cb1a77b4c084</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter.AnnotationAdapter</span></td><td><code>8becc0d3a2f579f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.OptionalMethodMatchAdapter</span></td><td><code>1e5cba284e697ff2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Delegator</span></td><td><code>cd65d88864fb9551</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.UsingTypeWriter</span></td><td><code>2c521e681717b547</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.AbstractBase</span></td><td><code>ae345146b4ff4937</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase</span></td><td><code>bbf864ab6ae58db5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase.Adapter</span></td><td><code>c094da12c027af78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase</span></td><td><code>9c472892ce0a50bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase.Adapter</span></td><td><code>d3915da6e1e1de4c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ExceptionDefinition.AbstractBase</span></td><td><code>5d66e82b417f9b46</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ImplementationDefinition.AbstractBase</span></td><td><code>e0513b10037138a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.AbstractBase</span></td><td><code>ce292c22036f8154</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Initial.AbstractBase</span></td><td><code>75703fad010e1cc6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.AbstractBase</span></td><td><code>0a7a2334f6a9b15d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase</span></td><td><code>c67240824c7cd31a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase.Adapter</span></td><td><code>f1f199a3d7662651</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ReceiverTypeDefinition.AbstractBase</span></td><td><code>a20cd2a086e77441</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.TypeVariableDefinition.AbstractBase</span></td><td><code>b010816c4e7b6513</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default</span></td><td><code>ca6748217ece3884</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default.Loaded</span></td><td><code>e63ea06339154cad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default.Unloaded</span></td><td><code>876286f205b44199</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.TargetType</span></td><td><code>26c139b5f2f58862</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.Compound</span></td><td><code>a5a52522b43091ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod</span></td><td><code>22ab387d59f6c970</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.MethodModifierTransformer</span></td><td><code>829c18ff395159ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod</span></td><td><code>083bfd5734c4504d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.AttachmentVisitor</span></td><td><code>43014c50e1310fbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.TransformedParameter</span></td><td><code>84642c4a6f0d1bdc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.TransformedParameterList</span></td><td><code>54d561afbee57f99</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.NoOp</span></td><td><code>49cd89a2b3b975a3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.TypeResolutionStrategy.Passive</span></td><td><code>d5784ee7fb36ce53</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default</span></td><td><code>ae8d9f7fd85c6aad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.1</span></td><td><code>63c0d42260c7599e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.2</span></td><td><code>a8389e9d32c4ecd7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.3</span></td><td><code>30f7afc5a8be245c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader</span></td><td><code>02cd98561e41388f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.ClassDefinitionAction</span></td><td><code>ae3b3260cea35a93</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PackageLookupStrategy.CreationAction</span></td><td><code>ed99761ea2821fe6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PackageLookupStrategy.ForJava9CapableVm</span></td><td><code>938d777edfb5f306</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler</span></td><td><code>811732d1db761cc5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler.1</span></td><td><code>c9ee72578a4d55a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler.2</span></td><td><code>f7eb2a49ccc0c5d4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.SynchronizationStrategy.CreationAction</span></td><td><code>787a86bd317e5dc4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.SynchronizationStrategy.ForJava8CapableVm</span></td><td><code>02e95f14cee748d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassFilePostProcessor.NoOp</span></td><td><code>3c8088887326744a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.AbstractBase</span></td><td><code>331215a38873f162</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingLookup</span></td><td><code>4aaf3011645f367c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection</span></td><td><code>9b4c6d016e86d89d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.Dispatcher.CreationAction</span></td><td><code>e95efd9bc7c2fbec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.Dispatcher.UsingUnsafeInjection</span></td><td><code>ee369f8a9915cac0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe</span></td><td><code>0fe8982cff47681a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe.Dispatcher.CreationAction</span></td><td><code>ef15ca0109cc8f56</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe.Dispatcher.Enabled</span></td><td><code>fe60291c22873865</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy</span></td><td><code>17fb081ccc92f99c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default</span></td><td><code>7390ec8634515594</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default.InjectionDispatcher</span></td><td><code>759cb7a298fc98b7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default.WrappingDispatcher</span></td><td><code>88c49bdd78533ba6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.ForUnsafeInjection</span></td><td><code>fae0995eb7740944</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.UsingLookup</span></td><td><code>2907954eb970dda6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.InjectionClassLoader</span></td><td><code>cbd809288c0dad36</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.MultipleParentClassLoader.Builder</span></td><td><code>c6fb9f2d63f216f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Definition.Trivial</span></td><td><code>6512673aa8423352</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Definition.Undefined</span></td><td><code>1b8dafe51f80088c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.NoOp</span></td><td><code>31480ec85144aa31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Trivial</span></td><td><code>d0ed587787d4d89f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default</span></td><td><code>f0774d4bbe85a809</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.1</span></td><td><code>09a3c2cfe88a5ae4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.2</span></td><td><code>76afb59bd5abdd5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.FrameComputingClassWriter</span></td><td><code>52e278e8d81b4dc4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.AbstractBase</span></td><td><code>db8c5004661a0bd8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.ForClassHierarchy</span></td><td><code>0e8431af1152b965</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.ForClassHierarchy.Factory</span></td><td><code>d97235dbbc3871e9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.Resolution.Simple</span></td><td><code>7e3dca01a01498d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default</span></td><td><code>cc5265630d0906f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled</span></td><td><code>00933225bc77b175</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled.Entry</span></td><td><code>0ec1361a69a955fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Entry</span></td><td><code>a7413622fd851aa9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Default</span></td><td><code>83177f7ca587cf30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default</span></td><td><code>cd900ae01efd903f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.1</span></td><td><code>a7ce85bb2f37ff77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.2</span></td><td><code>ad157a47dace4f55</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler</span></td><td><code>fc88be698cc4a50f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.AbstractBase</span></td><td><code>ad55505e167100d9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default</span></td><td><code>a37bac0e0eceb0c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod</span></td><td><code>4b92bfc82ab49b25</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod.Token</span></td><td><code>e2da236960e0a189</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key</span></td><td><code>421619c0f44567f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Detached</span></td><td><code>82540bbf94c15922</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Harmonized</span></td><td><code>5d9ad1d55d82a355</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store</span></td><td><code>f948e4de58324a0f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous</span></td><td><code>9e2928a385a525ac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Initial</span></td><td><code>1fc852958287c36a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved</span></td><td><code>6672a261c5f5dd2e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node</span></td><td><code>0f0b18948cce4159</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Graph</span></td><td><code>f50e2614e64a132c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Merger.Directional</span></td><td><code>0ba0f74ab7d66be7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.ForDeclaredMethods</span></td><td><code>80835a5a4610b1d3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Empty</span></td><td><code>de57d507ae61b464</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Linked.Delegation</span></td><td><code>7341085250d5f338</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Simple</span></td><td><code>f9767f80e7124acc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Sort</span></td><td><code>8e20af4bf9dad8a0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Unresolved</span></td><td><code>c42332646fb3e771</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.NodeList</span></td><td><code>3f435ec381113f00</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Simple</span></td><td><code>9a1f1f9d25ac44be</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default</span></td><td><code>35ae92274e85ac88</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled</span></td><td><code>dd840dc4ea29fc06</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled.Entry</span></td><td><code>827864e42dc177c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Entry</span></td><td><code>66b9b2c39c4a08ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared</span></td><td><code>3c270a20a21353d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared.Entry</span></td><td><code>e96586202cb119f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation</span></td><td><code>ea77701fcbc47e2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation.Compiled</span></td><td><code>7b000ab44a4af2cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default</span></td><td><code>eec49897d441dcbe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default.Compiled</span></td><td><code>1d64a300c478cbd4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.Drain.Default</span></td><td><code>a3bc2736d5ad95f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.None</span></td><td><code>d062b02ed3f4d342</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.Simple</span></td><td><code>3429322f4d42e2d4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeValidation</span></td><td><code>b9ab70dc0d5e3c60</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default</span></td><td><code>c13cf997e386f3cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ClassDumpAction.Dispatcher.Disabled</span></td><td><code>d4f0d2e7fbcab045</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForCreation</span></td><td><code>fc9ad618be46b3c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining</span></td><td><code>299c2478af802227</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.ContextRegistry</span></td><td><code>dfee6deed9a49e33</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing</span></td><td><code>bf4cd0530bebc828</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending</span></td><td><code>03ffbfbd5ac70e17</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.FrameWriter.NoOp</span></td><td><code>70807074f147a5bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.WithoutDrain</span></td><td><code>436b27df1089d96d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.WithoutDrain.WithoutActiveRecord</span></td><td><code>aaf90f0ba38344fb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Creating</span></td><td><code>b01ca83867dc0a50</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.OpenedClassRemapper</span></td><td><code>9e0d8af34c811602</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.RedefinitionClassVisitor</span></td><td><code>f41a382ab3215f3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.SignatureKey</span></td><td><code>d20a5d7220afbb42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.UnresolvedType</span></td><td><code>3f5380fd3549f07e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor</span></td><td><code>0449b85d73902e5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.Compound</span></td><td><code>522fa4e49e512828</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClass</span></td><td><code>73e7f3e477121987</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClassFileVersion</span></td><td><code>9e87393ba441dbdc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingFieldVisitor</span></td><td><code>32779ab29633e9ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingMethodVisitor</span></td><td><code>a412717a1b97aba3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForExplicitField</span></td><td><code>a03e0587988aae1f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForImplicitField</span></td><td><code>b7f49ad994b5b989</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.AccessBridgeWrapper</span></td><td><code>9527fd76169900c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod</span></td><td><code>e3fde8a86929682d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod.WithBody</span></td><td><code>963047d43410ba83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForNonImplementedMethod</span></td><td><code>28a00d78fb553a8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.Sort</span></td><td><code>928d954d831a88bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.AbstractInliningDynamicTypeBuilder</span></td><td><code>3dcbe96c7737ffda</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.InliningImplementationMatcher</span></td><td><code>385ec334716921a9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.MethodRebaseResolver.Disabled</span></td><td><code>687ef4457dff2d12</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.RedefinitionDynamicTypeBuilder</span></td><td><code>4aecc0ffde9ceecf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default</span></td><td><code>0d114e09a2faac83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.1</span></td><td><code>16fc5c99e02d7f9f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.2</span></td><td><code>dd199479878d5739</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.3</span></td><td><code>792ea5ce51475037</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.4</span></td><td><code>98fceb895a262b45</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.5</span></td><td><code>f0898605f9020c16</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder</span></td><td><code>16995528b814abfb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.InstrumentableMatcher</span></td><td><code>c2850d79fc87446b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget</span></td><td><code>17f509a8b52b39f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.Factory</span></td><td><code>f6c0a700d93e9d10</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver</span></td><td><code>282c73cc811d5b71</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.1</span></td><td><code>2eb773d398b87160</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.2</span></td><td><code>903a99da03746eb8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor</span></td><td><code>0174e94238af9d2f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldLocation.Relative</span></td><td><code>e3f1a92ea73df3a5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldLocation.Relative.Prepared</span></td><td><code>c55029896988613b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldNameExtractor.ForBeanProperty</span></td><td><code>751b847060c7cd95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldNameExtractor.ForFixedValue</span></td><td><code>37f6e575b29ba057</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.ForImplicitProperty</span></td><td><code>623c50de803e8dff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.ForImplicitProperty.Appender</span></td><td><code>db2e4aeceee38d5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default</span></td><td><code>d63040bc175192ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AbstractPropertyAccessorMethod</span></td><td><code>4a69ecc69149f327</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AccessorMethod</span></td><td><code>147ddbd116dc5018</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AccessorMethodDelegation</span></td><td><code>4ecb89b1b8e43487</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.CacheValueField</span></td><td><code>091aa1cc83b89353</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.DelegationRecord</span></td><td><code>7772d9b1460b4444</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.Factory</span></td><td><code>329a9c16f45fea72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.FieldCacheEntry</span></td><td><code>93ea3c3584aedbb3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Disabled</span></td><td><code>ddf07ab3032320e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Disabled.Factory</span></td><td><code>c84409126dc3032a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.ExtractableView.AbstractBase</span></td><td><code>a2bce3211300b141</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration</span></td><td><code>85cfd05a0313231d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.1</span></td><td><code>1a7229cc1aa2fe64</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.2</span></td><td><code>4c4edc4b4128953d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.3</span></td><td><code>0086e69e9329bfd5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.AbstractBase</span></td><td><code>99ac1d4463895d3f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Illegal</span></td><td><code>fe05bdf1b81d2463</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Simple</span></td><td><code>7916d516ba029853</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase</span></td><td><code>891cf9f2a321fafd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation</span></td><td><code>29b19b204be139f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.1</span></td><td><code>3ba9a760aa49a971</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.2</span></td><td><code>8279f38afb254f72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.LoadedTypeInitializer.NoOp</span></td><td><code>1af8ca0d9b7adbe8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodAccessorFactory.AccessType</span></td><td><code>a8b1b417256441f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall</span></td><td><code>9251b44dfd29e831</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.Appender</span></td><td><code>b108fada5fdaf224</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.ArgumentLoader.ForMethodParameter</span></td><td><code>27c6e8587355ecbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.ArgumentLoader.ForMethodParameter.Factory</span></td><td><code>b4db52149f474bc5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForContextualInvocation</span></td><td><code>7006a4aee6d99734</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForContextualInvocation.Factory</span></td><td><code>655146ce4ac9eab5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForVirtualInvocation.WithImplicitType</span></td><td><code>b28621164470f5a3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodLocator.ForExplicitMethod</span></td><td><code>99f3c681fe17468e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall</span></td><td><code>c2ccb1366736cb31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall.Factory</span></td><td><code>be96e54468624529</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall.Resolved</span></td><td><code>02110acfeac01e0c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodParameter</span></td><td><code>7498b3460d90e103</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodParameter.Resolved</span></td><td><code>04cc8ab3c2c8bcbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation</span></td><td><code>68d4e2e3fcb8e6a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory</span></td><td><code>4240030260d49936</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Resolved</span></td><td><code>a4075eafb58b5ead</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple</span></td><td><code>8661202aa19373c5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.1</span></td><td><code>7e75be1c6b4d6117</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.2</span></td><td><code>f9781532f50651fb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.3</span></td><td><code>dfae9890b6004933</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.WithoutSpecifiedTarget</span></td><td><code>d6f1bb290a2a92f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation</span></td><td><code>ec9af1244cdb0f2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.Appender</span></td><td><code>578e9e4be578040b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.ImplementationDelegate.Compiled.ForStaticCall</span></td><td><code>78b3eb01c3540dcc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.ImplementationDelegate.ForStaticMethod</span></td><td><code>f19452fcc061d904</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.WithCustomProperties</span></td><td><code>c804a366d1128499</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall</span></td><td><code>48a9709638c71f00</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender</span></td><td><code>1278488d60ed8e86</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler</span></td><td><code>35d2e0ef6d7f630d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.1</span></td><td><code>05664af3a3b6738b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.2</span></td><td><code>be670f96c6d93831</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.1</span></td><td><code>09e39802151aefbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Default</span></td><td><code>7787cf7f483d6685</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.ForTypeAnnotations</span></td><td><code>040d5aab72de4582</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnField</span></td><td><code>52ad3ce83f52621f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnMethod</span></td><td><code>b2534f024a4880dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnMethodParameter</span></td><td><code>c9f39d80b694c092</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnType</span></td><td><code>db8f4f1dbbcf3c3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationRetention</span></td><td><code>6dca59a58d56874f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default</span></td><td><code>190882f8828de18a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.1</span></td><td><code>593737e47cc84848</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.2</span></td><td><code>a61861baa0bc96ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.FieldAttributeAppender.ForInstrumentedField</span></td><td><code>ca19f51ae14fb7b4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.Compound</span></td><td><code>87d24d92007e506e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.Factory.Compound</span></td><td><code>85113e9ca3ae38c3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod</span></td><td><code>4e40a53e08d4cbbb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod.1</span></td><td><code>a3b87b1a75d290fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod.2</span></td><td><code>10e734a991eea3bf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.NoOp</span></td><td><code>aa6841038c96aed0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType</span></td><td><code>537a1dac83c99ae9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType.Differentiating</span></td><td><code>542ad65dee4078dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.AuxiliaryType</span></td><td><code>577555a7861b5701</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom</span></td><td><code>9ff4d19573d987f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy</span></td><td><code>e4ad67673bba91b3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.AssignableSignatureCall</span></td><td><code>e32307e618f933aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.ConstructorCall</span></td><td><code>b40129a97ef170e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.ConstructorCall.Appender</span></td><td><code>6a4a35552c21bf78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.MethodCall</span></td><td><code>d2f0f120376a3b4f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.MethodCall.Appender</span></td><td><code>df4a3b2e219da333</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.PrecomputedMethodGraph</span></td><td><code>7fb29fbd9d22e04c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ArgumentTypeResolver</span></td><td><code>74973272be85ce17</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ArgumentTypeResolver.ParameterIndexToken</span></td><td><code>a8052b758f0a0361</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.DeclaringTypeResolver</span></td><td><code>d1000b5d5bf7bd79</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.1</span></td><td><code>54de841f73ee4eae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver</span></td><td><code>7d40b5a2d5d69397</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver.Compound</span></td><td><code>eab4a548d2693cd2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver.Resolution</span></td><td><code>e8ca39d95b4ade42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.BindingResolver.Default</span></td><td><code>ed3f9e212bdf4696</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Builder</span></td><td><code>ffaacecf2e1956bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Builder.Build</span></td><td><code>fbe15ed2c0b7c26f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Illegal</span></td><td><code>ca301be97fe35cde</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodInvoker.Simple</span></td><td><code>dafea2ba3b2f164b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Anonymous</span></td><td><code>30b0f734840f8b2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Illegal</span></td><td><code>470dc52d77c3898e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Unique</span></td><td><code>c60c100f523804e4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.Processor</span></td><td><code>1dd9238ba412581f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default</span></td><td><code>946265fda2ca27e8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default.1</span></td><td><code>db109132d7373fda</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default.2</span></td><td><code>cb3895b610bd15d5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodNameEqualityResolver</span></td><td><code>65a8d1431b34fdcd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ParameterLengthResolver</span></td><td><code>58a025cd0f10dff1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.AllArguments.Assignment</span></td><td><code>bfcd0244baa95f1b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.AllArguments.Binder</span></td><td><code>b7e6501b9bd85e65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.Binder</span></td><td><code>9d613cfc7a8f0cd6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic</span></td><td><code>ad9a5463673957e4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic.1</span></td><td><code>5750463a9b2658fe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic.2</span></td><td><code>653fe2b1bb93cce4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.BindingPriority.Resolver</span></td><td><code>2fd170c18c979895</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Default.Binder</span></td><td><code>fdd8dd2baa86d3db</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.DefaultCall.Binder</span></td><td><code>d7e4b58cec267a0e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.DefaultMethod.Binder</span></td><td><code>03d209c7b50b3b07</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Empty.Binder</span></td><td><code>6af2e8e3cdad25b3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.FieldValue.Binder</span></td><td><code>ffe1f66fdf57240f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.FieldValue.Binder.Delegate</span></td><td><code>b16d4f0b5def41e9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.IgnoreForBinding.Verifier</span></td><td><code>f6eaa0a37f2ce769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Origin.Binder</span></td><td><code>58bfe04015269f97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.RuntimeType.Verifier</span></td><td><code>79ef98193cf36f83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.StubValue.Binder</span></td><td><code>90a2fb5cbb2fc45c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Super.Binder</span></td><td><code>159db3adf8f80917</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.SuperCall.Binder</span></td><td><code>d504027b57aeebbe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.SuperMethod.Binder</span></td><td><code>787b81ea7c3cf9d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder</span></td><td><code>a9644f0a487b56f8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor</span></td><td><code>08e777de45b651f6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor.Handler.Bound</span></td><td><code>fe4b74c6469cb373</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor.Handler.Unbound</span></td><td><code>53b08d554175038c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder</span></td><td><code>6f273cd5a9428c36</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFieldBinding</span></td><td><code>49c4acf91fc87123</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFixedValue</span></td><td><code>b9c7d308b22352b1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFixedValue.OfConstant</span></td><td><code>50edd8158f4fee26</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.Record</span></td><td><code>f5597b43768b5a7b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.This.Binder</span></td><td><code>b3e837fb5b95fa04</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Compound</span></td><td><code>0f6ce72d7ea48338</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Simple</span></td><td><code>3d7cd79d87926f75</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Size</span></td><td><code>897030ac0b46252c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication</span></td><td><code>87726ed8bb6e39de</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.1</span></td><td><code>6cbf4aae44bb9c6a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.2</span></td><td><code>204abf23cbf37c68</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.3</span></td><td><code>0631976e078609bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal</span></td><td><code>6d539a300caa5092</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal.1</span></td><td><code>ab763f3b743f79a5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal.2</span></td><td><code>fd766afb93ac2a09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase</span></td><td><code>31ac4a0904ac3e09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Compound</span></td><td><code>96939a22aac4c91b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Illegal</span></td><td><code>d75e2eb0d394f6c3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Size</span></td><td><code>e69b15cd3e8d4461</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Trivial</span></td><td><code>56f2787cdbce4d40</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackSize</span></td><td><code>80f94e8effa2f7bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackSize.1</span></td><td><code>3706a73bbafad769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.TypeCreation</span></td><td><code>4865d2e454028bc1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.Assigner</span></td><td><code>7e67d52e9390b000</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.Assigner.Typing</span></td><td><code>b09adf7fa17d04b8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.TypeCasting</span></td><td><code>1a445bd188e2931d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveBoxingDelegate</span></td><td><code>dac9a66a711d1bdb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveBoxingDelegate.BoxingStackManipulation</span></td><td><code>96e0379915a5a251</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveTypeAwareAssigner</span></td><td><code>c888a19b998b7769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate</span></td><td><code>14e47d44e5cebb1d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate.ImplicitlyTypedUnboxingResponsible</span></td><td><code>adf7d49661fe0566</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveWideningDelegate</span></td><td><code>1008755d8fe45330</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveWideningDelegate.WideningStackManipulation</span></td><td><code>796408ff7247d988</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner</span></td><td><code>3df36760b29d387a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.reference.GenericTypeAwareAssigner</span></td><td><code>3623cb487284bb53</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.reference.ReferenceTypeAwareAssigner</span></td><td><code>59b5f6f8641c87f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory</span></td><td><code>f2dcfb1430649b3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator</span></td><td><code>7ff584cc516e3f40</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator.ForReferenceType</span></td><td><code>2ffee25860dde2e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayStackManipulation</span></td><td><code>2420354f9fdfb502</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.ClassConstant</span></td><td><code>8c2c8e360f844ad5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.ClassConstant.ForReferenceType</span></td><td><code>a779a54b4d7fcd6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.DefaultValue</span></td><td><code>56544d5987e5a6d8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.DoubleConstant</span></td><td><code>829c95b7b67e95cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.FloatConstant</span></td><td><code>bdee038754940fff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.IntegerConstant</span></td><td><code>58a28f871a6a0499</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.IntegerConstant.SingleBytePush</span></td><td><code>c5236e2c78a58d9f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.LongConstant</span></td><td><code>113f925135fa3020</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant</span></td><td><code>4af2674773bedc86</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant.CachedMethod</span></td><td><code>927dce16203d5f6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant.ForMethod</span></td><td><code>5c66dba4a8bfbcea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.NullConstant</span></td><td><code>9cf4bfc5c52a2517</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.TextConstant</span></td><td><code>76b9599de59f2aeb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess</span></td><td><code>e098860a4703e90a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher</span></td><td><code>20c90535a547e3cd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.AbstractFieldInstruction</span></td><td><code>75724b7b6b2e4a66</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldGetInstruction</span></td><td><code>adcac7724ac0272c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldPutInstruction</span></td><td><code>aeaedb775e139b65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodInvocation</span></td><td><code>ccdb8e0f61d03f72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodInvocation.Invocation</span></td><td><code>7edd2eb29addcb20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodReturn</span></td><td><code>3cbfd6833fda70dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess</span></td><td><code>7ec211e72c6c3719</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading</span></td><td><code>0b690307be533e18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading.TypeCastingHandler.NoOp</span></td><td><code>3f3d0d86b569e241</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetLoading</span></td><td><code>4794627822a950ec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetWriting</span></td><td><code>ec4ccc785b7c7e50</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.AnnotationVisitor</span></td><td><code>ab01c26438b8cd7b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.AnnotationWriter</span></td><td><code>0932d72e909ca807</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Attribute</span></td><td><code>706e3dca943537f4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ByteVector</span></td><td><code>202001c737179f70</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassReader</span></td><td><code>8b28e27e7ae030ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassVisitor</span></td><td><code>98826fd4e883df65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassWriter</span></td><td><code>c9c9db052671c945</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ConstantDynamic</span></td><td><code>dc6ffc20d56f472b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Context</span></td><td><code>e9c1b62b23feb9ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.FieldVisitor</span></td><td><code>21cf79e64cb95598</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.FieldWriter</span></td><td><code>3c4ebfcb2bc7032e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Handle</span></td><td><code>075f0ddabb6bbeec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Handler</span></td><td><code>763c7a3b0dc4fc7e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Label</span></td><td><code>c76a04cb58e54e7f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.MethodVisitor</span></td><td><code>3a3fa5cb8e06f5c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.MethodWriter</span></td><td><code>76fc9326535687d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Opcodes</span></td><td><code>987fc73ab7a62bbc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Symbol</span></td><td><code>f44d88efeab63dac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.SymbolTable</span></td><td><code>00001f478e852135</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.SymbolTable.Entry</span></td><td><code>904cbca1953e75e2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Type</span></td><td><code>45a01df29df18510</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.TypeReference</span></td><td><code>7c2c246da0bafedc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.ClassRemapper</span></td><td><code>3b51d3b9fc7535e2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.FieldRemapper</span></td><td><code>98cdb08947bd5f18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.Remapper</span></td><td><code>8ff8deecbcc3631a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.SignatureRemapper</span></td><td><code>cd6e68dcee40cdbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.SimpleRemapper</span></td><td><code>2b864e7450e7f441</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureReader</span></td><td><code>011d12c758b95e5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureVisitor</span></td><td><code>b9cc80f05fd1a1b5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureWriter</span></td><td><code>4b49360620cb7f6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.AnnotationTypeMatcher</span></td><td><code>4c083a293a95675e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.BooleanMatcher</span></td><td><code>fc276a6c128e2875</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionErasureMatcher</span></td><td><code>76b5d2cc623cc312</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionItemMatcher</span></td><td><code>640386844f0e29b8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionOneToOneMatcher</span></td><td><code>670278e525ff9bfc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionSizeMatcher</span></td><td><code>8f59b8be9ab4a58b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DeclaringAnnotationMatcher</span></td><td><code>72a4630003105f69</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DeclaringTypeMatcher</span></td><td><code>76e282c5482618bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DescriptorMatcher</span></td><td><code>e5d21259f82507a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase</span></td><td><code>d129e1a5bbea50cb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.Conjunction</span></td><td><code>6586c7d2abf8bf59</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.Disjunction</span></td><td><code>78eb86ff19c5e913</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.ForNonNullValues</span></td><td><code>40b97e222b442c20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatchers</span></td><td><code>4ccc5ccec6e01297</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.EqualityMatcher</span></td><td><code>7ddcccca3867f2c6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ErasureMatcher</span></td><td><code>327b39df894c794a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.FilterableList.AbstractBase</span></td><td><code>acc833b482b3e913</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.FilterableList.Empty</span></td><td><code>994e694dc878695f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.Disjunction</span></td><td><code>cf547e86976c153f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForFieldToken</span></td><td><code>08b4951ce99afdff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForFieldToken.ResolvedMatcher</span></td><td><code>7a313b55df92d5ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForMethodToken</span></td><td><code>acf53d7e0ad9c66c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForMethodToken.ResolvedMatcher</span></td><td><code>a1b47b682cdd16e5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.Resolved</span></td><td><code>838bf93f64347719</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParameterTypeMatcher</span></td><td><code>d565dce3bed4679b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParameterTypesMatcher</span></td><td><code>4f9a1c61c2ca1d30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParametersMatcher</span></td><td><code>754bf9d07553d1f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodReturnTypeMatcher</span></td><td><code>1b6fa22a35a706bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher</span></td><td><code>d9a4a7f8ba8d705a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort</span></td><td><code>df4da3ccf1c43fb2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.1</span></td><td><code>9f8edcf420246fae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.2</span></td><td><code>5b30e294f2304972</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.3</span></td><td><code>9c8b9e468a9ba4ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.4</span></td><td><code>4c3709005a13f932</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.5</span></td><td><code>93400b67a6230353</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ModifierMatcher</span></td><td><code>c0d2e66fbd31c083</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ModifierMatcher.Mode</span></td><td><code>09bd88f8f539be92</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.NameMatcher</span></td><td><code>b901fc4b35799fa4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.NegatingMatcher</span></td><td><code>a7d93978e9d78d7e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.SignatureTokenMatcher</span></td><td><code>60c758b99c3d9148</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher</span></td><td><code>236df1d1d60ab580</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode</span></td><td><code>78a8ab1a5e998326</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.1</span></td><td><code>197cd818fecbf0dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.2</span></td><td><code>130a12e752b093e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.3</span></td><td><code>37e1825b2b41bae8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.4</span></td><td><code>34a59e75ad57ee16</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.5</span></td><td><code>6b18de0e0195fcc7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.6</span></td><td><code>bdaf5299d13e3bfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.7</span></td><td><code>f608050eb76b29c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.8</span></td><td><code>7a1f43a330aa49e3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.9</span></td><td><code>d97cfe0669542624</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.SuperTypeMatcher</span></td><td><code>5f65e9ccb1649334</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.TypeSortMatcher</span></td><td><code>bea3cd319f7a9ab6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.VisibilityMatcher</span></td><td><code>6f0d2c70b6ce50e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.AbstractBase</span></td><td><code>03ef41c73bcdac6f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.AbstractBase.Hierarchical</span></td><td><code>1ef4bf1634aa9314</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.CacheProvider.Simple</span></td><td><code>d45eb8340ca21b2b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.ClassLoading</span></td><td><code>f60fbd5bc692f3c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Default</span></td><td><code>b27cb7242f69dd95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Default.ReaderMode</span></td><td><code>6279c7cb7ae80a38</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Empty</span></td><td><code>8c0a9ed2a729f1ac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.CompoundList</span></td><td><code>b8b501baeee21c20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.ConstructorComparator</span></td><td><code>c7333b6b982e8e09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.FieldComparator</span></td><td><code>040e57b459196f7f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.GraalImageCode</span></td><td><code>99c2d8870a99ec8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.Invoker.Dispatcher</span></td><td><code>bc20f0bd33abbced</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaModule</span></td><td><code>5223602c7c397de6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaType</span></td><td><code>5563ab2fa424caba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaType.LatentTypeWithSimpleName</span></td><td><code>420041c8025136fc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.MethodComparator</span></td><td><code>4e5549fe1a1bb16a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.OpenedClassReader</span></td><td><code>f4da9b2b059db195</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.RandomString</span></td><td><code>475c5a28b2a65671</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.StreamDrainer</span></td><td><code>264534737ce95d78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher</span></td><td><code>787d0fb443c33196</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForInstanceCheck</span></td><td><code>348c5ed1a0ea72ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForNonStaticMethod</span></td><td><code>bf4d2158c4101736</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForStaticMethod</span></td><td><code>2cbd19f9947661fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader</span></td><td><code>fa40b0b626be1aa7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.CreationAction</span></td><td><code>8ca4ae6007eb9fd7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.ForModuleSystem</span></td><td><code>9a96cee67ed31732</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.InvokerCreationAction</span></td><td><code>8b81db7b9bb021a1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.ProxiedInvocationHandler</span></td><td><code>a4eb032d57e965fc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.privilege.GetMethodAction</span></td><td><code>74124300a1be96ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.privilege.GetSystemPropertyAction</span></td><td><code>3dcb9c5481b99d57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.ExceptionTableSensitiveMethodVisitor</span></td><td><code>d6e802e0f103ce5a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.LineNumberPrependingMethodVisitor</span></td><td><code>39913d282d69be33</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.MetadataAwareClassVisitor</span></td><td><code>01777504b2dd8fd6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.StackAwareMethodVisitor</span></td><td><code>e665bc6a36ad6fe9</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator</span></td><td><code>48acc4243e8fe449</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator.Companion</span></td><td><code>ff8262c1c6baeb13</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator.Companion.AuthenticatorNone</span></td><td><code>c140ce1e145519a0</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner</span></td><td><code>5ddc1d05c58e1bdf</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner.Builder</span></td><td><code>b12d37865875ae96</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner.Companion</span></td><td><code>8c20054c6cbc0416</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite</span></td><td><code>0eaa2132ee6e2706</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite.Companion</span></td><td><code>17ee86ddcceb7e4a</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite.Companion.ORDER_BY_NAME.1</span></td><td><code>ba597ec154d0ee66</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionPool</span></td><td><code>ea05a4cced58609c</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec</span></td><td><code>012a1ffc11f3b1fe</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec.Builder</span></td><td><code>3b8eb37b21db0fcc</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec.Companion</span></td><td><code>71951efbfcef404f</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar</span></td><td><code>bc54a64c46466638</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar.Companion</span></td><td><code>475aa1d0143d5a2a</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar.Companion.NoCookies</span></td><td><code>e3b5e4871c5eba44</code></td></tr><tr><td><span class="el_class">okhttp3.Dispatcher</span></td><td><code>c460c11f7a7ca04d</code></td></tr><tr><td><span class="el_class">okhttp3.Dns</span></td><td><code>9669c9051983f50e</code></td></tr><tr><td><span class="el_class">okhttp3.Dns.Companion</span></td><td><code>44e434016d4f07fb</code></td></tr><tr><td><span class="el_class">okhttp3.Dns.Companion.DnsSystem</span></td><td><code>57ea8acc10183a14</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener</span></td><td><code>c50bd229b1b00f1b</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener.Companion</span></td><td><code>6dbc254653db2bef</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener.Companion.NONE.1</span></td><td><code>a0f6885b341318d2</code></td></tr><tr><td><span class="el_class">okhttp3.Headers</span></td><td><code>9fe4d16b6a6b95bc</code></td></tr><tr><td><span class="el_class">okhttp3.Headers.Companion</span></td><td><code>6f72a0bb0c6942e6</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient</span></td><td><code>4c8aacb81cf3525b</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient.Builder</span></td><td><code>7efbd1cc56f32c47</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient.Companion</span></td><td><code>9b723979b6fa78c0</code></td></tr><tr><td><span class="el_class">okhttp3.Protocol</span></td><td><code>f6ccc44e4e8bfa3c</code></td></tr><tr><td><span class="el_class">okhttp3.Protocol.Companion</span></td><td><code>14f6b1975836f78b</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody</span></td><td><code>618beef5446695e5</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody.Companion</span></td><td><code>416268e6649d363b</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody.Companion.toRequestBody.2</span></td><td><code>3c11ab4750a670f7</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody</span></td><td><code>e3132fdf997fcda9</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody.Companion</span></td><td><code>b06a628c80e77ce5</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody.Companion.asResponseBody.1</span></td><td><code>031b6168cd0b84bd</code></td></tr><tr><td><span class="el_class">okhttp3.TlsVersion</span></td><td><code>24674983c0f57201</code></td></tr><tr><td><span class="el_class">okhttp3.TlsVersion.Companion</span></td><td><code>f3c8cd05f5fa3931</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util</span></td><td><code>a21d89f3ef1d2fe0</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util.asFactory.1</span></td><td><code>908795f49264ea5a</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util.threadFactory.1</span></td><td><code>3127b8da07a224af</code></td></tr><tr><td><span class="el_class">okhttp3.internal.authenticator.JavaNetAuthenticator</span></td><td><code>6fb37d8f935d7f62</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.Task</span></td><td><code>3035d445f54280ef</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskQueue</span></td><td><code>9b48d32901fab490</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner</span></td><td><code>2e9c17ecd934a52c</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.Companion</span></td><td><code>fd1b7f5504dab12a</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.RealBackend</span></td><td><code>c9a7795b660070fc</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.runnable.1</span></td><td><code>4eede62df92750a3</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool</span></td><td><code>1b969936df171dd5</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool.Companion</span></td><td><code>cb99e5e893cd5aec</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool.cleanupTask.1</span></td><td><code>1d203298adac2d50</code></td></tr><tr><td><span class="el_class">okhttp3.internal.tls.OkHostnameVerifier</span></td><td><code>5b11bce6d19b3341</code></td></tr><tr><td><span class="el_class">okio.-Util</span></td><td><code>ba142450c6ecd1ef</code></td></tr><tr><td><span class="el_class">okio.Buffer</span></td><td><code>c54a8ca48f4b17cc</code></td></tr><tr><td><span class="el_class">okio.ByteString</span></td><td><code>a4ef4be72543fed3</code></td></tr><tr><td><span class="el_class">okio.ByteString.Companion</span></td><td><code>27f1800ebb72a350</code></td></tr><tr><td><span class="el_class">okio.Options</span></td><td><code>5ecf225e898cc4ad</code></td></tr><tr><td><span class="el_class">okio.Options.Companion</span></td><td><code>9bd9cda622dafec9</code></td></tr><tr><td><span class="el_class">okio.Segment</span></td><td><code>bb15f279e614a76b</code></td></tr><tr><td><span class="el_class">okio.Segment.Companion</span></td><td><code>b393eb92dd98b03b</code></td></tr><tr><td><span class="el_class">okio.SegmentPool</span></td><td><code>f2f52128ebd8f89a</code></td></tr><tr><td><span class="el_class">okio.internal.ByteStringKt</span></td><td><code>6ed15eb9808248c5</code></td></tr><tr><td><span class="el_class">org.apache.catalina.core.AprLifecycleListener</span></td><td><code>487acee4df9cc2d2</code></td></tr><tr><td><span class="el_class">org.apache.catalina.core.AprStatus</span></td><td><code>32ae5c5d4db9d2d4</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.Charsets</span></td><td><code>8ae1973f359dec29</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.IOUtils</span></td><td><code>d34a3b86c9eac5f9</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.StandardLineSeparator</span></td><td><code>f123936b889b5516</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.output.StringBuilderWriter</span></td><td><code>8b7c956b1d6c1e58</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.LocaleUtils</span></td><td><code>bc2e2f86861445f1</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.StringUtils</span></td><td><code>6ae9ee53b57670df</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.Validate</span></td><td><code>9bebf02364aa7ac6</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateFormat</span></td><td><code>f9f7bcf82ef324f5</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateFormat.1</span></td><td><code>2612a7bc2b4f9047</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser</span></td><td><code>3742d9b6151f7c32</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.1</span></td><td><code>7c49a8b7e3f006fe</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.2</span></td><td><code>b865463ec0c3ab58</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.3</span></td><td><code>13a812c6348c4b17</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.4</span></td><td><code>20f3fa41129f6ed0</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.5</span></td><td><code>8959d12d67a92015</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.CaseInsensitiveTextStrategy</span></td><td><code>422b824ec6a9efd8</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.CopyQuotedStrategy</span></td><td><code>b93608dc7ebe407f</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.NumberStrategy</span></td><td><code>9054a0d8c8c34415</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.PatternStrategy</span></td><td><code>d815eae092485a7b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.Strategy</span></td><td><code>faf4498c599df227</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.StrategyAndWidth</span></td><td><code>4338628d49545095</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.StrategyParser</span></td><td><code>5976d347fc1b08fd</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter</span></td><td><code>1ec0b0a94341cc0b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.CharacterLiteral</span></td><td><code>646ce9421c98fdd5</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.PaddedNumberField</span></td><td><code>ec19333ae779e1c8</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.StringLiteral</span></td><td><code>b42332b948155c97</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TextField</span></td><td><code>3bd8a2ad7e2e45ff</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TwelveHourField</span></td><td><code>9b94bb67cf359e2b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TwoDigitNumberField</span></td><td><code>0708ed2abc7e4020</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.UnpaddedNumberField</span></td><td><code>8eff3f4d59542e11</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FormatCache</span></td><td><code>649d59cd24ffed6f</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FormatCache.ArrayKey</span></td><td><code>455a219ae41ddcb4</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory</span></td><td><code>e248641dfadece2f</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.1</span></td><td><code>bdf4620c35b4eb66</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.2</span></td><td><code>85276ece6dd22248</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.3</span></td><td><code>75c7af9978a45eeb</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.4</span></td><td><code>c9a90de79ed7a4b2</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.6</span></td><td><code>cfb6bac3a5218169</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.NoOpLog</span></td><td><code>9cad35827419e8ba</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.SLF4JLocationAwareLog</span></td><td><code>c7c5bb72b73e94cf</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.SLF4JLogFactory</span></td><td><code>d78e8c8092c84bef</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable</span></td><td><code>1ce3a9a3afd730be</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable.Referenced</span></td><td><code>24e87006ab38c8e4</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable.WeakKey</span></td><td><code>54de5ff573d5fd74</code></td></tr><tr><td><span class="el_class">org.apache.el.ExpressionFactoryImpl</span></td><td><code>2e80d702eeacd8fa</code></td></tr><tr><td><span class="el_class">org.apache.el.util.ExceptionUtils</span></td><td><code>1b2b6c208cd8cdc9</code></td></tr><tr><td><span class="el_class">org.apache.http.Consts</span></td><td><code>3cf82da40bfcf276</code></td></tr><tr><td><span class="el_class">org.apache.http.HttpVersion</span></td><td><code>27b7102d52089bab</code></td></tr><tr><td><span class="el_class">org.apache.http.ProtocolVersion</span></td><td><code>bceeac6dae5f00bd</code></td></tr><tr><td><span class="el_class">org.apache.http.client.config.RequestConfig</span></td><td><code>883ae8e07ee79b59</code></td></tr><tr><td><span class="el_class">org.apache.http.client.config.RequestConfig.Builder</span></td><td><code>e2ea9b5a736b074d</code></td></tr><tr><td><span class="el_class">org.apache.http.client.entity.DeflateInputStreamFactory</span></td><td><code>bc533f00ce914faa</code></td></tr><tr><td><span class="el_class">org.apache.http.client.entity.GZIPInputStreamFactory</span></td><td><code>b1a328500634f33b</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAcceptEncoding</span></td><td><code>2a078ebdd5f5f9ef</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAddCookies</span></td><td><code>2ab466012da911d5</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAuthCache</span></td><td><code>5bdc16f71e3cae1e</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestClientConnControl</span></td><td><code>a813f4d5e2903517</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestDefaultHeaders</span></td><td><code>d388691f2eed6ebb</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestExpectContinue</span></td><td><code>309053b95cfb0a56</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.ResponseContentEncoding</span></td><td><code>25b8a27aedd46ebe</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.ResponseProcessCookies</span></td><td><code>74c27f70347c2684</code></td></tr><tr><td><span class="el_class">org.apache.http.config.Registry</span></td><td><code>8f748b2a3ddd8ddb</code></td></tr><tr><td><span class="el_class">org.apache.http.config.RegistryBuilder</span></td><td><code>befaf5bc5e0c72e2</code></td></tr><tr><td><span class="el_class">org.apache.http.config.SocketConfig</span></td><td><code>3ae82f9bf8ba4a55</code></td></tr><tr><td><span class="el_class">org.apache.http.config.SocketConfig.Builder</span></td><td><code>62c63a0cb94235bb</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.routing.BasicRouteDirector</span></td><td><code>c360b318c9f2a884</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.socket.PlainConnectionSocketFactory</span></td><td><code>9a5c46331a2190be</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.AbstractVerifier</span></td><td><code>d0eb1d01925b30f0</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.AllowAllHostnameVerifier</span></td><td><code>7e32725d6d902f39</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.BrowserCompatHostnameVerifier</span></td><td><code>aa28b4e17fc10d36</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.DefaultHostnameVerifier</span></td><td><code>b79964ea57ba2d5e</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.SSLConnectionSocketFactory</span></td><td><code>da1900cac85d4f17</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.StrictHostnameVerifier</span></td><td><code>3e71f6c485ba5a08</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.DomainType</span></td><td><code>e287ffb4131a0d2b</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixList</span></td><td><code>4dd7f1af80880a70</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixListParser</span></td><td><code>7488dd5b6153347e</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixMatcher</span></td><td><code>302eab88577ac15b</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixMatcherLoader</span></td><td><code>22b8d02d02da223c</code></td></tr><tr><td><span class="el_class">org.apache.http.cookie.CookieIdentityComparator</span></td><td><code>5f11b45373aa08c1</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.DefaultConnectionReuseStrategy</span></td><td><code>4aa0971cf6dca5e2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.DefaultHttpResponseFactory</span></td><td><code>0f3d46e19341ed21</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.EnglishReasonPhraseCatalog</span></td><td><code>1f8341686d9c338d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.BasicSchemeFactory</span></td><td><code>4a2cd72a26419fbd</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.DigestSchemeFactory</span></td><td><code>7f0a87385fe29b37</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.HttpAuthenticator</span></td><td><code>96c811954ec19bf5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.KerberosSchemeFactory</span></td><td><code>cc986052254dcfd0</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.NTLMSchemeFactory</span></td><td><code>7ce44533a4e8764c</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.SPNegoSchemeFactory</span></td><td><code>2bc9ae1bc6d89ee9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.AuthenticationStrategyImpl</span></td><td><code>d82018b1d706d291</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.BasicCookieStore</span></td><td><code>da4b2d6f43faed8d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.BasicCredentialsProvider</span></td><td><code>6e475cf93ec1f5b1</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.CloseableHttpClient</span></td><td><code>f4aafdbf4b552ab9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.CookieSpecRegistries</span></td><td><code>0f6c33d629106dac</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultClientConnectionReuseStrategy</span></td><td><code>2eaac97b79658c88</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultConnectionKeepAliveStrategy</span></td><td><code>2fcd056682bfadd5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultHttpRequestRetryHandler</span></td><td><code>f0ede3e3469d0137</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultRedirectStrategy</span></td><td><code>7d74fc2ed90525a7</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultUserTokenHandler</span></td><td><code>6c1d41e5ea20e395</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClientBuilder</span></td><td><code>cdce1ac974c15e4a</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClientBuilder.2</span></td><td><code>c0a0fecaf547acaa</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClients</span></td><td><code>92627c78c773cfa0</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.InternalHttpClient</span></td><td><code>9b6ae5d30b0c98e5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.ProxyAuthenticationStrategy</span></td><td><code>75906edf245624b2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.TargetAuthenticationStrategy</span></td><td><code>fbe1c18d4d2e11a2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.CPool</span></td><td><code>9d7f574eb6265812</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultHttpClientConnectionOperator</span></td><td><code>47b06d6d87460962</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultHttpResponseParserFactory</span></td><td><code>2648ce5c15387a21</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultRoutePlanner</span></td><td><code>785570d34f1c6794</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultSchemePortResolver</span></td><td><code>e8df82807fa7d6ef</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.ManagedHttpClientConnectionFactory</span></td><td><code>d3a2556d095706e9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager</span></td><td><code>9f8a0da912cef458</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.2</span></td><td><code>60868c9cc1afed90</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.ConfigData</span></td><td><code>fbd5f662372f25fe</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.InternalConnectionFactory</span></td><td><code>0cc436dd64622e56</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.SystemDefaultDnsResolver</span></td><td><code>16232f39524cf361</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.DefaultCookieSpecProvider</span></td><td><code>5450fcb0f7283148</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.DefaultCookieSpecProvider.CompatibilityLevel</span></td><td><code>2f23c05f6b74d5f2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.IgnoreSpecProvider</span></td><td><code>90f12932999c4dc6</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.NetscapeDraftSpecProvider</span></td><td><code>d2abd51a1fb938a5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.RFC6265CookieSpecProvider</span></td><td><code>5b41842dabd1f827</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.RFC6265CookieSpecProvider.CompatibilityLevel</span></td><td><code>437eaa6e23875ef8</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.entity.LaxContentLengthStrategy</span></td><td><code>0c9f0e945eab71d9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.entity.StrictContentLengthStrategy</span></td><td><code>27b096a028c4f58d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.MainClientExec</span></td><td><code>449f41c49520fccb</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.ProtocolExec</span></td><td><code>74c09f98c0802df2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.RedirectExec</span></td><td><code>74e8db71825c8217</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.RetryExec</span></td><td><code>f27485023e68ec36</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.io.DefaultHttpRequestWriterFactory</span></td><td><code>5825e3d11737d431</code></td></tr><tr><td><span class="el_class">org.apache.http.message.BasicLineFormatter</span></td><td><code>7227c8d6fbf0d68c</code></td></tr><tr><td><span class="el_class">org.apache.http.message.BasicLineParser</span></td><td><code>1a9a5678d705b3d9</code></td></tr><tr><td><span class="el_class">org.apache.http.pool.AbstractConnPool</span></td><td><code>10205652e2415e48</code></td></tr><tr><td><span class="el_class">org.apache.http.pool.AbstractConnPool.3</span></td><td><code>6076716b4d599e34</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.ChainBuilder</span></td><td><code>dedae8deb30a129e</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.HttpProcessorBuilder</span></td><td><code>e4a201d287f99e90</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.HttpRequestExecutor</span></td><td><code>c22bbe14b9ab09aa</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.ImmutableHttpProcessor</span></td><td><code>46b93e9c4a5ad5f8</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestContent</span></td><td><code>3e26e6cd49d7fc5c</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestTargetHost</span></td><td><code>d8ea9b4a0817447a</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestUserAgent</span></td><td><code>5e29e5b0e1552f10</code></td></tr><tr><td><span class="el_class">org.apache.http.ssl.SSLContexts</span></td><td><code>b7f7948910960a1c</code></td></tr><tr><td><span class="el_class">org.apache.http.util.Args</span></td><td><code>4305e3ff5d359103</code></td></tr><tr><td><span class="el_class">org.apache.http.util.TextUtils</span></td><td><code>89b93c07951d477e</code></td></tr><tr><td><span class="el_class">org.apache.http.util.VersionInfo</span></td><td><code>b8f9bb6dcdff1aac</code></td></tr><tr><td><span class="el_class">org.apache.juli.logging.DirectJDKLog</span></td><td><code>ba1717f0b96e0c84</code></td></tr><tr><td><span class="el_class">org.apache.juli.logging.LogFactory</span></td><td><code>310ef694312291ff</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.Level</span></td><td><code>29afbabf87c98ffc</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.LogManager</span></td><td><code>21721b712e748cd3</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.MarkerManager</span></td><td><code>686e6591f3fcfc4e</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.MarkerManager.Log4jMarker</span></td><td><code>bec62c0128e68de0</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext</span></td><td><code>4978ae4ad27d07ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext.EmptyIterator</span></td><td><code>5ad63a2e98c65d85</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext.EmptyThreadContextStack</span></td><td><code>be7b9911135d4f19</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.internal.LogManagerStatus</span></td><td><code>d7c267a16cda8d07</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.AbstractMessageFactory</span></td><td><code>15d5c9221c72dcbd</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.DefaultFlowMessageFactory</span></td><td><code>bf83b1ca110171d4</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.MessageFormatMessageFactory</span></td><td><code>2453784136409935</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.ParameterizedMessageFactory</span></td><td><code>759517385422b015</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.ParameterizedNoReferenceMessageFactory</span></td><td><code>2fcb790285df9911</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.simple.SimpleLogger</span></td><td><code>f67e73a3666cd8d8</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.AbstractLogger</span></td><td><code>153235afa960b06b</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.AbstractLogger.LocalLogBuilder</span></td><td><code>c9d30ea060a4599e</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.CopyOnWriteSortedArrayThreadContextMap</span></td><td><code>6c5191209b38ebee</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.DefaultThreadContextMap</span></td><td><code>110446dfda4b75ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.DefaultThreadContextStack</span></td><td><code>b6e258de2af31ca1</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.GarbageFreeSortedArrayThreadContextMap</span></td><td><code>4ee19a702bd7d744</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerContext</span></td><td><code>3251e6940096fb1a</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerRegistry</span></td><td><code>c4f2dcfd0eaeed50</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerRegistry.ConcurrentMapFactory</span></td><td><code>180fc5aae1eba577</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.Provider</span></td><td><code>80f64cec5c4537eb</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.StandardLevel</span></td><td><code>c0b339ac672ea2bc</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.ThreadContextMapFactory</span></td><td><code>13004c109b2bc868</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.status.StatusLogger</span></td><td><code>95fb764e805546ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.status.StatusLogger.BoundedQueue</span></td><td><code>1d79f41bb870fcf7</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.Constants</span></td><td><code>1fa3e825b4e186c5</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.EnvironmentPropertySource</span></td><td><code>4b940b1ccc41760c</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.LoaderUtil</span></td><td><code>83e4fdde5ed51afe</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.LoaderUtil.ThreadContextClassLoaderGetter</span></td><td><code>8b84474a8a4dbe6d</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesPropertySource</span></td><td><code>6ce9a6e1e79e3980</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesUtil</span></td><td><code>5847143a7de7d420</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesUtil.Environment</span></td><td><code>39f9a7c748b5fa28</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertyFilePropertySource</span></td><td><code>1f4646fc06a77a86</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource</span></td><td><code>586664f3359979c9</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource.Comparator</span></td><td><code>88eda2ac2a423726</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource.Util</span></td><td><code>1a155be7e0e9b9c7</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.ProviderUtil</span></td><td><code>be53e65a5f770902</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.SortedArrayStringMap</span></td><td><code>7223eddef59a0674</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.Strings</span></td><td><code>869cf81d3a635417</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.SystemPropertiesPropertySource</span></td><td><code>6a9de9fc634e3a95</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.internal.DefaultObjectInputFilter</span></td><td><code>d032400c1ec0b161</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.MDCContextMap</span></td><td><code>ba944d55b559bfca</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLogger</span></td><td><code>b5301b24ea88b70a</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLogger.1</span></td><td><code>48eacf3ed9657d4e</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLoggerContext</span></td><td><code>3523405b454ab3b2</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLoggerContextFactory</span></td><td><code>b4bc4fa41cd5c476</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JProvider</span></td><td><code>eb904ddf11c0da04</code></td></tr><tr><td><span class="el_class">org.apache.maven.plugin.surefire.log.api.NullConsoleLogger</span></td><td><code>80d79e52a7499259</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.AbstractPathConfiguration</span></td><td><code>8182fa1396653f01</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BaseProviderFactory</span></td><td><code>82593383b8ea92d6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BiProperty</span></td><td><code>4945e268841ae2cb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BooterDeserializer</span></td><td><code>5e68b147d2c4b22f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClassLoaderConfiguration</span></td><td><code>dc8fd5c18ebb0e44</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Classpath</span></td><td><code>c898ea9ca4a65da5</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClasspathConfiguration</span></td><td><code>fbf5fb96600339ce</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Command</span></td><td><code>eb1b53eb8cbe7b47</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader</span></td><td><code>0c8d3ca700ec7199</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.1</span></td><td><code>fbfebde20e2b504c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.CommandRunnable</span></td><td><code>ee59ae4d74408619</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.DumpErrorSingleton</span></td><td><code>2b476b92c5a56cec</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter</span></td><td><code>7c637cf5651513d1</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.1</span></td><td><code>8e738e4578953efa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.2</span></td><td><code>eed8c1764882af0e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.3</span></td><td><code>c484c4542ee85d76</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.4</span></td><td><code>fdd9c09c784f8eea</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.5</span></td><td><code>7b8c4d35432edce6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.6</span></td><td><code>b897d54528b69e6d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.7</span></td><td><code>fe5121edb86030bc</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.PingScheduler</span></td><td><code>d29065207a6b6c40</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkingReporterFactory</span></td><td><code>076a6c0176f6238b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkingRunListener</span></td><td><code>92d4b034b32ca2c0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.MasterProcessCommand</span></td><td><code>da65de332c2de19d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker</span></td><td><code>71b8c658da2ea8d3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker.1</span></td><td><code>a004a9a91ab49ba2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker.ProcessInfoConsumer</span></td><td><code>73f319c21fab7e7f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProcessInfo</span></td><td><code>b5b56cd86f3f0b31</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PropertiesWrapper</span></td><td><code>ae4bf137cc5290c1</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProviderConfiguration</span></td><td><code>d19986536a351b50</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Shutdown</span></td><td><code>ee9c65017e107986</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.StartupConfiguration</span></td><td><code>a8cc10b01ed27439</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.SystemPropertyManager</span></td><td><code>f47497b1dde50d64</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.TypeEncodedValue</span></td><td><code>5ea9766678ac06a2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.cli.CommandLineOption</span></td><td><code>467fc7f51b73863b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.JUnitPlatformProvider</span></td><td><code>ab158bf01758e7cb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.RunListenerAdapter</span></td><td><code>02cb8e87a6db2057</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.TestPlanScannerFilter</span></td><td><code>622558f718a42827</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.providerapi.AbstractProvider</span></td><td><code>90f3b08fe8a1c87c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture</span></td><td><code>b8ae904ed8536017</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture.ForwardingPrintStream</span></td><td><code>f912ea5d2dac308e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture.NullOutputStream</span></td><td><code>8d05eb67510fd586</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ReporterConfiguration</span></td><td><code>4281487891f02f69</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.SimpleReportEntry</span></td><td><code>ced572f24a462295</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.io.IOUtils</span></td><td><code>31aed2fcfab3e082</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.io.output.StringBuilderWriter</span></td><td><code>6d33fec8cb3374c0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.JavaVersion</span></td><td><code>a8452005cb20bb7d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.StringUtils</span></td><td><code>4f785afa8bb3a23f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.SystemUtils</span></td><td><code>aba69a973b7ba06a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.math.NumberUtils</span></td><td><code>d0156407bff7b695</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.maven.shared.utils.StringUtils</span></td><td><code>483d14212b21a3ea</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.suite.RunResult</span></td><td><code>f5c7c53a954bcafa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.DirectoryScannerParameters</span></td><td><code>2b5eeacae469cd1d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.IncludedExcludedPatterns</span></td><td><code>f39908e3b64d7090</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest</span></td><td><code>a598483e424232d4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.ClassMatcher</span></td><td><code>79be7f2fa77ad8d7</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.MethodMatcher</span></td><td><code>7c71374a51e8e61b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.Type</span></td><td><code>90e4214668937845</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.RunOrderParameters</span></td><td><code>b4c06223c3099700</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestArtifactInfo</span></td><td><code>f703953620e80b33</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestListResolver</span></td><td><code>7d372c99b98a147d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestRequest</span></td><td><code>0fa2c0cc34345df2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.CloseableIterator</span></td><td><code>cc15bdebae86d5d2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.DefaultRunOrderCalculator</span></td><td><code>1aeecbcd3bf6e89b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.DefaultScanResult</span></td><td><code>7fefafdf8c793c36</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.ReflectionUtils</span></td><td><code>8d5f4b05d6d77207</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.RunOrder</span></td><td><code>d2292a6beb4b6337</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.TestsToRun</span></td><td><code>a95363e4b4ba2069</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.TestsToRun.ClassesIterator</span></td><td><code>84a139c598502c0b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DaemonThreadFactory</span></td><td><code>21a589f6dedb169c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DaemonThreadFactory.NamedThreadFactory</span></td><td><code>682458ca85b067a3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DumpFileUtils</span></td><td><code>506743b77fc98f6e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.ImmutableMap</span></td><td><code>72bcae5e55b4fabb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.ObjectUtils</span></td><td><code>69a2a92649b44645</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.StringUtils</span></td><td><code>3a7e4daf0a993e1e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.StringUtils.EncodedArray</span></td><td><code>477f1d94d78cb50b</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.jni.Library</span></td><td><code>c6bdff30495076d2</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.jni.LibraryNotFoundError</span></td><td><code>ba7d7e98bfdfff6a</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.util.res.StringManager</span></td><td><code>beba5b7c99f57db8</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.util.res.StringManager.1</span></td><td><code>c8d234b3a63df2b8</code></td></tr><tr><td><span class="el_class">org.apiguardian.api.API.Status</span></td><td><code>95d0ffea805fc01a</code></td></tr><tr><td><span class="el_class">org.aspectj.util.PartialOrder</span></td><td><code>2abfd9dbf3cfcfdd</code></td></tr><tr><td><span class="el_class">org.hibernate.CacheMode</span></td><td><code>1f15cf0fe8801ff9</code></td></tr><tr><td><span class="el_class">org.hibernate.ConnectionAcquisitionMode</span></td><td><code>9a68dba18919c084</code></td></tr><tr><td><span class="el_class">org.hibernate.ConnectionReleaseMode</span></td><td><code>c1e079ba5f691ef1</code></td></tr><tr><td><span class="el_class">org.hibernate.EmptyInterceptor</span></td><td><code>da4a9785d48f51d1</code></td></tr><tr><td><span class="el_class">org.hibernate.EntityMode</span></td><td><code>90f423bbcff195e1</code></td></tr><tr><td><span class="el_class">org.hibernate.FetchMode</span></td><td><code>c66975d9ebf5bd6e</code></td></tr><tr><td><span class="el_class">org.hibernate.FlushMode</span></td><td><code>1c5ddbdf8798ace6</code></td></tr><tr><td><span class="el_class">org.hibernate.Hibernate</span></td><td><code>d6496f5c14f2534e</code></td></tr><tr><td><span class="el_class">org.hibernate.HibernateException</span></td><td><code>113c3f17cf5349db</code></td></tr><tr><td><span class="el_class">org.hibernate.LockMode</span></td><td><code>9a09012fca785f4b</code></td></tr><tr><td><span class="el_class">org.hibernate.LockOptions</span></td><td><code>2f956fa8eda479f1</code></td></tr><tr><td><span class="el_class">org.hibernate.MultiTenancyStrategy</span></td><td><code>71aa427efdafa611</code></td></tr><tr><td><span class="el_class">org.hibernate.NullPrecedence</span></td><td><code>0af4d5a97b18b611</code></td></tr><tr><td><span class="el_class">org.hibernate.Query</span></td><td><code>c01bd09d58d4ba97</code></td></tr><tr><td><span class="el_class">org.hibernate.Query.1</span></td><td><code>ea180c15c7c0c26f</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode</span></td><td><code>93745a97c6b98b5d</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.1</span></td><td><code>ce55d25272ed03d1</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.2</span></td><td><code>c07498c8c7ae5fb1</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.3</span></td><td><code>9aff1586bbba6d33</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.4</span></td><td><code>38448fdd55a3f382</code></td></tr><tr><td><span class="el_class">org.hibernate.ScrollMode</span></td><td><code>b47e8ad55356166c</code></td></tr><tr><td><span class="el_class">org.hibernate.SessionFactoryObserver</span></td><td><code>0c113d25f9522dbc</code></td></tr><tr><td><span class="el_class">org.hibernate.UnresolvableObjectException</span></td><td><code>36cc342dacd9e1be</code></td></tr><tr><td><span class="el_class">org.hibernate.Version</span></td><td><code>9ef0b4a8c05b06d1</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.AbstractEntityInsertAction</span></td><td><code>a5d57b34128a3d5a</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.BulkOperationCleanupAction</span></td><td><code>ee6bda7d6ebde237</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionAction</span></td><td><code>df3d8fcf17d195ff</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionRecreateAction</span></td><td><code>b46ff0266fc0dc10</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionRemoveAction</span></td><td><code>9b11291b0aa8e4e6</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionUpdateAction</span></td><td><code>249c4184b8cecdb9</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityAction</span></td><td><code>1b542b4d026fd65c</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityDeleteAction</span></td><td><code>a2fda5a433195d82</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityInsertAction</span></td><td><code>fac5c701118a0fc8</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityUpdateAction</span></td><td><code>d811e9c1d9a54c7b</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.CacheConcurrencyStrategy</span></td><td><code>4291b4deae174f1d</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.CascadeType</span></td><td><code>361c7e08a9524fcf</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.OptimisticLockType</span></td><td><code>d3f9345a062b00b7</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.PolymorphismType</span></td><td><code>c97cca2a9be74b7b</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.Version</span></td><td><code>8f8fd2f4ba3d143d</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.ReflectionUtil</span></td><td><code>93f7b7a527d67d5f</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.XClass</span></td><td><code>f5d567c16ec5ef40</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.XClass.1</span></td><td><code>f92aab7f66bd6c13</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaAnnotationReader</span></td><td><code>93183d57ab09c610</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaMetadataProvider</span></td><td><code>bcea9890d72254de</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager</span></td><td><code>b45f19a4e3e1b954</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager.1</span></td><td><code>2e8745dcbe1b2688</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager.2</span></td><td><code>ede656a025c0b278</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXAnnotatedElement</span></td><td><code>246327e97f53d2b6</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXArrayType</span></td><td><code>7041cf946b105205</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXClass</span></td><td><code>01c607e6fa16f7b1</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXCollectionType</span></td><td><code>fc2aaa306b40fa8c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXCollectionType.1</span></td><td><code>963fef015e782316</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXMember</span></td><td><code>044772aae21f0eeb</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXMethod</span></td><td><code>b4e1d0392cec8a60</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXProperty</span></td><td><code>28d2c66a7708de02</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXSimpleType</span></td><td><code>0a5000bca2142737</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXType</span></td><td><code>8cbb2c0cf3aa4afa</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.TypeEnvironmentMap</span></td><td><code>fdf486d0f5939561</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.TypeEnvironmentMap.ContextScope</span></td><td><code>5501d855e8cb7172</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.ApproximatingTypeEnvironment</span></td><td><code>a4f3af00637d9424</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.ApproximatingTypeEnvironment.1</span></td><td><code>c8f879a20267f95e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.CompoundTypeEnvironment</span></td><td><code>94c2d61fcd866c0c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.IdentityTypeEnvironment</span></td><td><code>cd1a2280150e359e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.SimpleTypeEnvironment</span></td><td><code>baa70dac30fe41ae</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.SimpleTypeEnvironment.1</span></td><td><code>cfc579139aa74c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeEnvironmentFactory</span></td><td><code>c48e94e52a33928a</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeEnvironmentFactory.1</span></td><td><code>e896c67a174279fc</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeSwitch</span></td><td><code>9b2e73041cd56fff</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils</span></td><td><code>e0610d91f334fb34</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.1</span></td><td><code>63c2e03d2ce9cfd9</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.2</span></td><td><code>48672c4b98d9d0d2</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.3</span></td><td><code>6603120734f0577e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.4</span></td><td><code>2d91f045433682d2</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl</span></td><td><code>783558cfe3579676</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.impl.Log_.logger</span></td><td><code>24f06a416ca0d0a7</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.impl.LoggerFactory</span></td><td><code>1e6888b6cf1ad033</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.MetadataSources</span></td><td><code>1687d78ac710abf1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.SchemaAutoTooling</span></td><td><code>ced22af4f9857e60</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.TempTableDdlTransactionHandling</span></td><td><code>203670e20019bf15</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.DisabledScanner</span></td><td><code>6abcb8f22dbf5d78</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.ScanResultImpl</span></td><td><code>7dab960c51824ce5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.StandardScanOptions</span></td><td><code>a48053638bc4cdcf</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.StandardScanParameters</span></td><td><code>389bd37750c3efef</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.CfgXmlAccessServiceImpl</span></td><td><code>143a25566ee9d147</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.CfgXmlAccessServiceInitiator</span></td><td><code>7aa554eb57092fa3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.ConfigLoader</span></td><td><code>a997a29f19e8d3f3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.ConfigLoader.1</span></td><td><code>ab8d3d27658df020</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.spi.LoadedConfig</span></td><td><code>619906efeda01f69</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.BootstrapContextImpl</span></td><td><code>0185c8f21376d4ea</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.ClassLoaderAccessImpl</span></td><td><code>c61c089088455aa9</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.ClassmateContext</span></td><td><code>e2687958ec856a8f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultCustomEntityDirtinessStrategy</span></td><td><code>2f9ac4b152a8ce1c</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultSessionFactoryBuilderInitiator</span></td><td><code>86d47ade3e4f6262</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultSessionFactoryBuilderService</span></td><td><code>8512879a33104e39</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl</span></td><td><code>b17485abd5abc5d3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl.1</span></td><td><code>dd016991fd675894</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl.FallbackInterpreter</span></td><td><code>e890d8c89b98e7f0</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl</span></td><td><code>86fbff8204eb4381</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.1</span></td><td><code>3acc82b1cca24b99</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.EntityTableXrefImpl</span></td><td><code>2cd30a1621716416</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.TableColumnNameBinding</span></td><td><code>5769d93c299c5422</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl</span></td><td><code>4a5a4e83a3d2dd60</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MappingDefaultsImpl</span></td><td><code>00f922730b047b2a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MappingDefaultsImpl.1</span></td><td><code>846124b0812bf350</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl</span></td><td><code>a4880cd312cb6de4</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.1</span></td><td><code>c3864a6f5c960706</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.2</span></td><td><code>b96f6c8129175d41</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.3</span></td><td><code>6a2b25329428fc8b</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.4</span></td><td><code>eb1d114cf0f249be</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuildingContextRootImpl</span></td><td><code>d26b7f2676450bf3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuildingContextRootImpl.1</span></td><td><code>e0c8a02580d02068</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataImpl</span></td><td><code>cec1d009458de8a6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.SessionFactoryBuilderImpl</span></td><td><code>8c85306d3e5963de</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.SessionFactoryOptionsBuilder</span></td><td><code>cf513e56ae1ca9be</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.StandardEntityNotFoundDelegate</span></td><td><code>f6e98afc9df81450</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.AbstractBinder</span></td><td><code>716a37fb07712013</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.MappingBinder</span></td><td><code>4b7bbd92f2bb6d11</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalSchemaLocator</span></td><td><code>3a7a6e11673d88d2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver</span></td><td><code>3b6e9ead280396b2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver.DtdMapping</span></td><td><code>27a959e220e6e8ff</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver.NamespaceSchemaMapping</span></td><td><code>028314bd5135630e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.convert.internal.AttributeConverterManager</span></td><td><code>0f1c1e716f366838</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.convert.internal.AttributeConverterManager.ConversionSite</span></td><td><code>99628e7f9c3aa8e9</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy</span></td><td><code>a848ac2d0a66c902</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.Identifier</span></td><td><code>cbd9d155d352824a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.ImplicitNamingStrategyJpaCompliantImpl</span></td><td><code>3ddca003678af7da</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.NamingHelper</span></td><td><code>1ce850e1566df66a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.NamingHelper.1</span></td><td><code>733f77852e3afd8a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.ObjectNameNormalizer</span></td><td><code>245649f4bdde955d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl</span></td><td><code>70503fdea2f46b3d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.internal.ManagedResourcesImpl</span></td><td><code>89ee5de8213392bf</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.internal.ScanningCoordinator</span></td><td><code>10bfc69e99701e4e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess</span></td><td><code>741da94270aaa6f8</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess.1</span></td><td><code>75ea302c3e07d551</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess.2</span></td><td><code>ac428d6f63bc86ff</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Database</span></td><td><code>5e3106ef05854638</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace</span></td><td><code>4b57fedda466a612</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace.ComparableHelper</span></td><td><code>7397e530edecc2c0</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace.Name</span></td><td><code>e0546aafeecd306f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedNameImpl</span></td><td><code>816c7fde4044a47f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedNameParser.NameParts</span></td><td><code>49555aeaa7129e31</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedSequenceName</span></td><td><code>27c4990d315efb57</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedTableName</span></td><td><code>d795668b7909d672</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Sequence</span></td><td><code>af39f26d3b9f1dd3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.internal.SqlStringGenerationContextImpl</span></td><td><code>0798ff2b46099c06</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl</span></td><td><code>3a683c0f0cb42490</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl.1</span></td><td><code>bc6c4476b50167b6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl.AttributeConverterManager</span></td><td><code>94785b8488f58673</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.EntityHierarchyBuilder</span></td><td><code>826ece9222e95ab1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.HbmMetadataSourceProcessorImpl</span></td><td><code>1d1e3e0da5bc6c9f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.ModelBinder</span></td><td><code>5d8a40ada478f2a5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.ModelBinder.1</span></td><td><code>1c7f3bf39bfc9847</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.RelationalObjectBinder</span></td><td><code>e25e75acbd2c4280</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.spi.AbstractAttributeKey</span></td><td><code>27d63eb3e3b3e1ba</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.spi.AttributePath</span></td><td><code>5b97441b8cb07437</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.BootstrapServiceRegistryBuilder</span></td><td><code>af997020fce4237e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder</span></td><td><code>1a4bf503301baed1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder.1</span></td><td><code>1150a88c416083c6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder.2</span></td><td><code>e38aad7d31a32567</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader</span></td><td><code>be57392e04e60734</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader.2</span></td><td><code>226f720c63ee1a9d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader.4</span></td><td><code>5f41131b2e4fcff8</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedServiceLoader</span></td><td><code>0af50c5c58a46a86</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedServiceLoader.ClassPathAndModulePathAggregatedServiceLoader</span></td><td><code>bddbd853b9dbbda5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl</span></td><td><code>340291e35d25880a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl.1</span></td><td><code>a785f935c252031e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.TcclLookupPrecedence</span></td><td><code>6c5bec329172a707</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.internal.BootstrapServiceRegistryImpl</span></td><td><code>b685985dceb1b2f5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.internal.StandardServiceRegistryImpl</span></td><td><code>a2d0aca886e2b8b2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.DefaultDialectSelector</span></td><td><code>7b3e9e3075b91743</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.DefaultJtaPlatformSelector</span></td><td><code>49da1ce43ea899cb</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.StrategySelectorBuilder</span></td><td><code>32e9b6ae82ff6b9f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.StrategySelectorImpl</span></td><td><code>31255cb081c0731a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.spi.XmlMappingBinderAccess</span></td><td><code>a4dede357fa170fc</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.BytecodeLogging</span></td><td><code>75c040604e203287</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer</span></td><td><code>75db2c30764de939</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer.1</span></td><td><code>74792362a7d5179c</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.BytecodeInterceptorLogging</span></td><td><code>48c7fa8ebc5a793e</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.BytecodeInterceptorLogging_.logger</span></td><td><code>31616db4e3ec43a7</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.EnhancementHelper</span></td><td><code>b2b51b3720e87401</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.LazyAttributesMetadata</span></td><td><code>77bc0aa5645b0c90</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.BytecodeProviderInitiator</span></td><td><code>e1518eb2bebda594</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.ProxyFactoryFactoryInitiator</span></td><td><code>f62deffe4c6234b5</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.SessionFactoryObserverForBytecodeEnhancer</span></td><td><code>5d6e18c18ee8de84</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState</span></td><td><code>2cf75c7603a79405</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers</span></td><td><code>9c0cce6afbb9c256</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers.1</span></td><td><code>64b73bfcd09c124f</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers.2</span></td><td><code>647f411e98185944</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.StandardClassRewriter</span></td><td><code>bec18fd3da3f6334</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.BytecodeProviderImpl</span></td><td><code>001577ff9c9b0738</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ProxyFactoryFactoryImpl</span></td><td><code>fa425df3069abfb4</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.spi.ClassLoadingStrategyHelper</span></td><td><code>ee90b95bee17f2bb</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.CollectionCacheInvalidator</span></td><td><code>3e40f9e3d1e01541</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.DisabledCaching</span></td><td><code>b006f24ff46271f3</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.NoCachingRegionFactory</span></td><td><code>a591a0626306a3b9</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.NoCachingTransactionSynchronizationImpl</span></td><td><code>62d95d5aff8d24e0</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.RegionFactoryInitiator</span></td><td><code>fa98415ea46e42cb</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.StrategyCreatorRegionFactoryImpl</span></td><td><code>e8d1acfb67c79518</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.AbstractCacheTransactionSynchronization</span></td><td><code>74a05a75a5109cfa</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.access.AccessType</span></td><td><code>46e969ca68df1c02</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.entry.UnstructuredCacheEntry</span></td><td><code>22d3035f91ffbd67</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AbstractPropertyHolder</span></td><td><code>cd4fc6f8ea171b95</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AccessType</span></td><td><code>4c8d99bc4dcffd6b</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotatedClassType</span></td><td><code>f4179b1ab8243989</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder</span></td><td><code>c35d2eb109dd11d1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.1</span></td><td><code>826338ac161b7003</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.2</span></td><td><code>4949d32b9ca32caf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.3</span></td><td><code>895218e35d92a999</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.BaselineSessionEventsListenerBuilder</span></td><td><code>33e11422fce7d81d</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.BinderHelper</span></td><td><code>ef07d439002667b8</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ClassPropertyHolder</span></td><td><code>072e7193eec9b69e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.CollectionSecondPass</span></td><td><code>7c80185f51187c01</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ColumnsBuilder</span></td><td><code>1ab1b1324c27d34a</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.CreateKeySecondPass</span></td><td><code>e43a1829e54e4f1f</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column</span></td><td><code>38259c73e5879b6c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column.1</span></td><td><code>50731113873eff5c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column.2</span></td><td><code>3a7aeb73bfd33895</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3DiscriminatorColumn</span></td><td><code>0afa0b285dcd2003</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3JoinColumn</span></td><td><code>68233b00802d86f3</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Environment</span></td><td><code>585f93f08c14f872</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.FkSecondPass</span></td><td><code>5b9268092c8d1a79</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.IndexColumn</span></td><td><code>a7d141eeade448b9</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.IndexOrUniqueKeySecondPass</span></td><td><code>3fe41ad358d89fe5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.InheritanceState</span></td><td><code>1c1a3431968454f4</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.InheritanceState.ElementsToProcess</span></td><td><code>82fb96faf189b987</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.MetadataSourceType</span></td><td><code>1cd79b7824e5e8a0</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyContainer</span></td><td><code>4b4b94d5395bf577</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyHolderBuilder</span></td><td><code>f58e570a1ef3a918</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyInferredData</span></td><td><code>4cc8d1fb4edff347</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.SecondaryTableSecondPass</span></td><td><code>7bfe115286ccab43</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.SetSimpleValueTypeSecondPass</span></td><td><code>d4bbbb0ab46d4c52</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Settings</span></td><td><code>cf491f0c69ef1096</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ToOneBinder</span></td><td><code>2fa993a7d3055721</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ToOneFkSecondPass</span></td><td><code>d545ab382b2f65d0</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.WrappedInferredData</span></td><td><code>be90ae26350ea8a2</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.BagBinder</span></td><td><code>60e172120c01212e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.CollectionBinder</span></td><td><code>b4b57af6f817f3e5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.CollectionBinder.1</span></td><td><code>efda05c473b54a9e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder</span></td><td><code>ee48468c8d5936a5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.1</span></td><td><code>e2241a6be9676f67</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper</span></td><td><code>a1b2f3a70eb99cdf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper.1</span></td><td><code>dc37011f12bde598</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper.1.1</span></td><td><code>2daf5e153df61a56</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.LocalCacheAnnotationStub</span></td><td><code>d17be03256e141ac</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.SecondaryTableNamingStrategyHelper</span></td><td><code>d2396b3be9a95b82</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.Nullability</span></td><td><code>8699146a45116ce1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.PropertyBinder</span></td><td><code>283f722a7120b17c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.PropertyBinder.NoValueGeneration</span></td><td><code>154cd9aef9cb567a</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.QueryBinder</span></td><td><code>e6b6482b2c8d6932</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.ResultsetMappingSecondPass</span></td><td><code>799f0d9c228fb9db</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.SetBinder</span></td><td><code>1260286ea3ffc5a6</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.SimpleValueBinder</span></td><td><code>04d75343ccad0c2e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder</span></td><td><code>b9de46e78b09b6fa</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder.1</span></td><td><code>6c5f6c0c7afb9835</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder.AssociationTableNameSource</span></td><td><code>22cc471e714eb4d5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.JPAXMLOverriddenMetadataProvider</span></td><td><code>3fce9d6788978092</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.XMLContext</span></td><td><code>6b66fb16f8082a98</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.XMLContext.Default</span></td><td><code>41a391de75508688</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationEventListener</span></td><td><code>aef2dd6cc63d20f1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationIntegrator</span></td><td><code>002c3f4bba4b48cf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationIntegrator.1</span></td><td><code>d263bb5021f1abe5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.DuplicationStrategyImpl</span></td><td><code>49dfed2172e92f0c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.GroupsPerOperation</span></td><td><code>365c44f6f45c8595</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.GroupsPerOperation.Operation</span></td><td><code>169e80d280409373</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.HibernateTraversableResolver</span></td><td><code>606458418db1a06b</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator</span></td><td><code>df425ea58def5913</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator.1</span></td><td><code>2b57a60fe2f2fb00</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator.2</span></td><td><code>2fae902c1e1aca50</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.ValidationMode</span></td><td><code>138f9c83a4a8abf2</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection</span></td><td><code>13bf256017d06136</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection.4</span></td><td><code>7544b88672b65e58</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection.IteratorProxy</span></td><td><code>95db55ce1c8d8603</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.PersistentBag</span></td><td><code>698ff65fcd8161b4</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.PersistentSet</span></td><td><code>7ee3c96f8a3cf8f1</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.spi.PersistentCollection</span></td><td><code>46ad77a9dc1e0639</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect</span></td><td><code>f08672de0c46c906</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.1</span></td><td><code>c7a0ecb618c9e7e3</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.2</span></td><td><code>74fee4bf52b8f5b1</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.3</span></td><td><code>402da730ac679ee0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.4</span></td><td><code>627f50870d551a40</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.5</span></td><td><code>81c972db558320cf</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.6</span></td><td><code>b816147ebe7de051</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect</span></td><td><code>96863a5ea105a02f</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.1</span></td><td><code>6aaea1975d487b05</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.3</span></td><td><code>54c5605251d36d07</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.4</span></td><td><code>d20471eb380d297e</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL82Dialect</span></td><td><code>f686f8e9606062ef</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL82Dialect.1</span></td><td><code>6ab11b22e5fa1443</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQLDialect</span></td><td><code>51d01c75bf070a44</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.TypeNames</span></td><td><code>be98b02b03cd6294</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.CastFunction</span></td><td><code>fb55e9988c120433</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.NoArgSQLFunction</span></td><td><code>97f232d3ff3c8e0d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.PositionSubstringFunction</span></td><td><code>355e2fed1b585327</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.SQLFunctionRegistry</span></td><td><code>bd8c8fa0ed713329</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.SQLFunctionTemplate</span></td><td><code>6f3b8350514c5dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions</span></td><td><code>53f46af574278668</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.AvgFunction</span></td><td><code>d59318bde40f9030</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.CountFunction</span></td><td><code>37c419134b658d1d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.MaxFunction</span></td><td><code>b0478e30604c58d0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.MinFunction</span></td><td><code>22626ed71c8c999a</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.SumFunction</span></td><td><code>6b4ab38daa4cbddf</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardSQLFunction</span></td><td><code>a828c2ebf3261325</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.TemplateRenderer</span></td><td><code>bdfe4cf250c1298b</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.VarArgsSQLFunction</span></td><td><code>717f065fe44729c9</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.AbstractLimitHandler</span></td><td><code>90ba0ed7859b9ac0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.LimitHandler</span></td><td><code>14e3f16fd30c8966</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.LimitHelper</span></td><td><code>8c19800888216706</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.NoopLimitHandler</span></td><td><code>b40fe8b336211b1d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.unique.DefaultUniqueDelegate</span></td><td><code>b38929ec01b9775c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchStrategy</span></td><td><code>bba5e623770b6a9b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchStyle</span></td><td><code>2c0b415688be95c8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchTiming</span></td><td><code>1d4146da910c612a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.OptimisticLockStyle</span></td><td><code>59bd0928374a91d1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.internal.ConfigurationServiceImpl</span></td><td><code>5df0e0d7feaf09f0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.internal.ConfigurationServiceInitiator</span></td><td><code>63f2df3291c07751</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters</span></td><td><code>3b5174d576a426a0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters.1</span></td><td><code>f2b8ca70848d5fe8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters.2</span></td><td><code>40b80666890d0756</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry</span></td><td><code>00ecc9017e5961ee</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry.BooleanState</span></td><td><code>599cf7e686c2892c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry.EnumState</span></td><td><code>98eb5936522428c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Cascade</span></td><td><code>fd30787cd6c89ade</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.CascadePoint</span></td><td><code>221ed65c9ea73992</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Collections</span></td><td><code>4a389a314fe3a785</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext</span></td><td><code>069d9bc7cc67245a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext.EntityEntryCrossRefImpl</span></td><td><code>7bdb22597fad7023</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext.ManagedEntityImpl</span></td><td><code>84712ccbd7ee26c8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryExtraStateHolder</span></td><td><code>53339492ced4bd81</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ForeignKeys</span></td><td><code>07ada760bbf29f74</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ForeignKeys.Nullifier</span></td><td><code>405204ae9de14994</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.JoinHelper</span></td><td><code>f99135e5d18c9c9e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.JoinSequence</span></td><td><code>b600be740337b4b6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ManagedTypeHelper</span></td><td><code>eabc0071608949f4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.MutableEntityEntry</span></td><td><code>6167630f8addeb38</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.MutableEntityEntryFactory</span></td><td><code>19aa0fe3fac3c381</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate</span></td><td><code>1f26e373f079f9f9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate.CachedNaturalId</span></td><td><code>83dcdc388c00eb8b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate.NaturalIdResolutionCache</span></td><td><code>ed162d95b1cafd52</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NonNullableTransientDependencies</span></td><td><code>2437b86b21aaf0d3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Nullability</span></td><td><code>a09e201bffc2bcfa</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Nullability.NullabilityCheckType</span></td><td><code>e1397c20dd3552e9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.SessionEventListenerManagerImpl</span></td><td><code>7b89de4e6f144128</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.StatefulPersistenceContext</span></td><td><code>3a3dde0bf6ef07ea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.StatefulPersistenceContext.1</span></td><td><code>6831b6c0efcb65e5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.TwoPhaseLoad</span></td><td><code>660bbd9cb4bca560</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.TwoPhaseLoad.EntityResolver</span></td><td><code>a5453cec6d6264b5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.UnsavedValueFactory</span></td><td><code>6f196f1bfe79a335</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Versioning</span></td><td><code>fc9c5a30bdc965a6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.Size</span></td><td><code>1b00d2b83ba6eff3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.Size.LobMultiplier</span></td><td><code>d198da02f0e9096e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.AbstractBatchImpl</span></td><td><code>eedbc55a26f8e840</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BasicBatchKey</span></td><td><code>1573449982f95da2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BatchBuilderImpl</span></td><td><code>5d7cfe8928609568</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BatchBuilderInitiator</span></td><td><code>6679d94ab1ff98b3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch</span></td><td><code>e38cc69d21a0e9d2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.SharedBatchBuildingCode</span></td><td><code>259c45051d328571</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.ConnectionProviderInitiator</span></td><td><code>27cc36bb4ada9ce2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl</span></td><td><code>d7561827d0ff4438</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.MultiTenantConnectionProviderInitiator</span></td><td><code>1f6e5739ea14f624</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.cursor.internal.RefCursorSupportInitiator</span></td><td><code>d55129cbef0ad86b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl</span></td><td><code>5ddd760de65724fd</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectFactoryInitiator</span></td><td><code>648ddaad0f5d3af1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectResolverInitiator</span></td><td><code>7b899f4a10ab701f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectResolverSet</span></td><td><code>84b5ba45622d849f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.StandardDialectResolver</span></td><td><code>11f18168666fd3cb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.ExtractedDatabaseMetaDataImpl</span></td><td><code>c4deb14d1e416687</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.ExtractedDatabaseMetaDataImpl.Builder</span></td><td><code>c703e5f672228382</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentImpl</span></td><td><code>c1623572e8e1f37b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator</span></td><td><code>d97bbead853f712a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.ConnectionProviderJdbcConnectionAccess</span></td><td><code>e8b5e96e9ebb9714</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl</span></td><td><code>bdeaa7450092de2a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl</span></td><td><code>97d58da4479e1f09</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl</span></td><td><code>25db46a4f7a6e363</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl.1</span></td><td><code>48be46e0f2657d1f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl.SchemaNameFormat</span></td><td><code>fa11c0ca511c4141</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.AnsiSqlKeywords</span></td><td><code>76de9a8abcdf22a7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.IdentifierCaseStrategy</span></td><td><code>b41b67e1aeec51d1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.IdentifierHelperBuilder</span></td><td><code>ce385c05a1c39f4d</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.NameQualifierSupport</span></td><td><code>6e4e253019da2ee9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.BasicFormatterImpl</span></td><td><code>dc0ba99c27938bc4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.DDLFormatterImpl</span></td><td><code>5e768604c0f88085</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.FormatStyle</span></td><td><code>d765d8b0b4f1a2f7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.FormatStyle.NoFormatImpl</span></td><td><code>3f0fabdc973393fb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.HighlightingFormatter</span></td><td><code>400074e497b2c9fe</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl</span></td><td><code>67ba6f17bc433b55</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcServicesImpl</span></td><td><code>4057a47fe44c3fae</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcServicesInitiator</span></td><td><code>7610801463f2147e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.ResultSetReturnImpl</span></td><td><code>376a90badbca9adc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.ResultSetWrapperImpl</span></td><td><code>d4aa6a07aa982e7a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl</span></td><td><code>944303ff88f51ebc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.1</span></td><td><code>5fc64f153012e481</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.5</span></td><td><code>eb910ad5a37bc7b2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.QueryStatementPreparationTemplate</span></td><td><code>6e7c644b5494a877</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.StatementPreparationTemplate</span></td><td><code>2dddf6820c72229c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.JdbcCoordinator</span></td><td><code>5d429ffa6052f42e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper</span></td><td><code>82975af4a4b45686</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.1</span></td><td><code>4cbc556e8695252c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.StandardWarningHandler</span></td><td><code>dce7d78790b9c0a3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.WarningHandlerLoggingSupport</span></td><td><code>f3902d8c74c6a581</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlStatementLogger</span></td><td><code>feb9105ea00b610e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jndi.internal.JndiServiceImpl</span></td><td><code>d16009c7a02abbd1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jndi.internal.JndiServiceInitiator</span></td><td><code>17a3b42c91acd839</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.CollectionLoadContext</span></td><td><code>fb6e854b1e2ae3a2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.LoadContexts</span></td><td><code>400638c956b63047</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.LoadingCollectionEntry</span></td><td><code>034217d9421c7fa2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.internal.NativeQueryInterpreterStandardImpl</span></td><td><code>29c88b4a59fa6f01</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.AbstractParameterDescriptor</span></td><td><code>8002739f45e2da21</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.HQLQueryPlan</span></td><td><code>2c5a2e3b0ef9625a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.NamedParameterDescriptor</span></td><td><code>c783970cde8a62c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.NativeQueryInterpreterInitiator</span></td><td><code>8a407440ea49b612</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.QueryPlanCache</span></td><td><code>82de37675480d97b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.QueryPlanCache.HQLQueryPlanKey</span></td><td><code>0c16a97ccb1a8504</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.ReturnMetadata</span></td><td><code>b8ad3d9b403aaf2f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue</span></td><td><code>5932b54d0958a960</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.1</span></td><td><code>a0cfd08474f04511</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.2</span></td><td><code>be14ecd4d9d8660c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.3</span></td><td><code>3969a45d0f834d66</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.4</span></td><td><code>6f0fa9a45a1da97b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.5</span></td><td><code>49b9074c336c46c0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.6</span></td><td><code>9f76ee92637ac0b3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.7</span></td><td><code>d9cd6574153ef348</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.8</span></td><td><code>9df92dfc80824fc1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.AbstractTransactionCompletionProcessQueue</span></td><td><code>6a09a7198d7fc4a9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.AfterTransactionCompletionProcessQueue</span></td><td><code>1d8d633faa5f93cc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.ListProvider</span></td><td><code>97daccdc90f3b3c3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.BatchFetchQueue</span></td><td><code>d7e5b586d7a68003</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CacheInitiator</span></td><td><code>3a295ac02ac77ac4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CachedNaturalIdValueSource</span></td><td><code>181e0031bd230559</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles</span></td><td><code>b509b5581480bc48</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.1</span></td><td><code>c239cfdfb3b23b95</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.10</span></td><td><code>c66678275a4e64a0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.11</span></td><td><code>741b7175f97b7555</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.12</span></td><td><code>1d40f89245831807</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.2</span></td><td><code>9636cbf8b78d44a3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.3</span></td><td><code>d721ee02d97f88f2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.4</span></td><td><code>4cd77e978ddf94da</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.5</span></td><td><code>4923a7dec190ebf8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.6</span></td><td><code>f9f8bda30c98dbea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.7</span></td><td><code>f3c58fa3769cb9bb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.8</span></td><td><code>bd5a1067e5918478</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.9</span></td><td><code>e0661d582ca847c4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.BaseCascadeStyle</span></td><td><code>9a5b26aac4888434</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.MultipleCascadeStyle</span></td><td><code>c7e30d2085498f15</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions</span></td><td><code>95105322faef0e70</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.1</span></td><td><code>a2e38f694eb31d1b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.2</span></td><td><code>a777949cf6074fd7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.3</span></td><td><code>d213c6af6fbbf864</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.4</span></td><td><code>a87fb103366133df</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.5</span></td><td><code>5563dffd4ef31822</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.6</span></td><td><code>569eedfcfbbb6ea6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.7</span></td><td><code>acdcddab29756fe7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.8</span></td><td><code>4e66b81c3f4f99cf</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.9</span></td><td><code>78d6509217777b24</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.BaseCascadingAction</span></td><td><code>12d2c0814cf5475b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CollectionEntry</span></td><td><code>5acfe9a095a03137</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CollectionKey</span></td><td><code>02493013fb50fb3d</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.EffectiveEntityGraph</span></td><td><code>c9de2e52d61a06c0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.EntityKey</span></td><td><code>89b3304fcd7cb99a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ExecutableList</span></td><td><code>5258766df059f2c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle</span></td><td><code>0cd16ec75ad6bc00</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue</span></td><td><code>2268934b4cfac5ea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.1</span></td><td><code>cc803dac33b23048</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.2</span></td><td><code>984357601abafeb7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.3</span></td><td><code>9a893e8a42f90458</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.4</span></td><td><code>439fe9fe94b22ac0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.LoadQueryInfluencers</span></td><td><code>2b024bdb372b6c7f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.QueryParameters</span></td><td><code>8796d075c6734658</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.RowSelection</span></td><td><code>8e1539f157aef729</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.SessionFactoryImplementor</span></td><td><code>8eb28213bff45163</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.SharedSessionContractImplementor</span></td><td><code>c633ded9c2699046</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.Status</span></td><td><code>43f5bddbb561dc88</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.TypedValue</span></td><td><code>0486c70a239a0ff1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.TypedValue.1</span></td><td><code>96cb4d0e35ac2db9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.internal.TransactionImpl</span></td><td><code>b048014cff388fde</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator</span></td><td><code>dc9980c9fce8862b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformResolverInitiator</span></td><td><code>15f1bcc85384ea2a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform</span></td><td><code>d8470e90dfe73b70</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.spi.TransactionImplementor</span></td><td><code>2c5bab550221ab85</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractFlushingEventListener</span></td><td><code>0520b9616d07619b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractLockUpgradeEventListener</span></td><td><code>5486652230ce0599</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractReassociateEventListener</span></td><td><code>f1fe1aca5a653c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractSaveEventListener</span></td><td><code>a9d9fe96c3b85ff8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractVisitor</span></td><td><code>77cc6b17285201f8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultAutoFlushEventListener</span></td><td><code>cee7b19eed72aee0</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultDeleteEventListener</span></td><td><code>8cc87dc31554d1c7</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultDirtyCheckEventListener</span></td><td><code>03865b55960a8df4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultEvictEventListener</span></td><td><code>d498200679d8187e</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEntityEventListener</span></td><td><code>d07ed084d130e31a</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEntityEventListener.1DirtyCheckContextImpl</span></td><td><code>f3efa1194f0edb3b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEventListener</span></td><td><code>279abd3729382939</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultInitializeCollectionEventListener</span></td><td><code>5bae19b9e8f26570</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultLoadEventListener</span></td><td><code>49745f67570a7361</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultLockEventListener</span></td><td><code>41ae62080b2f4d75</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultMergeEventListener</span></td><td><code>b6209d692d31bc06</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultMergeEventListener.1</span></td><td><code>10a99cea4708f895</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistEventListener</span></td><td><code>5c02e40d5a18de15</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistEventListener.1</span></td><td><code>144d578ccb18c724</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistOnFlushEventListener</span></td><td><code>f1df3e9d47a46152</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPostLoadEventListener</span></td><td><code>505dedc6a398cb80</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPreLoadEventListener</span></td><td><code>dfa884efee611467</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultRefreshEventListener</span></td><td><code>bf8cd0bc82bac398</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultReplicateEventListener</span></td><td><code>318dc8e1561cc372</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultResolveNaturalIdEventListener</span></td><td><code>9383de3c2f82c35c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultSaveEventListener</span></td><td><code>d55a789b8f3dad25</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultSaveOrUpdateEventListener</span></td><td><code>4b57600e3fb2a2e4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultUpdateEventListener</span></td><td><code>9ecaac7d8e02453f</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityCopyNotAllowedObserver</span></td><td><code>47102ea2d726e3a8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityCopyObserverFactoryInitiator</span></td><td><code>e18b1abc2aa4f9af</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityState</span></td><td><code>82ef224edb1cdab3</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.FlushVisitor</span></td><td><code>85c8d9da801b428f</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.MergeContext</span></td><td><code>2b206b710ca4c493</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostDeleteEventListenerStandardImpl</span></td><td><code>8cf88664729304db</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostInsertEventListenerStandardImpl</span></td><td><code>d60f13151a833d11</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostUpdateEventListenerStandardImpl</span></td><td><code>fd53f50c57560339</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.ProxyVisitor</span></td><td><code>d53c9b815b4b0a75</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.WrapVisitor</span></td><td><code>47a4c37efb2507a4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerGroupImpl</span></td><td><code>35f03f3bf4e6e10a</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerGroupImpl.1</span></td><td><code>fd1c1962c6f35c92</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerRegistryImpl</span></td><td><code>87fcdbd13dfcbf2e</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerRegistryImpl.Builder</span></td><td><code>a20306e1ab3df5f4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.PostCommitEventListenerGroupImpl</span></td><td><code>2be7c18e9f3da396</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractCollectionEvent</span></td><td><code>ff5bda593a08e606</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractEvent</span></td><td><code>0ee572d7b4848cf7</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractPreDatabaseOperationEvent</span></td><td><code>ab6379a8779ff8ec</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AutoFlushEvent</span></td><td><code>fdd359b4689c9c34</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.DeleteEvent</span></td><td><code>40edc4447297cefb</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventEngine</span></td><td><code>4af4c9530587c8a5</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventEngine.1</span></td><td><code>7bcddfc8ddd5e8ba</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventType</span></td><td><code>47fef3f8aa73c100</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventType.1</span></td><td><code>17b185c22dbbc574</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.FlushEntityEvent</span></td><td><code>59a9b408462cd9a2</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.FlushEvent</span></td><td><code>a495b39e81908ada</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.InitializeCollectionEvent</span></td><td><code>63cbc4b3fc99059c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEvent</span></td><td><code>e6bf661be2cd5fab</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEvent.1</span></td><td><code>3f037052bf823392</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEventListener</span></td><td><code>c679e79bb48b7be1</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEventListener.LoadType</span></td><td><code>14b42af01788bde6</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.MergeEvent</span></td><td><code>acab7f502f3dc42b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PersistEvent</span></td><td><code>f8447ece660e0d25</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostDeleteEvent</span></td><td><code>033daadc8ddc16ee</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostInsertEvent</span></td><td><code>d60752eb1e4c670b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostLoadEvent</span></td><td><code>5013cc2ed000393d</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostUpdateEvent</span></td><td><code>b40f22e1e171fa57</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreDeleteEvent</span></td><td><code>8c9370214e401337</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreInsertEvent</span></td><td><code>b31ac68423543695</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreLoadEvent</span></td><td><code>a5abadb763c8e485</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreUpdateEvent</span></td><td><code>36f026366781b3d8</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLExceptionTypeDelegate</span></td><td><code>21b4be6a9170fa7a</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConversionDelegate</span></td><td><code>77e0d3f6c623c750</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConverter</span></td><td><code>ffc1ab30ba7cabc8</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConverter.1</span></td><td><code>8b0b055ef002cbb2</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.StandardSQLExceptionConverter</span></td><td><code>1d53d8a31c5825f7</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.spi.AbstractSQLExceptionConversionDelegate</span></td><td><code>2a43cf7b1e18b8fe</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.spi.TemplatedViolatedConstraintNameExtracter</span></td><td><code>725457462c5ee502</code></td></tr><tr><td><span class="el_class">org.hibernate.graph.GraphSemantic</span></td><td><code>0f6757a823a9b164</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.CollectionProperties</span></td><td><code>7d4332c1fc50e2c0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.HolderInstantiator</span></td><td><code>86ef5095074716c8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.NameGenerator</span></td><td><code>85ac2c0a07aa9f7b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.QuerySplitter</span></td><td><code>ef2ce90cd4788e3d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.QueryTranslatorFactoryInitiator</span></td><td><code>9cf76b2aef1fce3f</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlBaseLexer</span></td><td><code>dc4be115e8f82604</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlBaseParser</span></td><td><code>5605a82cc9e1a030</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlSqlBaseWalker</span></td><td><code>e30a4185197a8981</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.SqlGeneratorBase</span></td><td><code>5f86c4fdf2d4cf1a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory</span></td><td><code>ccdee33bcbf24425</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ErrorTracker</span></td><td><code>c7f3c60b2fb035a1</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlASTFactory</span></td><td><code>0bf73a401e599d4e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlLexer</span></td><td><code>42d9c19e630acdd5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlParser</span></td><td><code>cfb71f39732ed679</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlSqlWalker</span></td><td><code>a73967515002b259</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlToken</span></td><td><code>5edc1546a4e7e5b6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.NamedParameterInformationImpl</span></td><td><code>1f63b3f6192523d4</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ParameterTranslationsImpl</span></td><td><code>77b9117d45a858d6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.QueryTranslatorImpl</span></td><td><code>bdfe052a34055f5a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.QueryTranslatorImpl.JavaConstantConverter</span></td><td><code>3e7114b6427a8973</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlASTFactory</span></td><td><code>dc8590b54e51f07e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlGenerator</span></td><td><code>309601c57a37a00c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlGenerator.DefaultWriter</span></td><td><code>0ec4e7f3bf7f7c12</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.exec.BasicExecutor</span></td><td><code>a93b5396710eb6e8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.exec.SimpleUpdateExecutor</span></td><td><code>51e66027cc19378c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractNullnessCheckNode</span></td><td><code>481d353c19e9b5a5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractRestrictableStatement</span></td><td><code>9db80caaa997f323</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractSelectExpression</span></td><td><code>b318cafde9d36ae3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractStatement</span></td><td><code>9f14cbea88606f34</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.BinaryLogicOperatorNode</span></td><td><code>b91205fbd5903883</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.CountNode</span></td><td><code>b6b9e4de262886d9</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode</span></td><td><code>437c76a3e44ae259</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode.1</span></td><td><code>9c3a74084c7ff976</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode.DereferenceType</span></td><td><code>2b6fa0b17136ecd6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause</span></td><td><code>fc7c5fdeb8180873</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.1</span></td><td><code>1d1e1ba8466b251d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.2</span></td><td><code>5e0e6efdb1f3b873</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.3</span></td><td><code>5f189d7eec7d57ab</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.4</span></td><td><code>0fac569ac9dc04f5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElement</span></td><td><code>69d85129462eec24</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElementFactory</span></td><td><code>81a365b28f0c37b8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElementType</span></td><td><code>e3cbfbb0c8defa49</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromReferenceNode</span></td><td><code>d967b5e205f08b8b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.HqlSqlWalkerNode</span></td><td><code>572187f5af16e2d0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.IdentNode</span></td><td><code>9a71c724e089a88a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.InLogicOperatorNode</span></td><td><code>231e31c7c749e706</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.IsNullLogicOperatorNode</span></td><td><code>975793a06d7c7efe</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.JavaConstantNode</span></td><td><code>a916ca9e7cb94a42</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.LiteralNode</span></td><td><code>153e6a75195e605a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.Node</span></td><td><code>6cfb55d6d38c1097</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.OrderByClause</span></td><td><code>7bc00a2ce35a11cd</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.ParameterNode</span></td><td><code>5f2d11a124672013</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.QueryNode</span></td><td><code>8ae10741ddef6d64</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectClause</span></td><td><code>bd38d73c4f51681d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectExpressionImpl</span></td><td><code>796b518cd98c7c05</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectExpressionList</span></td><td><code>8d1a62f10627bad3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SqlFragment</span></td><td><code>64e4a027d5a16c9b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SqlNode</span></td><td><code>9f475c6d5b015011</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.UnaryLogicOperatorNode</span></td><td><code>2fa2b353652b3252</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.UpdateStatement</span></td><td><code>444d156218041233</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTAppender</span></td><td><code>a758cae376c8748e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTIterator</span></td><td><code>bb0586582c20738c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil</span></td><td><code>9d817e739e908a69</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil.CollectingNodeVisitor</span></td><td><code>0f87106f1cd9203a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil.IncludePredicate</span></td><td><code>65934dc083225b22</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.AliasGenerator</span></td><td><code>e0315636ef47c606</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ColumnHelper</span></td><td><code>c1f5b27aef23b2af</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.JoinProcessor</span></td><td><code>1dad65eaee98b14e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.JoinProcessor.1</span></td><td><code>0edd62042187911c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor</span></td><td><code>b70806f0fe6c223c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat</span></td><td><code>1bbe3cfdcec95060</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat.1</span></td><td><code>192b82b309dd9239</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat.2</span></td><td><code>9553a8329d9564b3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.NodeTraverser</span></td><td><code>620abd7e002e933c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.SessionFactoryHelper</span></td><td><code>92e5ed8e008c05cf</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.SyntheticAndFactory</span></td><td><code>f29f1a76577bfa71</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.classic.ParserHelper</span></td><td><code>403fac495a0ebdad</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.AbstractMultiTableBulkIdStrategyImpl</span></td><td><code>e062975288aec111</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.IdTableHelper</span></td><td><code>730afc7b9f11ac5a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.IdTableSupportStandardImpl</span></td><td><code>ec37f225216fb2a0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.AfterUseAction</span></td><td><code>13962197138fdff4</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.LocalTemporaryTableBulkIdStrategy</span></td><td><code>7bf736467aa76dd9</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.PreparationContextImpl</span></td><td><code>449e9d58bcaa108f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGenerator</span></td><td><code>ed913cd95cb852cf</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper</span></td><td><code>c429ddded44fa640</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.1</span></td><td><code>5016747d03b3c58c</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.2</span></td><td><code>90966c387dd5f620</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.BasicHolder</span></td><td><code>9fb2966fda752bf4</code></td></tr><tr><td><span class="el_class">org.hibernate.id.SequenceMismatchStrategy</span></td><td><code>de060802390cd7e6</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.AbstractOptimizer</span></td><td><code>b9900ff8d80818df</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.NoopOptimizer</span></td><td><code>1fd3014d69b4528f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.OptimizerFactory</span></td><td><code>b7054dd78889d99f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStructure</span></td><td><code>17ec99b7fa6f676d</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStructure.1</span></td><td><code>9a826010242a7f7c</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStyleGenerator</span></td><td><code>5e2d8c1a63b5be04</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.StandardOptimizerDescriptor</span></td><td><code>7fb5fed720b3b7a1</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory</span></td><td><code>52393a5a8830bc94</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.1</span></td><td><code>2f119eb7c655d9f5</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.MutableIdentifierGeneratorFactoryInitiator</span></td><td><code>8b4c8e8cd0ea9bbb</code></td></tr><tr><td><span class="el_class">org.hibernate.id.uuid.LocalObjectUuidHelper</span></td><td><code>9608e3da4d47ba4e</code></td></tr><tr><td><span class="el_class">org.hibernate.integrator.internal.IntegratorServiceImpl</span></td><td><code>24e62893209c57ee</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.AbstractSessionImpl</span></td><td><code>fa4a1eba48ad8d80</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.AbstractSharedSessionContract</span></td><td><code>e023a566ccc5171d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ConnectionObserverStatsBridge</span></td><td><code>15a3527ba8f8f958</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoordinatingEntityNameResolver</span></td><td><code>67a2f584696df5f7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoreLogging</span></td><td><code>e749b828dea3047b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoreMessageLogger_.logger</span></td><td><code>9d9d1607f3026b0c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.DynamicFilterAliasGenerator</span></td><td><code>cde3c6ad65df1d18</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.EntityManagerMessageLogger_.logger</span></td><td><code>3176a526d6863db5</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ExceptionConverterImpl</span></td><td><code>ab2af6b893b11f7a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ExceptionMapperStandardImpl</span></td><td><code>0f4dd123f9e9df08</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.FastSessionServices</span></td><td><code>03d80541c479c078</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.FilterHelper</span></td><td><code>43bc6068c71264cc</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.HEMLogging</span></td><td><code>177e757375940e81</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.JdbcObserverImpl</span></td><td><code>939cd09a4a6f834b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.JdbcSessionContextImpl</span></td><td><code>fff1c746e1a7d9cf</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.NonContextualJdbcConnectionAccess</span></td><td><code>ff209789b80bbde0</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl</span></td><td><code>f33c1bf3a90c374a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.1IntegratorObserver</span></td><td><code>7929b5ddbde00718</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.SessionBuilderImpl</span></td><td><code>ac1a770d7211d7d9</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.StatelessSessionBuilderImpl</span></td><td><code>665b5338efe80fcc</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.Status</span></td><td><code>f897cc87182c7f23</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryObserverChain</span></td><td><code>f1dcb3dcf6f13ac5</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryRegistry</span></td><td><code>db4f594ecee7c31c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryRegistry.1</span></td><td><code>e719ad2757c2177d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionImpl</span></td><td><code>4eb9f395a1cc6a2b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionImpl.IdentifierLoadAccessImpl</span></td><td><code>520d44da16f83876</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionOwnerBehavior</span></td><td><code>d2412eea3a112c60</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.StaticFilterAliasGenerator</span></td><td><code>5b7e80e4ebbe525b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.TypeLocatorImpl</span></td><td><code>0d0a1c2205192641</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ConfigHelper</span></td><td><code>f3e0e71980947ce4</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.MarkerObject</span></td><td><code>573f3e5efdfbef4d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.NullnessHelper</span></td><td><code>fee4777c777572c2</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ReflectHelper</span></td><td><code>e07469fda314c538</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.StringHelper</span></td><td><code>563b59dfe64b8347</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ValueHolder</span></td><td><code>140506d0db7179c3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ValueHolder.1</span></td><td><code>288363716af18f88</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.ArrayHelper</span></td><td><code>a88d1ffcfe563995</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap</span></td><td><code>3edd49390e24ecb2</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction</span></td><td><code>d6a2eaddfa68e8ea</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.1</span></td><td><code>f4f0a725cbfb9fb6</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.2</span></td><td><code>ce70a09c9e025cf3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.3</span></td><td><code>a3bfaba6a12a3933</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.HashEntry</span></td><td><code>fa52da3729ba6d7a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LIRS</span></td><td><code>7e55eca255a4c0a3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LIRSHashEntry</span></td><td><code>10afa7ce63bb0ab3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LRU</span></td><td><code>1250bc2ab37e1a91</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.NullEvictionListener</span></td><td><code>cbf27c7a5c68de21</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Recency</span></td><td><code>fce1285a5a6c38ff</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Segment</span></td><td><code>6ae04ca34e44e72c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.CollectionHelper</span></td><td><code>311105564cdb6035</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap</span></td><td><code>470abb2d3ac5b1eb</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap.IdentityKey</span></td><td><code>17ee630385e63d12</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap.IdentityMapEntry</span></td><td><code>18d181dd06fb7a07</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentitySet</span></td><td><code>a4211eb7738363c7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.JoinedIterator</span></td><td><code>31998cde83f3c216</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.LazyIndexedMap</span></td><td><code>ad926e2c651b887d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.LockModeEnumMap</span></td><td><code>b22b11fbe2d9ded8</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.SingletonIterator</span></td><td><code>7f63bcd1b83372a7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.StandardStack</span></td><td><code>ed34ee915ccc7ceb</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.compare.ComparableComparator</span></td><td><code>f7eb7fc83e973dc4</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.config.ConfigurationHelper</span></td><td><code>ae5a5c06a983bde3</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations</span></td><td><code>f4c909055bf81dce</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.1</span></td><td><code>6c80093e66da489f</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.BasicExpectation</span></td><td><code>bb3eee74a905b0ac</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.BasicParamExpectation</span></td><td><code>a2abcfcfb79dae00</code></td></tr><tr><td><span class="el_class">org.hibernate.jmx.internal.DisabledJmxServiceImpl</span></td><td><code>d40896a82f929071</code></td></tr><tr><td><span class="el_class">org.hibernate.jmx.internal.JmxServiceInitiator</span></td><td><code>332cd7e744044d42</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.HibernatePersistenceProvider</span></td><td><code>297fc8541d7c44d8</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.HibernatePersistenceProvider.1</span></td><td><code>1f1cd0822f2b961a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl</span></td><td><code>9350565c85bfb39a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.JpaEntityNotFoundDelegate</span></td><td><code>d391ac8ca8dc7693</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.MergedSettings</span></td><td><code>4e5a81d85fce2766</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.ServiceRegistryCloser</span></td><td><code>34c1acae3893db6c</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.PersistenceUnitInfoDescriptor</span></td><td><code>1e0f3e3b7f3e596a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl</span></td><td><code>4430d9134e16e554</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbackDefinitionResolverLegacyImpl</span></td><td><code>7f3dddedba057f3f</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbackRegistryImpl</span></td><td><code>9bd972559fc44ac3</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbacksFactory</span></td><td><code>b2c80b862e89ffe8</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.spi.CallbackType</span></td><td><code>e62aaddcfc73e6da</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.JpaComplianceImpl</span></td><td><code>9e360af37b6c3edd</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.JpaComplianceImpl.JpaComplianceBuilder</span></td><td><code>8a3c20d9bca032c2</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.MutableJpaComplianceImpl</span></td><td><code>73822a9908d6ff74</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.PersistenceUnitUtilImpl</span></td><td><code>e5077b29256eba0f</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.CacheModeHelper</span></td><td><code>1912f7b07b9d637e</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.CacheModeHelper.1</span></td><td><code>0c7ea066070723ea</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.ConfigurationHelper</span></td><td><code>8e7ec512e5b6a147</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.LockOptionsHelper</span></td><td><code>e4f59af7168bda2d</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.LogHelper</span></td><td><code>dfe82e7520f0b287</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.PersistenceUtilHelper.MetadataCache</span></td><td><code>3e7da6b09c3290a7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.AbstractEntityJoinWalker</span></td><td><code>bb862cf8f1e0b294</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.BasicLoader</span></td><td><code>906b21baaa90b3c5</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.BatchFetchStyle</span></td><td><code>8054d20182b6251c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.DefaultEntityAliases</span></td><td><code>9a9a471797f6aabc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.GeneratedCollectionAliases</span></td><td><code>86aeb56d9c12b84d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker</span></td><td><code>ae9aadfc4c73c4c0</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationInitCallback</span></td><td><code>98249a2c6c78684e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationInitCallback.1</span></td><td><code>e1c80f123259f54c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationKey</span></td><td><code>4c9a973b45786d94</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.Loader</span></td><td><code>7d7b985422330dd8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.Loader.SqlStatementWrapper</span></td><td><code>832d03bcc5b87e77</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.OuterJoinLoader</span></td><td><code>ee7f2c570267e26b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.OuterJoinableAssociation</span></td><td><code>40771fbd16fb1e03</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.PropertyPath</span></td><td><code>01f71674cc0fbe5c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.BatchingCollectionInitializerBuilder</span></td><td><code>a042b3f888c9bb63</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.BatchingCollectionInitializerBuilder.1</span></td><td><code>0b7c037304b5a11e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.AbstractBatchingCollectionInitializerBuilder</span></td><td><code>453632489824a7a2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer</span></td><td><code>469ed6a8db524279</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.CollectionLoader</span></td><td><code>1e19d22b4d3dde60</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.CollectionLoader.Builder</span></td><td><code>6fbb5b6ce05dd3ae</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder</span></td><td><code>0b4aa5c1e1c24a8c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.AbstractEntityLoader</span></td><td><code>6e3bd1c749be4742</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.BatchingEntityLoaderBuilder</span></td><td><code>1b987dddcab42237</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.BatchingEntityLoaderBuilder.1</span></td><td><code>3cc739b3148d280d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper</span></td><td><code>cc6037d1ca75ff85</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper.EntityStatus</span></td><td><code>4293425b2d40ff3d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper.PersistenceContextEntry</span></td><td><code>3df7e1b34322a44f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CascadeEntityJoinWalker</span></td><td><code>20e906bafc6a6294</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CascadeEntityLoader</span></td><td><code>0651b421c66cd722</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityJoinWalker</span></td><td><code>15b305e9afe768f9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityJoinWalker.AssociationInitCallbackImpl</span></td><td><code>d9e7a3f0e61723ae</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityLoader</span></td><td><code>a3aa14ce665c1966</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.NaturalIdEntityJoinWalker</span></td><td><code>253dacb372014907</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.NaturalIdType</span></td><td><code>da3c9d45342717c6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.AbstractBatchingEntityLoaderBuilder</span></td><td><code>34b717239461adf1</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.AbstractLoadPlanBasedEntityLoader</span></td><td><code>d32dd862e3654941</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.EntityLoader</span></td><td><code>b81a55ac2d7b094b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.EntityLoader.Builder</span></td><td><code>ce9c8bd0dbe4e4b7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.LegacyBatchingEntityLoaderBuilder</span></td><td><code>fb6888184a6a430c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.hql.QueryLoader</span></td><td><code>37052d4ea93f8ad8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.internal.AliasConstantsHelper</span></td><td><code>c25663bd71b752ff</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.AbstractLoadPlanBuildingAssociationVisitationStrategy</span></td><td><code>e10cfc7ec2b6dd44</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.AbstractLoadPlanBuildingAssociationVisitationStrategy.PropertyPathStack</span></td><td><code>8b5e9783ad00ee75</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.FetchStyleLoadPlanBuildingAssociationVisitationStrategy</span></td><td><code>b12bc8d261e648a9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.LoadPlanImpl</span></td><td><code>fe54c617343ac7ac</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractCollectionReference</span></td><td><code>14b7c043531f6d8a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractEntityReference</span></td><td><code>c8cf9f1801f83c67</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractExpandingFetchSource</span></td><td><code>1976b5dd831ad104</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.BidirectionalEntityReferenceImpl</span></td><td><code>e7d3095388246c74</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionAttributeFetchImpl</span></td><td><code>cd110414c6cd4fc8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionFetchableElementEntityGraph</span></td><td><code>636c9385febd004f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionReturnImpl</span></td><td><code>3dd6c7fc6d72640d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.EntityAttributeFetchImpl</span></td><td><code>c42dd47ab296e35c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.EntityReturnImpl</span></td><td><code>27adb0feeac6c939</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.SimpleEntityIdentifierDescriptionImpl</span></td><td><code>70c1fe036ecb510d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.AbstractExpandingSourceQuerySpace</span></td><td><code>2d51a33836d6e82c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.AbstractQuerySpace</span></td><td><code>37b5315211bfd4fc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.CollectionQuerySpaceImpl</span></td><td><code>1ef6abb8b0b292f8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.EntityQuerySpaceImpl</span></td><td><code>569cad0485a7fc40</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.JoinHelper</span></td><td><code>eafe9a293d886320</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.JoinImpl</span></td><td><code>254c1855b903c8a4</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.QuerySpaceHelper</span></td><td><code>707ce22b124ba533</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.QuerySpacesImpl</span></td><td><code>2e9b87825a59105f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.spi.LoadPlanTreePrinter</span></td><td><code>9777c3e92c6b62d7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.spi.MetamodelDrivenLoadPlanBuilder</span></td><td><code>5723682cba9539b2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails</span></td><td><code>c3cf55a116830f42</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails.CollectionLoaderReaderCollectorImpl</span></td><td><code>56f4e858d917f8f6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails.CollectionLoaderRowReader</span></td><td><code>0f460b038a513bd6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader</span></td><td><code>a93a8b180097e68b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.1</span></td><td><code>c76cc1bb7a5d81a3</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.SqlStatementWrapper</span></td><td><code>aaf6442202548166</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadQueryDetails</span></td><td><code>69d4406d4849463a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadQueryDetails.ReaderCollectorImpl</span></td><td><code>f8a0910ade5fe56c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AliasResolutionContextImpl</span></td><td><code>a9d529facff3ab0b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.BasicCollectionLoadQueryDetails</span></td><td><code>8dbbcfffbf1caa0b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.BatchingLoadQueryDetailsFactory</span></td><td><code>f08a18802b8127f7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.CollectionReferenceAliasesImpl</span></td><td><code>a78bda0bfcc5a8dc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails</span></td><td><code>259e2238b071dab7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails.EntityLoaderReaderCollectorImpl</span></td><td><code>5555480c97639a5f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails.EntityLoaderRowReader</span></td><td><code>74f4c002139b41b8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityReferenceAliasesImpl</span></td><td><code>26de6cf9895c5c45</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.LoadQueryJoinAndFetchProcessor</span></td><td><code>95537782b0e29a46</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.LoadQueryJoinAndFetchProcessor.FetchStatsImpl</span></td><td><code>6936608e76447578</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.OneToManyLoadQueryDetails</span></td><td><code>3e9e0a125bb90206</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.RootHelper</span></td><td><code>960e8fc9db4eead6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.AbstractRowReader</span></td><td><code>52bda77c9581f9be</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl</span></td><td><code>e8367ad3ac5f80b9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.CollectionReturnReader</span></td><td><code>be261d7d8bd286b9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.EntityReferenceInitializerImpl</span></td><td><code>9a45e4456f7854c2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.EntityReturnReader</span></td><td><code>01489c6ffe63d87a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.HydratedEntityRegistration</span></td><td><code>23307607b34326a0</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessingContextImpl</span></td><td><code>e69d8ea1af4b2961</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessingContextImpl.1</span></td><td><code>a75be217da5a057e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl</span></td><td><code>51af0cfb01539b77</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.spi.ResultSetProcessorResolver</span></td><td><code>6ccbdfb5242ce558</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.query.internal.QueryBuildingParametersImpl</span></td><td><code>ef6dfc445e4184d4</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.query.internal.SelectStatementBuilder</span></td><td><code>94b14c901382138c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.spi.LoadPlan.Disposition</span></td><td><code>55c2578ec9b7d1d5</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.spi.QuerySpace.Disposition</span></td><td><code>ff1f17c10d282a1a</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Bag</span></td><td><code>9630463bad777835</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Collection</span></td><td><code>a7dd9ce30b751398</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Column</span></td><td><code>252a9471da1b6227</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Constraint</span></td><td><code>0803d79558484617</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.DependantValue</span></td><td><code>7d0b340f4e255aee</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ForeignKey</span></td><td><code>df43ae4fdca749d5</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ManyToOne</span></td><td><code>35d0f895f4fbcd4c</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.MappedSuperclass</span></td><td><code>a1e6fbe2f19dd0cd</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.OneToMany</span></td><td><code>31927f930343935e</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.PersistentClass</span></td><td><code>11023972997d9973</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.PrimaryKey</span></td><td><code>e09c364da24f4cf6</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Property</span></td><td><code>f6ca185f80877b24</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.RootClass</span></td><td><code>b0a2aab12531f818</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Set</span></td><td><code>bf557b79210e7fcd</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.SimpleValue</span></td><td><code>8727cf622b7c34b7</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.SimpleValue.ParameterTypeImpl</span></td><td><code>6224bc02c7cacafb</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Table</span></td><td><code>90a784b04d089d73</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Table.ForeignKeyKey</span></td><td><code>1ed0b651433f2c72</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ToOne</span></td><td><code>99434fd76546ad4e</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.UniqueKey</span></td><td><code>1271db20f3a4faed</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory</span></td><td><code>32256593015ffe4a</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.1</span></td><td><code>9b280464cf14ac64</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.2</span></td><td><code>f8fd4f9d2e466088</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.3</span></td><td><code>86b79b5c25838e57</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.4</span></td><td><code>bcc3f8e5c5df1fda</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.5</span></td><td><code>cf524319dc898b15</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.6</span></td><td><code>d4fff8de4fae58a9</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.7</span></td><td><code>84d83123d41a9d3f</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.BaseAttributeMetadata</span></td><td><code>cac7889b9f969fed</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.PluralAttributeMetadataImpl</span></td><td><code>1a5e357d9ed4d2f7</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.PluralAttributeMetadataImpl.1</span></td><td><code>6308a3bf387f9430</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.SingularAttributeMetadataImpl</span></td><td><code>78649ffe76a1d690</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.SingularAttributeMetadataImpl.1</span></td><td><code>44fa673835c4e501</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.ValueContext.ValueClassification</span></td><td><code>52ac285a88c42456</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.JpaMetaModelPopulationSetting</span></td><td><code>5767fa2ab9b6f959</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.JpaStaticMetaModelPopulationSetting</span></td><td><code>aaf978e660c97f46</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetadataContext</span></td><td><code>b899393ec1377d52</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetamodelImpl</span></td><td><code>ce112b219ec7f993</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetamodelImpl.1</span></td><td><code>4af8f4f3ff931283</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.convert.internal.NamedEnumValueConverter</span></td><td><code>14dd7aa0f05d2fb9</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.NavigableRole</span></td><td><code>22d214df51af7286</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractAttribute</span></td><td><code>35e0528f71230190</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractIdentifiableType</span></td><td><code>8e5297b2ed3839db</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractIdentifiableType.InFlightAccessImpl</span></td><td><code>3abd184d3198c236</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType</span></td><td><code>f728310a28deb442</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType.1</span></td><td><code>be10fd3ed22227a3</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType.InFlightAccessImpl</span></td><td><code>ecee9179614710b2</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractPluralAttribute</span></td><td><code>d90c108b3487b60f</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractType</span></td><td><code>bf3c90b7ee88b4be</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.BasicTypeImpl</span></td><td><code>e830ce0fa6b41578</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.EntityTypeImpl</span></td><td><code>4ceb3f8603b60bfc</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.ListAttributeImpl</span></td><td><code>c3754b032eb7872c</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.MappedSuperclassTypeImpl</span></td><td><code>ee822fd62ed42367</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.PluralAttributeBuilder</span></td><td><code>67f608aff58d06be</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SetAttributeImpl</span></td><td><code>641164d155cdfc24</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl</span></td><td><code>1e8f08ff292427b4</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl.DelayedKeyTypeAccess</span></td><td><code>805c71622543d67d</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl.Identifier</span></td><td><code>96d9593f7a31b4f7</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.spi.SingularPersistentAttribute</span></td><td><code>8e24766b0532d353</code></td></tr><tr><td><span class="el_class">org.hibernate.param.AbstractExplicitParameterSpecification</span></td><td><code>297c419b58661b52</code></td></tr><tr><td><span class="el_class">org.hibernate.param.NamedParameterSpecification</span></td><td><code>e1b966280d93c1fa</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.AbstractCollectionPersister</span></td><td><code>ef3a2f0dd549ee88</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.AbstractCollectionPersister.2</span></td><td><code>d5d118af3e586a44</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.BasicCollectionPersister</span></td><td><code>f80f90183fc227f8</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.OneToManyPersister</span></td><td><code>37aeb1024d84fbf1</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister</span></td><td><code>0164a6080a6ace5a</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister.3</span></td><td><code>27970aeda7f7421d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister.NoopCacheEntryHelper</span></td><td><code>a0956e9c81e73fd4</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractPropertyMapping</span></td><td><code>8a78ded881f6666b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.BasicEntityPropertyMapping</span></td><td><code>587e811c0f52e5df</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.EntityLoaderLazyCollection</span></td><td><code>dce606ee9e52e7b3</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.Loadable</span></td><td><code>1b3c997fcbb87f09</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.Queryable.Declarer</span></td><td><code>2013a679a78b1114</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.SingleTableEntityPersister</span></td><td><code>c1220dc7bdb4bf3d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterClassResolverInitiator</span></td><td><code>dc8846937d820308</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterFactoryImpl</span></td><td><code>3a51a44b1646080d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterFactoryInitiator</span></td><td><code>989fb5a5acd19b9d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.StandardPersisterClassResolver</span></td><td><code>7333e52a7d046642</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper</span></td><td><code>4d59534faec10bcd</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper.1</span></td><td><code>60b8995dbda64e72</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper.AttributeDefinitionAdapter</span></td><td><code>f8888fe1020ec8af</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.FetchStrategyHelper</span></td><td><code>0914c129912abe4f</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.FetchStrategyHelper.1</span></td><td><code>f1f70be34a932ab7</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.AssociationAttributeDefinition.AssociationNature</span></td><td><code>a1587c98dacdfc4b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.AssociationKey</span></td><td><code>b41187e40562088b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.MetamodelGraphWalker</span></td><td><code>73f410fc0c997de8</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessFieldImpl</span></td><td><code>c877bfaaf671b5e8</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBackRefImpl</span></td><td><code>338fef6caf49a83c</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBackRefImpl.1</span></td><td><code>9921828ec9ee06fe</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBasicImpl</span></td><td><code>e73fae6240d80047</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyEmbeddedImpl</span></td><td><code>743ff18eed3af8f2</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyFieldImpl</span></td><td><code>c018f9c4b01cf77a</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyMapImpl</span></td><td><code>dcaa399da12f6546</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyMixedImpl</span></td><td><code>cb0fd17a6effa5a5</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyNoopImpl</span></td><td><code>7ce1fc9658cb59c7</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyResolverInitiator</span></td><td><code>a9444ca1482590aa</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyResolverStandardImpl</span></td><td><code>fd7ca75c1cd74f50</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.BuiltInPropertyAccessStrategies</span></td><td><code>73001408c2e374ea</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.GetterFieldImpl</span></td><td><code>3690dc81b8279e20</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.SetterFieldImpl</span></td><td><code>b757016b632a8061</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.ProxyFactoryHelper</span></td><td><code>391b894aaf78fa5b</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.bytebuddy.ByteBuddyProxyFactory</span></td><td><code>68a666fd7a92a929</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.bytebuddy.ByteBuddyProxyHelper</span></td><td><code>9871a05837293e75</code></td></tr><tr><td><span class="el_class">org.hibernate.query.ImmutableEntityUpdateQueryHandlingMode</span></td><td><code>11333590ec50f6ac</code></td></tr><tr><td><span class="el_class">org.hibernate.query.Query</span></td><td><code>ef48e64e72092455</code></td></tr><tr><td><span class="el_class">org.hibernate.query.Query.1</span></td><td><code>03189b53ba18052f</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.LiteralHandlingMode</span></td><td><code>d70e9602e2361037</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.AbstractNode</span></td><td><code>7d5e23d0e586aa5b</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaBuilderImpl</span></td><td><code>8b782ba3900a879e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl</span></td><td><code>be11ab9e9f659b62</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1</span></td><td><code>750df3908f598f0e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1.1</span></td><td><code>ad65d6b5a06598ef</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1.1.1</span></td><td><code>d428aea7b4a7513f</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.OrderImpl</span></td><td><code>db0c5f7c0e1ae6de</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.QueryStructure</span></td><td><code>400519d8678c682d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler</span></td><td><code>4073d59dd33e9b3d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler.1</span></td><td><code>1166a4921af9c6e5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler.2</span></td><td><code>322f712b87f74a1b</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaQueryTypeQueryAdapter</span></td><td><code>6570e374153619db</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.ExplicitParameterInfo</span></td><td><code>94a61e4879fb76f6</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.AbstractTupleElement</span></td><td><code>8632358d786a6431</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.ExpressionImpl</span></td><td><code>bc38ea2a397cce3d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.ParameterExpressionImpl</span></td><td><code>cdf8599b3d4741c5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.PathTypeExpression</span></td><td><code>522372b1629fbbbe</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.SelectionImpl</span></td><td><code>cb9f295e1121c0fe</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.AggregationFunction</span></td><td><code>7f158dc1a718abcd</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.AggregationFunction.COUNT</span></td><td><code>52f974f43c27e014</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.BasicFunctionExpression</span></td><td><code>d0e79ca58eb0edca</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.ParameterizedFunctionExpression</span></td><td><code>695a94602ec0d560</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractFromImpl</span></td><td><code>23eda01629038fe5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractFromImpl.BasicJoinScope</span></td><td><code>91d4388ea44d440c</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractPathImpl</span></td><td><code>77b8066061e55054</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.RootImpl</span></td><td><code>3225d877a0a3f7cf</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.SingularAttributePath</span></td><td><code>462282e66423051a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.AbstractPredicateImpl</span></td><td><code>29fbee54f1a8bb46</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.AbstractSimplePredicate</span></td><td><code>52d866572f25d60a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.BooleanAssertionPredicate</span></td><td><code>dedee54811c24e45</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate</span></td><td><code>1ed13d1b86424b03</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator</span></td><td><code>f8b2b4e1e07b46d1</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.1</span></td><td><code>27892781ed710978</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.2</span></td><td><code>5131243479e0e9ea</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.3</span></td><td><code>9ccd72497a665a89</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.4</span></td><td><code>9f57f52d70a4244e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.5</span></td><td><code>75bbe204f45a500d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.6</span></td><td><code>6370068e4e5e9dbb</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.CompoundPredicate</span></td><td><code>e851cea853343bb8</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.InPredicate</span></td><td><code>10ea78ea084278b3</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.AbstractProducedQuery</span></td><td><code>30bc8315a9776401</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.ParameterMetadataImpl</span></td><td><code>fa22c31c2cc03202</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryImpl</span></td><td><code>d2e6e145e0a19be0</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterBindingImpl</span></td><td><code>ade62cbcf6de3c88</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterBindingsImpl</span></td><td><code>5ed735ab7c957103</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterListBindingImpl</span></td><td><code>26305a5c8b4057ae</code></td></tr><tr><td><span class="el_class">org.hibernate.query.spi.NamedQueryRepository</span></td><td><code>08a50392ec680c3a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.spi.QueryParameterBindingValidator</span></td><td><code>766d206fbde3dfcd</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.internal.FallbackBeanInstanceProducer</span></td><td><code>4a3f9f6395402d49</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.internal.ManagedBeanRegistryImpl</span></td><td><code>06a7089e6b07426c</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.spi.ManagedBeanRegistryInitiator</span></td><td><code>bfb662ed629edf48</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.AbstractLogicalConnectionImplementor</span></td><td><code>ca1b67c739f9f93a</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl</span></td><td><code>a09036d0c8f64794</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.ResourceRegistryStandardImpl</span></td><td><code>8be1e2786241fe04</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode</span></td><td><code>da8c5da690ea7cb0</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl</span></td><td><code>c31032ddc3bd5bb5</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl</span></td><td><code>3dfe71bc8bc40ee2</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl.TransactionDriverControlImpl</span></td><td><code>77c7d67cefdc5709</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.internal.SynchronizationRegistryStandardImpl</span></td><td><code>b2009d0295675f5b</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.internal.TransactionCoordinatorBuilderInitiator</span></td><td><code>9a71df8014ed41e8</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinator</span></td><td><code>8fd0f66af5e380fc</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinator.TransactionDriver</span></td><td><code>b194ee1a53ced502</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinatorOwner</span></td><td><code>1babc0463df5bc10</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionStatus</span></td><td><code>b88079b27cc11d85</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.internal.DisabledJaccServiceImpl</span></td><td><code>bfaf63d7647b70f8</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.spi.JaccIntegrator</span></td><td><code>a0c020ee9e502aff</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.spi.JaccIntegrator.1</span></td><td><code>6a3ab2bba01227e9</code></td></tr><tr><td><span class="el_class">org.hibernate.service.StandardServiceInitiators</span></td><td><code>738b361ef9b9bb99</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.AbstractServiceRegistryImpl</span></td><td><code>5af76be487ea40f8</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.ProvidedService</span></td><td><code>54c39b8a11312627</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryBuilderImpl</span></td><td><code>8e45e1c21b909000</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryImpl</span></td><td><code>83c4b07b29af6c0b</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryInitiator</span></td><td><code>ae8547062be42bde</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryImpl</span></td><td><code>f587aeb451f0aeb0</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.StandardSessionFactoryServiceInitiators</span></td><td><code>8fd791cc0a856065</code></td></tr><tr><td><span class="el_class">org.hibernate.service.spi.ServiceBinding</span></td><td><code>40f1e510c86063fa</code></td></tr><tr><td><span class="el_class">org.hibernate.service.spi.SessionFactoryServiceInitiator</span></td><td><code>50dc3d6f28afee83</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ANSIJoinFragment</span></td><td><code>644987b36864ccf6</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ANSIJoinFragment.1</span></td><td><code>e4474e7f07883ca2</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Alias</span></td><td><code>8776b86928754e4f</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Delete</span></td><td><code>fe498507f2820bc3</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ForUpdateFragment</span></td><td><code>94ffefab3820e8b5</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.InFragment</span></td><td><code>0afa3e7085dd4492</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Insert</span></td><td><code>33f8469eaf50f148</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.JoinFragment</span></td><td><code>f3add476e71ca769</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.JoinType</span></td><td><code>0b9fb9e2f9ffc557</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.QueryJoinFragment</span></td><td><code>53f9fce8c76f085c</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Select</span></td><td><code>0cf0c86d46612d52</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.SelectFragment</span></td><td><code>0c9065271b3d9986</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.SimpleSelect</span></td><td><code>8f5fae88d0b6f898</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Update</span></td><td><code>7c61dcf5ddc7afab</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ast.Clause</span></td><td><code>a9ddfa6b493ae025</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatisticsImpl</span></td><td><code>df440a15627ed6db</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatisticsInitiator</span></td><td><code>db19216294cd8ebe</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatsNamedContainer</span></td><td><code>8d0851b35e6e153a</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.hbm2ddl.ImportSqlCommandExtractorInitiator</span></td><td><code>91e8b98bdde9ed4d</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.hbm2ddl.SingleLineSqlCommandExtractor</span></td><td><code>c641c7d1abd46764</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.Action</span></td><td><code>85149e54c2fea5cf</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.SchemaManagementToolInitiator</span></td><td><code>2113d40196b0f5bd</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardAuxiliaryDatabaseObjectExporter</span></td><td><code>c90a345dc1ec06b8</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardForeignKeyExporter</span></td><td><code>1c903b8ab1d8e8cc</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardIndexExporter</span></td><td><code>a95f27188e57ba87</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardSequenceExporter</span></td><td><code>10b2ad6eea303168</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardTableExporter</span></td><td><code>e700a20e4db50d95</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardUniqueKeyExporter</span></td><td><code>cff96f9fa29497b1</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.Exporter</span></td><td><code>f60c3caefa1b10b7</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator</span></td><td><code>7f5516059e400cf0</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.ActionGrouping</span></td><td><code>9a3389357a1b6582</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.AbstractAttribute</span></td><td><code>1fb0106f5fac2b59</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.AbstractNonIdentifierAttribute</span></td><td><code>e59a13205d51133e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.BaselineAttributeInformation</span></td><td><code>90107256da58b4ff</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.BaselineAttributeInformation.Builder</span></td><td><code>73460bc9b0581993</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.CreationTimestampGeneration</span></td><td><code>c43259d138b2ea28</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming</span></td><td><code>c6ea2cfd7b79fa61</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.1</span></td><td><code>468b9a846484191e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.2</span></td><td><code>4d5509fc50c91cc0</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.3</span></td><td><code>ac863c977e9c1ca9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.IdentifierProperty</span></td><td><code>6a81bd2d7bb22fd0</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PojoInstantiator</span></td><td><code>2a26cf30d75c5e65</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory</span></td><td><code>1b6a531a80f034f6</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory.1</span></td><td><code>a0cf9e859a207dba</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory.NonIdentifierAttributeNature</span></td><td><code>648ba17afddcd85e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.TimestampGenerators</span></td><td><code>9a96a790925bbe32</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.UpdateTimestampGeneration</span></td><td><code>5e69ea93ebf99339</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.AbstractEntityBasedAttribute</span></td><td><code>07d584081cd87564</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.AbstractEntityTuplizer</span></td><td><code>6f99578cbc97d4e9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.BytecodeEnhancementMetadataPojoImpl</span></td><td><code>8dc02e0daebc6170</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityBasedAssociationAttribute</span></td><td><code>bd3ded3386f48038</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityBasedBasicAttribute</span></td><td><code>6da629e348575f49</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel</span></td><td><code>9fd774badce50c52</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.FullInMemoryValueGenerationStrategy</span></td><td><code>d316c6bf391cee7f</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.GenerationStrategyPair</span></td><td><code>c2b20097de7e12d9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.NoInDatabaseValueGenerationStrategy</span></td><td><code>0a2f8682c08cf1b5</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.NoInMemoryValueGenerationStrategy</span></td><td><code>ab18b028b3bc2ad9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityTuplizerFactory</span></td><td><code>29cfec41fbddde8b</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.PojoEntityInstantiator</span></td><td><code>2ff98a909b4f6270</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.PojoEntityTuplizer</span></td><td><code>3fc92819fbb865d1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractSingleColumnStandardBasicType</span></td><td><code>4a93883945d4466d</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractStandardBasicType</span></td><td><code>89cf5d71d35c6431</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractType</span></td><td><code>39b4f7fc46f62f6d</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AdaptedImmutableType</span></td><td><code>5015ca9fb738d1fe</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AnyType</span></td><td><code>a1c598a55fdb4fa7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BagType</span></td><td><code>ded74e7a75584388</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BasicTypeRegistry</span></td><td><code>a271ba3bcf8cc471</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BigDecimalType</span></td><td><code>9eaa9e971a061fbb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BigIntegerType</span></td><td><code>eaf6ede3d1875d95</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BinaryType</span></td><td><code>3b149b4c73a07473</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BlobType</span></td><td><code>4dd6bdcc6a4d3ac7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BooleanType</span></td><td><code>deacf11282cf2b30</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ByteType</span></td><td><code>affc46c03f6b8656</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarDateType</span></td><td><code>80f1b021c53e9c46</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarTimeType</span></td><td><code>993ef8fc79d02326</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarType</span></td><td><code>8012ca9d04d9f543</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharArrayType</span></td><td><code>31db42c9d49c9e04</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterArrayType</span></td><td><code>df3c2c1049058cef</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterNCharType</span></td><td><code>bbd7ce9c19c12696</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterType</span></td><td><code>9d74881f640e4461</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ClassType</span></td><td><code>49641992c15f0f41</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ClobType</span></td><td><code>662639b410f6c453</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CollectionType</span></td><td><code>e47135d7446c42df</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CurrencyType</span></td><td><code>9a4e65f81f4fa74c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CustomType</span></td><td><code>865372be2cc5c346</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DateType</span></td><td><code>25af2fddbc456bdc</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DbTimestampType</span></td><td><code>395e6074cb317280</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DoubleType</span></td><td><code>b0da2493d71c07e9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DurationType</span></td><td><code>bd35c5a1e88d3468</code></td></tr><tr><td><span class="el_class">org.hibernate.type.EntityType</span></td><td><code>9c202a9131826ae0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.EnumType</span></td><td><code>88f5055997731ec0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.FloatType</span></td><td><code>60a2c96517a91289</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection</span></td><td><code>a030f3740145104a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection.1</span></td><td><code>7b5241dc53002da1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection.2</span></td><td><code>3ff55ca229f3f59e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ImageType</span></td><td><code>c3c521996ee061d3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.InstantType</span></td><td><code>f2bcb45c13b8450a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.IntegerType</span></td><td><code>2a5f16c52c9c174c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalDateTimeType</span></td><td><code>2c877484d8c0cabb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalDateType</span></td><td><code>1be158b2f4337309</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalTimeType</span></td><td><code>492d8fd57bf89539</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocaleType</span></td><td><code>e3a1154824444234</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LongType</span></td><td><code>9dac3edd963844b5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ManyToOneType</span></td><td><code>4a001d3cc444f8d3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedBlobType</span></td><td><code>b0985c2f73225850</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedClobType</span></td><td><code>f92cff47bc2d5843</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedNClobType</span></td><td><code>840f5f60df55e3af</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NClobType</span></td><td><code>be127073e58e2066</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NTextType</span></td><td><code>dba4220b1cc0d3ac</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NumericBooleanType</span></td><td><code>b5a9f4fa1c8aea90</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ObjectType</span></td><td><code>426075471ac62aa2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.OffsetDateTimeType</span></td><td><code>99692ef1d7ea66b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.OffsetTimeType</span></td><td><code>697307feefed67c9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.PostgresUUIDType</span></td><td><code>fc5917bf601f167e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.PostgresUUIDType.PostgresUUIDSqlTypeDescriptor</span></td><td><code>4822faee0d569e50</code></td></tr><tr><td><span class="el_class">org.hibernate.type.RowVersionType</span></td><td><code>69b26d25a076e2cd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.SerializableType</span></td><td><code>19a6f44fd2424d51</code></td></tr><tr><td><span class="el_class">org.hibernate.type.SetType</span></td><td><code>707b14d8d6f3dc39</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ShortType</span></td><td><code>12ca04699802a66b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StandardBasicTypes</span></td><td><code>8445ec38cda9edee</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StringNVarcharType</span></td><td><code>6d99a18d97300833</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StringType</span></td><td><code>8d268afb6d844771</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TextType</span></td><td><code>c1591d7725c6476f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimeType</span></td><td><code>e43de782a4bc3224</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimeZoneType</span></td><td><code>d4925dd8b4ee1c34</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimestampType</span></td><td><code>cb2657db6d71cdbf</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TrueFalseType</span></td><td><code>f0f3b660f92dd5f9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.Type</span></td><td><code>3e68d755c012c457</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeFactory</span></td><td><code>0ea7fa8448df2b2c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeHelper</span></td><td><code>cbbff5146cf18220</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeResolver</span></td><td><code>c3b75af4a686d269</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UUIDBinaryType</span></td><td><code>c702981bc37eb3b2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UUIDCharType</span></td><td><code>a998282c2cbb7430</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UrlType</span></td><td><code>4b809474b92fef7c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.WrapperBinaryType</span></td><td><code>2b069e873a3ffb22</code></td></tr><tr><td><span class="el_class">org.hibernate.type.YesNoType</span></td><td><code>579dcd6b7a531e0a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ZonedDateTimeType</span></td><td><code>cfaa69c577025590</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.AbstractTypeDescriptor</span></td><td><code>c03bb23eb2b75e9b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ArrayMutabilityPlan</span></td><td><code>40f25b630f57e6fb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BigDecimalTypeDescriptor</span></td><td><code>34db3c536db16678</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BigIntegerTypeDescriptor</span></td><td><code>84d3341763afb8a9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BlobTypeDescriptor</span></td><td><code>35118589f0c0de73</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BlobTypeDescriptor.BlobMutabilityPlan</span></td><td><code>9adf632b0720e6b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BooleanTypeDescriptor</span></td><td><code>b640df68306efd96</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ByteArrayTypeDescriptor</span></td><td><code>c74f4da3610980bd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ByteTypeDescriptor</span></td><td><code>60c6a16ce20841ce</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarDateTypeDescriptor</span></td><td><code>e6a8b0043a757499</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTimeTypeDescriptor</span></td><td><code>9adb15e6a6a702c7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTypeDescriptor</span></td><td><code>58557461b618d8af</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTypeDescriptor.CalendarMutabilityPlan</span></td><td><code>25eda164b976a134</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor</span></td><td><code>990f3b4a4946ce27</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CharacterTypeDescriptor</span></td><td><code>93090dbf14265e5b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClassTypeDescriptor</span></td><td><code>098b39d1712c2b2a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClobTypeDescriptor</span></td><td><code>254ad1d082e90761</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClobTypeDescriptor.ClobMutabilityPlan</span></td><td><code>3bba4f9fcfa77dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CurrencyTypeDescriptor</span></td><td><code>b3aa1498af6884e2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.DoubleTypeDescriptor</span></td><td><code>d38070e34f9a0fd3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.DurationJavaDescriptor</span></td><td><code>7f0531b14913a6df</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.EnumJavaTypeDescriptor</span></td><td><code>5434e1b56357b7d9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.FloatTypeDescriptor</span></td><td><code>ec00e378989e7b3e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ImmutableMutabilityPlan</span></td><td><code>e7d7b40190b2b6f6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.InstantJavaDescriptor</span></td><td><code>7e4f33c0a3127ecd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.IntegerTypeDescriptor</span></td><td><code>7b343d91e886d8ff</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor</span></td><td><code>d7d7a376334df87c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor.DateMutabilityPlan</span></td><td><code>78fded662243f395</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor</span></td><td><code>3092a67863c4a1d9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor.TimeMutabilityPlan</span></td><td><code>08d2505bd203b885</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor</span></td><td><code>c854b6deae56db2a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor.TimestampMutabilityPlan</span></td><td><code>d76671261696313e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalDateJavaDescriptor</span></td><td><code>cc753a6ba69acecd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalDateTimeJavaDescriptor</span></td><td><code>71667decb8744927</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalTimeJavaDescriptor</span></td><td><code>8b21140e8567a67a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocaleTypeDescriptor</span></td><td><code>2f2ded338a40fd49</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LongTypeDescriptor</span></td><td><code>ea3140f7b119331b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.MutableMutabilityPlan</span></td><td><code>81e84d499a9b3453</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.NClobTypeDescriptor</span></td><td><code>915992e3e1308104</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.NClobTypeDescriptor.NClobMutabilityPlan</span></td><td><code>663afc2cfcb3bdd1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.OffsetDateTimeJavaDescriptor</span></td><td><code>3e02c1b88dcb8def</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.OffsetTimeJavaDescriptor</span></td><td><code>56028ae480ae4edb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.PrimitiveByteArrayTypeDescriptor</span></td><td><code>ed42f1f192740913</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.PrimitiveCharacterArrayTypeDescriptor</span></td><td><code>1149c9bdf41daa72</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.RowVersionTypeDescriptor</span></td><td><code>0472be6d158694d5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.SerializableTypeDescriptor</span></td><td><code>82a28621889e3c77</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.SerializableTypeDescriptor.SerializableMutabilityPlan</span></td><td><code>b62ce1bad94f2d1f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ShortTypeDescriptor</span></td><td><code>85cd65086664af6c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.StringTypeDescriptor</span></td><td><code>b1e4ff9bf120b903</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.TimeZoneTypeDescriptor</span></td><td><code>3021bd513cf86b24</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.UUIDTypeDescriptor</span></td><td><code>41bf789b22ab0c74</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.UrlTypeDescriptor</span></td><td><code>07c922bc0ae50617</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ZonedDateTimeJavaDescriptor</span></td><td><code>1155664c2e3923a6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.spi.JavaTypeDescriptorRegistry</span></td><td><code>d551e5b61d04a5bf</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.spi.RegistryHelper</span></td><td><code>a970314a5b0ac7a1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BasicBinder</span></td><td><code>8392d6ad1ea5999b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BasicExtractor</span></td><td><code>9ac6b97b09c1eff2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor</span></td><td><code>dda17e1b3f4a9147</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor.1</span></td><td><code>c70d36ecbf299dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor.2</span></td><td><code>fdcd27ddb3d82972</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BinaryTypeDescriptor</span></td><td><code>b053e192b903fc87</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BitTypeDescriptor</span></td><td><code>2863dfc34ab0e8c9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor</span></td><td><code>d558e03cac2b15be</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.2</span></td><td><code>28898877319d50f9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.3</span></td><td><code>f48d6ddd3e0f0901</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.4</span></td><td><code>5da6e3a0679d9b47</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.5</span></td><td><code>b51028341e1257e3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor</span></td><td><code>8506749363e0b000</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.1</span></td><td><code>2656afd5015c989e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.2</span></td><td><code>c69ab3d1701e1fd9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.CharTypeDescriptor</span></td><td><code>1365a736de1b74d4</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor</span></td><td><code>3197729c0a65a923</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.2</span></td><td><code>0150640e0f6dcb38</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.3</span></td><td><code>bf74c2c783fafc80</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.4</span></td><td><code>ee8c18047d3e156a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.5</span></td><td><code>1ecd96d67037ccfe</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DateTypeDescriptor</span></td><td><code>1ffe5a068e4626c3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DecimalTypeDescriptor</span></td><td><code>c5e9502d92dc60b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DoubleTypeDescriptor</span></td><td><code>aa1fc4aef62c9ff0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.FloatTypeDescriptor</span></td><td><code>ebd82cc78582df81</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor</span></td><td><code>87f050bfb2577ee6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor.1</span></td><td><code>62caf469b5994308</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor.2</span></td><td><code>fdc55c10821a0c6f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongNVarcharTypeDescriptor</span></td><td><code>5cfd891e7b29c1ae</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongVarbinaryTypeDescriptor</span></td><td><code>eb38f3783bc72fe0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongVarcharTypeDescriptor</span></td><td><code>cf0df0a7b652edd5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NCharTypeDescriptor</span></td><td><code>b94bc9311ddf15c5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor</span></td><td><code>11904958e1ab9421</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.2</span></td><td><code>827bd38ad8016336</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.3</span></td><td><code>8d56d283cec89047</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.4</span></td><td><code>ab927f03f79427d0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NVarcharTypeDescriptor</span></td><td><code>1c7b6c04aa811849</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NumericTypeDescriptor</span></td><td><code>8b013429a4e69a1a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.RealTypeDescriptor</span></td><td><code>4c2d190ba8687448</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.SmallIntTypeDescriptor</span></td><td><code>5f56ee3e1e90cdb4</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.SqlTypeDescriptorRegistry</span></td><td><code>50ed2c399fca2f39</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimeTypeDescriptor</span></td><td><code>3cd7a459ccdf14a1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor</span></td><td><code>28b8e2eebdeee612</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor.1</span></td><td><code>00e8caab6774f1c0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor.2</span></td><td><code>afaaf94c69b259aa</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TinyIntTypeDescriptor</span></td><td><code>a241b61ea4e43e37</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarbinaryTypeDescriptor</span></td><td><code>2b4a42ebc7493700</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor</span></td><td><code>817cd514fbfe7b2f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor.1</span></td><td><code>a3d57938cf566614</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor.2</span></td><td><code>b9b8cc1bbb9369f2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.spi.SqlTypeDescriptorRegistry</span></td><td><code>0c31616f9aeb3339</code></td></tr><tr><td><span class="el_class">org.hibernate.type.spi.TypeConfiguration</span></td><td><code>c654fecb638a49db</code></td></tr><tr><td><span class="el_class">org.hibernate.type.spi.TypeConfiguration.Scope</span></td><td><code>057daabdd26fcb1b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.HibernateValidator</span></td><td><code>c58a3e0240ba34cc</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.constraints.CompositionType</span></td><td><code>04e168e628ad4dc1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.cfg.context.DefaultConstraintMapping</span></td><td><code>c75039c263666510</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.constraintvalidators.bv.NotNullValidator</span></td><td><code>1d946c01dd239177</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.constraintvalidators.bv.PatternValidator</span></td><td><code>877c08ea43fdf275</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.AbstractConfigurationImpl</span></td><td><code>c17a56aca8029bf2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConfigurationImpl</span></td><td><code>1566d83eac8fb547</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConstraintCreationContext</span></td><td><code>bc3131fb3819c005</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConstraintViolationImpl</span></td><td><code>9f251133dde37211</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultClockProvider</span></td><td><code>267221c856bac87f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultParameterNameProvider</span></td><td><code>765191ec37f3e69b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider</span></td><td><code>cf88aa1c6457dfb6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MessageInterpolatorContext</span></td><td><code>e966d8e53c88ded5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MethodValidationConfiguration</span></td><td><code>14590085b67e58fd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MethodValidationConfiguration.Builder</span></td><td><code>feba2eaa4a72a87f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ServiceLoaderBasedConstraintMappingContributor</span></td><td><code>f854087a2a7e19a8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorContextImpl</span></td><td><code>36ba091a7ed05b9f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryConfigurationHelper</span></td><td><code>8af55e8209e0bc70</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryConfigurationHelper.DefaultConstraintMappingBuilder</span></td><td><code>181d04ef2d891396</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryImpl</span></td><td><code>74f36c271f9c1328</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryImpl.BeanMetaDataManagerKey</span></td><td><code>d19d2c1b284e0ac1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryScopedContext</span></td><td><code>23ec7f4fa0f40b3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryScopedContext.Builder</span></td><td><code>eaeeaaa25fdddd40</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorImpl</span></td><td><code>d532ddcd22b6f9bb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.AbstractConstraintValidatorManagerImpl</span></td><td><code>e6e265233639da96</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ClassBasedValidatorDescriptor</span></td><td><code>e4f7772c47b0bcb2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintTree</span></td><td><code>0c9bb17ee43e0ac7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorContextImpl</span></td><td><code>ea5a43f7336e177a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorDescriptor</span></td><td><code>56d25f7b4081761a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorFactoryImpl</span></td><td><code>81156368c0073f6c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl</span></td><td><code>8d1fbdfb35934454</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl.1</span></td><td><code>0b41f541fd22a78c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl.CacheKey</span></td><td><code>54dc232fc83d8182</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintViolationCreationContext</span></td><td><code>3b6931c9c87702bf</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.HibernateConstraintValidatorInitializationContextImpl</span></td><td><code>61beeaf959dd3b24</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.SimpleConstraintTree</span></td><td><code>a70b7b4f73d091d5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.Group</span></td><td><code>b1178318c9c1d427</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.GroupWithInheritance</span></td><td><code>417f55538d0a3985</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.Sequence</span></td><td><code>29c136e7a9bdfb17</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder</span></td><td><code>3d0612f7df31d10c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder.DefaultGroupValidationOrder</span></td><td><code>0de94934bc35b9af</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder.DefaultSequenceValidationOrder</span></td><td><code>1dd5e17805ae018e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrderGenerator</span></td><td><code>af4ce1e072216368</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.DefaultLocaleResolver</span></td><td><code>1a6b3546aa7603c7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.DefaultLocaleResolverContext</span></td><td><code>099b59ef5002084c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.util.InterpolationHelper</span></td><td><code>debdcafb62c799bb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.path.NodeImpl</span></td><td><code>e9977f2849624fb2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.path.PathImpl</span></td><td><code>62d15435c9a084d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.AbstractTraversableHolder</span></td><td><code>a40760aa878067b3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.CachingTraversableResolverForSingleValidation</span></td><td><code>a26f9487135421c7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.CachingTraversableResolverForSingleValidation.TraversableHolder</span></td><td><code>00cbc0ea0bb9b07b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.JPATraversableResolver</span></td><td><code>224e799ad1939432</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.TraversableResolvers</span></td><td><code>18646ee3d4c182d8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory</span></td><td><code>ae7a2413e72ff6da</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.AbstractValidationContext</span></td><td><code>015881f38d89cbe0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.BaseBeanValidationContext</span></td><td><code>8f22ddc88861cd0f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.BeanValidationContext</span></td><td><code>ca8a9b642404a5f4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.ValidationContextBuilder</span></td><td><code>1966aa774f23d205</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.ValidatorScopedContext</span></td><td><code>9616cb12f4b9d339</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.BeanValueContext</span></td><td><code>116345542727cc61</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContext</span></td><td><code>38cca23d9bf1b5df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContext.ValueState</span></td><td><code>594a5141ef6400c2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContexts</span></td><td><code>f96ce2d1b97b2dff</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.AnnotatedObject</span></td><td><code>3220c7266bcce57b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ArrayElement</span></td><td><code>6076ed65450dfafc</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.BooleanArrayValueExtractor</span></td><td><code>85459352814ca24d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ByteArrayValueExtractor</span></td><td><code>9a6c7080c827bb3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.CharArrayValueExtractor</span></td><td><code>54fd3a16878d82d9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.DoubleArrayValueExtractor</span></td><td><code>554402890807a9b6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.FloatArrayValueExtractor</span></td><td><code>d25e799d18381f61</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.IntArrayValueExtractor</span></td><td><code>16b62341739474ef</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.IterableValueExtractor</span></td><td><code>d0fb6d72a2640cd7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ListValueExtractor</span></td><td><code>ca7c1d4ae95cc788</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.LongArrayValueExtractor</span></td><td><code>ef90973dd94228d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.MapKeyExtractor</span></td><td><code>6fe9a090a4ffd77d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.MapValueExtractor</span></td><td><code>c43b2b44f8d6f76a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ObjectArrayValueExtractor</span></td><td><code>c575a4466c1f2780</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalDoubleValueExtractor</span></td><td><code>41c53d9bf7085b9e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalIntValueExtractor</span></td><td><code>0eb9a0ed4d7d2995</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalLongValueExtractor</span></td><td><code>7362fe031e719d6a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalValueExtractor</span></td><td><code>7ebfc30cf4609142</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ShortArrayValueExtractor</span></td><td><code>5a4ca336f2b793e7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorDescriptor</span></td><td><code>2bdea07c99f0e4ab</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorDescriptor.Key</span></td><td><code>b1771ce85f4197c2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorManager</span></td><td><code>64f6729708d5f28b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorManager.1</span></td><td><code>dfce6e1f59a0595c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorResolver</span></td><td><code>50cf5b48ea893719</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.BeanMetaDataManagerImpl</span></td><td><code>531ece6446e8d477</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.DefaultBeanMetaDataClassNormalizer</span></td><td><code>6b716517f1975dc9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.AbstractConstraintMetaData</span></td><td><code>1a7d4d101b90fc82</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.AbstractConstraintMetaData.ContainerElementMetaDataTree</span></td><td><code>5edac944a2137b51</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder</span></td><td><code>398e61edb626d9b7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder.1</span></td><td><code>8fe7d63305fa3228</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder.BuilderDelegate</span></td><td><code>fd5c1a4888a9f2f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataImpl</span></td><td><code>0f4be671945fc865</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataImpl.DefaultGroupSequenceContext</span></td><td><code>373f277e1f6ab735</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.CascadingMetaDataBuilder</span></td><td><code>b31927bf24f53f70</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData</span></td><td><code>0d8d1fb472cb5d82</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData.Builder</span></td><td><code>0dc4c81a568f656f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.GroupConversionHelper</span></td><td><code>2f2c16b0aed356fe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.MetaDataBuilder</span></td><td><code>032ed6e6b7e04207</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.NonContainerCascadingMetaData</span></td><td><code>11a952d30118fd3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData</span></td><td><code>c0ccfa9d91d5c40f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData.Builder</span></td><td><code>ee1f895278f6081b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.PropertyMetaData</span></td><td><code>feaa17ed46129729</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.PropertyMetaData.Builder</span></td><td><code>f6ec55045d5e7d50</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ReturnValueMetaData</span></td><td><code>598614b258397f5f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ValidatableParametersMetaData</span></td><td><code>40ac4d913adea823</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.MethodConfigurationRule</span></td><td><code>543757dd98243984</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.OverridingMethodMustNotAlterParameterConstraints</span></td><td><code>509c4e4b38cca806</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ParallelMethodsMustNotDefineGroupConversionForCascadedReturnValue</span></td><td><code>4b78ee1c4e580f3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ParallelMethodsMustNotDefineParameterConstraints</span></td><td><code>3941b865326a1c11</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ReturnValueMayOnlyBeMarkedOnceAsCascadedPerHierarchyLine</span></td><td><code>9ac515f0cfd550ad</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.VoidMethodsMustNotBeReturnValueConstrained</span></td><td><code>d7114afb93d42683</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.AnnotationProcessingOptionsImpl</span></td><td><code>34887d17f9b873a0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.AnnotationProcessingOptionsImpl.ExecutableParameterKey</span></td><td><code>22dd870a30c8ed46</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.BuiltinConstraint</span></td><td><code>9f607911e2094c83</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintHelper</span></td><td><code>72b63edd490a111c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintHelper.ValidatorDescriptorMap</span></td><td><code>95157e56a026757f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintOrigin</span></td><td><code>60a228ef5409c39c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.MetaConstraint</span></td><td><code>0d43e3502ff19dd1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.MetaConstraints</span></td><td><code>07082636ef47ef01</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.BeanDescriptorImpl</span></td><td><code>edb9e6b0ed36d37e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ConstraintDescriptorImpl</span></td><td><code>55a51c6f0d7b54b6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ConstraintDescriptorImpl.ConstraintType</span></td><td><code>b666aed22d0bef7d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.CrossParameterDescriptorImpl</span></td><td><code>ccdc4d88666ea445</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ElementDescriptorImpl</span></td><td><code>28cbdad63b27e640</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ElementDescriptorImpl.ConstraintFinderImpl</span></td><td><code>bb7ab6d24c6b28a9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl</span></td><td><code>dee77f82af50daf8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ParameterDescriptorImpl</span></td><td><code>120dbc312c0173fb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.PropertyDescriptorImpl</span></td><td><code>cbda3c3aa1852195</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl</span></td><td><code>a7137d101f7cbbb5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.AbstractPropertyConstraintLocation</span></td><td><code>108b08384914c96b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation</span></td><td><code>142f1d2fe46e1fcb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation.1</span></td><td><code>1e9f386ced9536f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation.ConstraintLocationKind</span></td><td><code>e3ec1c89485df1cd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.CrossParameterConstraintLocation</span></td><td><code>0fb0ddb64b0d804a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.FieldConstraintLocation</span></td><td><code>9102f3f607f38c65</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.GetterConstraintLocation</span></td><td><code>ab78517d6eeb57c4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ParameterConstraintLocation</span></td><td><code>9b1c42c028898051</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ReturnValueConstraintLocation</span></td><td><code>df81a54b2eb98ee7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider</span></td><td><code>3db72ffd526be94f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentExecutableParameterLocation</span></td><td><code>6e21a013996421da</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentFieldLocation</span></td><td><code>042d3c1a4f718994</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentReturnValueLocation</span></td><td><code>cd96109171d22cf4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.ProgrammaticMetaDataProvider</span></td><td><code>be06fc92397d7006</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.AbstractConstrainedElement</span></td><td><code>f2e21262e24da4fe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.BeanConfiguration</span></td><td><code>2be7bc18461545b0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConfigurationSource</span></td><td><code>8b02a4987aec50d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedElement.ConstrainedElementKind</span></td><td><code>4c44887502fae605</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedExecutable</span></td><td><code>a982851ea3696fb1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedField</span></td><td><code>8619615d1f130ba3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedParameter</span></td><td><code>e4399da74be02205</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.Constrainable</span></td><td><code>663ce3c607b3a8d6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.DefaultGetterPropertySelectionStrategy</span></td><td><code>158e12a38658868e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.Signature</span></td><td><code>dfca02ba6cbaee32</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanAnnotatedElement</span></td><td><code>5aedde6cb463400e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanConstructor</span></td><td><code>b3a7f4b810778571</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanExecutable</span></td><td><code>c7d94bc03f7dccdf</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanField</span></td><td><code>c8999cbcdeb8b62b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanField.FieldAccessor</span></td><td><code>86afd9ae0d5ebe9c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanGetter</span></td><td><code>0917ab7f12c6dde9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanGetter.GetterAccessor</span></td><td><code>ea365436019b6c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper</span></td><td><code>c2db8922723c08f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper.JavaBeanConstrainableExecutable</span></td><td><code>5412357490133244</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper.JavaBeanPropertyImpl</span></td><td><code>6b8f796776756a64</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanMethod</span></td><td><code>bb4ba308fb627ff0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanParameter</span></td><td><code>c71a2502976d16b5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.CollectionHelper</span></td><td><code>758adb7c98ee1879</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap</span></td><td><code>aa544d82407ca406</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.HashEntry</span></td><td><code>08ce4cf98f7cffa5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.Option</span></td><td><code>69e2b1389751ea79</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.ReferenceType</span></td><td><code>e4f712dc141e6491</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.Segment</span></td><td><code>f61ad4fe039fef15</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.SoftKeyReference</span></td><td><code>57a77c17ac7c96e1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.SoftValueReference</span></td><td><code>1cadc88ef1a473d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.Contracts</span></td><td><code>d4d96df1491f5ccd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableHelper</span></td><td><code>427a29a2595e7f31</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableHelper.SimpleMethodFilter</span></td><td><code>57f5131c9c762ee6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableParameterNameProvider</span></td><td><code>e441605a85521a59</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ReflectionHelper</span></td><td><code>5c538000e556aeab</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.StringHelper</span></td><td><code>a426da55aff02c0b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeHelper</span></td><td><code>cc1ed36cb6cdd6c9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeResolutionHelper</span></td><td><code>25f1572a37186924</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeVariables</span></td><td><code>f11cf727008b1a3f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.Version</span></td><td><code>f647c53d2104514a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.annotation.AnnotationDescriptor</span></td><td><code>76d443349571af35</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.annotation.ConstraintAnnotationDescriptor</span></td><td><code>0848b761013220ae</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.ClassHierarchyHelper</span></td><td><code>a7181dd21602d14c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters</span></td><td><code>6f18898cd1d57cfe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters.InterfacesFilter</span></td><td><code>77130d32aab48c7c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters.WeldProxyFilter</span></td><td><code>360e7a2f25cb1f65</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Log_.logger</span></td><td><code>c2d08f0a07f70176</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.LoggerFactory</span></td><td><code>4ea78d92a9fd66df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Messages</span></td><td><code>73aae3e76468d2f3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Messages_.bundle</span></td><td><code>e13a120a9d2a4833</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.formatter.ClassObjectFormatter</span></td><td><code>38f8782dd0353e8e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetAnnotationAttributes</span></td><td><code>9d00c8b1f623fe41</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetClassLoader</span></td><td><code>6b253d834e07808f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredConstructors</span></td><td><code>562ecc471359137b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredField</span></td><td><code>4a4836649d09bd86</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredFields</span></td><td><code>5aef53643f57441e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredMethod</span></td><td><code>e192e7e526f1f91e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredMethods</span></td><td><code>f9958f58a191a8d7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetInstancesFromServiceLoader</span></td><td><code>bfbafc0fa05fbb7f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetMethod</span></td><td><code>202f9123b9203c26</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetResolvedMemberMethods</span></td><td><code>bc3366b661f4a536</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.IsClassPresent</span></td><td><code>f1719917a67eee78</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.LoadClass</span></td><td><code>6c13cf70acbf6512</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.NewInstance</span></td><td><code>c324de416aca6c17</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.BootstrapConfigurationImpl</span></td><td><code>c7b6924fb48ab208</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ResourceLoaderHelper</span></td><td><code>2da26e46e518cf56</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ValidationBootstrapParameters</span></td><td><code>39f70c00e01c16df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ValidationXmlParser</span></td><td><code>d3610dd49311e3bd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.AbstractMessageInterpolator</span></td><td><code>9801d94f665bf5e5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.ExpressionLanguageFeatureLevel</span></td><td><code>a038c9f5f54ffbc2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator</span></td><td><code>01280786c9a3d75e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.resourceloading.PlatformResourceBundleLocator</span></td><td><code>9502d46d324b92df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.resourceloading.PlatformResourceBundleLocator.AggregateResourceBundleControl</span></td><td><code>3c9f9e3958d102f2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.spi.scripting.AbstractCachingScriptEvaluatorFactory</span></td><td><code>ca85406cb4c14dec</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.hapi.ctx.FhirDstu3</span></td><td><code>0803ff8fa8cbe1d0</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Base</span></td><td><code>945fd8f52b113320</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.BaseDateTimeType</span></td><td><code>0208511c111da31d</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.DateTimeType</span></td><td><code>67dff615a8cfc2c5</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.DateTimeType.1</span></td><td><code>c527e06a63d1ffc3</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Element</span></td><td><code>7eae6794f17f553b</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.PrimitiveType</span></td><td><code>733239c6c8a74619</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.ResourceType</span></td><td><code>195e3ef732fe2988</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Type</span></td><td><code>a0e281282cd33521</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.r4.hapi.ctx.FhirR4</span></td><td><code>0743c6982b3a1c8e</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.r4.model.ResourceType</span></td><td><code>5988df2a7f1b3ca5</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.utilities.DateTimeUtil</span></td><td><code>9e6775c9f92aaacf</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.utilities.DateTimeUtil.1</span></td><td><code>053ca03b70a2df2b</code></td></tr><tr><td><span class="el_class">org.jboss.logging.DelegatingBasicLogger</span></td><td><code>3c3d79395ed6169d</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Log4j2Logger</span></td><td><code>8a51632d024aa4d3</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Log4j2LoggerProvider</span></td><td><code>9515afd916ec804c</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Logger</span></td><td><code>a0d8eeaec737c6b9</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Logger.Level</span></td><td><code>7faa510812a916d6</code></td></tr><tr><td><span class="el_class">org.jboss.logging.LoggerProviders</span></td><td><code>ba011451bd487664</code></td></tr><tr><td><span class="el_class">org.jboss.logging.LoggingLocale</span></td><td><code>a3957c29a3ff6c76</code></td></tr><tr><td><span class="el_class">org.jboss.logging.MDC</span></td><td><code>cef24d48e649b72a</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Messages</span></td><td><code>beccc27a534dad53</code></td></tr><tr><td><span class="el_class">org.jboss.logging.SecurityActions</span></td><td><code>c7a3a794dcc4342d</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeFieldType</span></td><td><code>9d56e4eb52367a19</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeFieldType.StandardDateTimeFieldType</span></td><td><code>825a109fcb15d5fc</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeZone</span></td><td><code>853b1350bf1e2538</code></td></tr><tr><td><span class="el_class">org.joda.time.DurationFieldType</span></td><td><code>52aec3adc53ca069</code></td></tr><tr><td><span class="el_class">org.joda.time.DurationFieldType.StandardDurationFieldType</span></td><td><code>c4e19b144e3ff0f3</code></td></tr><tr><td><span class="el_class">org.joda.time.UTCDateTimeZone</span></td><td><code>806dcff246383e27</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormat</span></td><td><code>615fafc4bb3609af</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormat.StyleFormatter</span></td><td><code>67cd49940577e060</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatter</span></td><td><code>efb13452c2345d0b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder</span></td><td><code>8889084ee40dfd40</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.CharacterLiteral</span></td><td><code>f74570e07a4e55c2</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.Composite</span></td><td><code>accbed46bade4129</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.FixedNumber</span></td><td><code>203616b315e7fcc2</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.Fraction</span></td><td><code>134b0b99c2f9c975</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.MatchingParser</span></td><td><code>22b0014672b439b7</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.NumberFormatter</span></td><td><code>90dbc44e0330536b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.PaddedNumber</span></td><td><code>bdf15b155e479f5b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.StringLiteral</span></td><td><code>7b897e25b533c2df</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.TextField</span></td><td><code>eb8625d4dc1bea12</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.TimeZoneOffset</span></td><td><code>36e22c22e7886602</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.UnpaddedNumber</span></td><td><code>a419e58389825e18</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeParserInternalParser</span></td><td><code>cfa0e2aa0d34030a</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimePrinterInternalPrinter</span></td><td><code>a6302df6894ee69b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.ISODateTimeFormat</span></td><td><code>839d6cabf97097fc</code></td></tr><tr><td><span class="el_class">org.joda.time.format.ISODateTimeFormat.Constants</span></td><td><code>976c0b8b91942414</code></td></tr><tr><td><span class="el_class">org.joda.time.format.InternalParserDateTimeParser</span></td><td><code>e0bafa5eb924137f</code></td></tr><tr><td><span class="el_class">org.joda.time.tz.FixedDateTimeZone</span></td><td><code>f2cbdfac556dc9a2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertEquals</span></td><td><code>e7a43ed17afc829d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertFalse</span></td><td><code>414d495eda26f9bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNotNull</span></td><td><code>c8b577b40eb7a898</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNull</span></td><td><code>aed7910cfcac1f0c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertThrows</span></td><td><code>23754df203701965</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertTrue</span></td><td><code>189741ff9d4e661d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertionUtils</span></td><td><code>932bf67003486569</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.Assertions</span></td><td><code>58a85bf9838e70b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator</span></td><td><code>ff38de3576197150</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.IndicativeSentences</span></td><td><code>d3479e0ffacb9f9f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.ReplaceUnderscores</span></td><td><code>9c83688ffdea180b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Simple</span></td><td><code>d01947bfadff13a2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Standard</span></td><td><code>5f69fbdb73dadd83</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.TestInstance.Lifecycle</span></td><td><code>963667ad7acf2075</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ConditionEvaluationResult</span></td><td><code>fc311dfabd3a0e23</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext</span></td><td><code>6d743ab9f0c8d392</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext.Namespace</span></td><td><code>cc164c19cc2ec84e</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.InvocationInterceptor</span></td><td><code>78636fba04d849bd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.JupiterTestEngine</span></td><td><code>011031d0b1fe58db</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.CachingJupiterConfiguration</span></td><td><code>14c3e96d913ba609</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.DefaultJupiterConfiguration</span></td><td><code>150a59979eccb4d7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.EnumConfigurationParameterConverter</span></td><td><code>433eec982a6fabbc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.InstantiatingConfigurationParameterConverter</span></td><td><code>665228d315b7ac04</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.AbstractExtensionContext</span></td><td><code>9d93b2a6a01092c9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor</span></td><td><code>49129651cf7ad1b5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassExtensionContext</span></td><td><code>67d8de68b849441a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassTestDescriptor</span></td><td><code>2f87db51b4485e07</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.DisplayNameUtils</span></td><td><code>e1e9919d0d67675d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ExtensionUtils</span></td><td><code>722183e8696c5137</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineDescriptor</span></td><td><code>6354e569d97134a9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineExtensionContext</span></td><td><code>25e568b41a4f507e</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterTestDescriptor</span></td><td><code>8af8f2d9d691826c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.LifecycleMethodUtils</span></td><td><code>6249a1cbea332afc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodBasedTestDescriptor</span></td><td><code>27c3365cc0c4e908</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodExtensionContext</span></td><td><code>0508b2e2c19f7ac3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestInstanceLifecycleUtils</span></td><td><code>a247fc379f47df66</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor</span></td><td><code>72ce602be7bfa92c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractAnnotatedDescriptorWrapper</span></td><td><code>90b10f2d90d7b01b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor</span></td><td><code>f8eb297929c247eb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor.DescriptorWrapperOrderer</span></td><td><code>c8e1585f8474ed61</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassOrderingVisitor</span></td><td><code>1f09fc1c6b9779bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassSelectorResolver</span></td><td><code>47bba3d717485ecb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DefaultClassDescriptor</span></td><td><code>9064f3528773a161</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DiscoverySelectorResolver</span></td><td><code>5dc6be896f50996f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodFinder</span></td><td><code>621c8591e557439a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodOrderingVisitor</span></td><td><code>7d9864cebac818e1</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver</span></td><td><code>a425905a414a12d5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType</span></td><td><code>f4804d6ffc25a580</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.1</span></td><td><code>aeaeeb04a7d2c1a3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.2</span></td><td><code>4f06e6c9eef38fa4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.3</span></td><td><code>e3f41424e245bd2a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsInnerClass</span></td><td><code>d746bcff9a71ec26</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsNestedTestClass</span></td><td><code>f75dfd9ee2347890</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsPotentialTestContainer</span></td><td><code>909f14a1b9fe84dc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestClassWithTests</span></td><td><code>34690a186bfcf3ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestFactoryMethod</span></td><td><code>941a8af0d47a68fd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestMethod</span></td><td><code>f2039dbd13fce110</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestTemplateMethod</span></td><td><code>c13a4260435c18a8</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestableMethod</span></td><td><code>4be487dee199f633</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConditionEvaluator</span></td><td><code>df91d94b180fe511</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConstructorInvocation</span></td><td><code>60b80968f2bdedc3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.DefaultTestInstances</span></td><td><code>0fc6d90567826bc4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExecutableInvoker</span></td><td><code>d2368ccaaa2037b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExecutableInvoker.ReflectiveInterceptorCall</span></td><td><code>84813aa1a30927b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore</span></td><td><code>e4054d96e0311350</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.CompositeKey</span></td><td><code>66813dae6cf686fe</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.MemoizingSupplier</span></td><td><code>df3ce2070a75daaf</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.StoredValue</span></td><td><code>57cb9ab75faabc0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain</span></td><td><code>9798b2a812d2015d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.InterceptedInvocation</span></td><td><code>199eef1acbe0b316</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.ValidatingInvocation</span></td><td><code>f064b1c2c4a4bf86</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext</span></td><td><code>b48cc2a96dab0116</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.Builder</span></td><td><code>d1557432e23d2776</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.State</span></td><td><code>3926323ef1c7fb03</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.MethodInvocation</span></td><td><code>8b8fd00463d994df</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.NamespaceAwareStore</span></td><td><code>c0df02c5fe61ed0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.TestInstancesProvider</span></td><td><code>357bca6226069e7b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.DisabledCondition</span></td><td><code>1604b4e34c1363e4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.ExtensionRegistry</span></td><td><code>a610f9723b95715c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.MutableExtensionRegistry</span></td><td><code>4951101173afa58b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.RepeatedTestExtension</span></td><td><code>32adc631c7f45534</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TempDirectory</span></td><td><code>55b0b3b7482f7782</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestInfoParameterResolver</span></td><td><code>3c520f8376f91ff7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestReporterParameterResolver</span></td><td><code>7187071bfc76c6ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutConfiguration</span></td><td><code>e255baf2a634c095</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutDurationParser</span></td><td><code>bb6a412c3829dae9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutExtension</span></td><td><code>e90faf479207d574</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.JupiterThrowableCollectorFactory</span></td><td><code>46546a446de4c9c0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.OpenTest4JAndJUnit4AwareThrowableCollector</span></td><td><code>e9ee7d4e1adecdd1</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try</span></td><td><code>5200e6adc191344c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try.Success</span></td><td><code>98cdc5b539e1abfd</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory</span></td><td><code>39fdfe1f67bc0eda</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory.DelegatingLogger</span></td><td><code>c71dcf008235901c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.AnnotationSupport</span></td><td><code>183c2f1d296c27a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.HierarchyTraversalMode</span></td><td><code>80fa2a13b9f5130d</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.ModifierSupport</span></td><td><code>5398073ee0b584ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.ReflectionSupport</span></td><td><code>945bcc92fedf115d</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.AnnotationUtils</span></td><td><code>192a2ed89eaed125</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassLoaderUtils</span></td><td><code>bf70ae4f9e1a53b8</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassNamePatternFilterUtils</span></td><td><code>661df78b93e45465</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassUtils</span></td><td><code>60a2276f3701443f</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClasspathScanner</span></td><td><code>54e3df9bb2092b52</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.CollectionUtils</span></td><td><code>8a03a781a6a5c2d1</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.Preconditions</span></td><td><code>c8254e72fb8d44dd</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils</span></td><td><code>9ac3110b58c001d0</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode</span></td><td><code>3125245fc9d900bc</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.StringUtils</span></td><td><code>237c0cb03ac19254</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter</span></td><td><code>6a52e5b4f7292f48</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter.1</span></td><td><code>cc0aadc5880fb4e4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener</span></td><td><code>f7640d771a4374d6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener.1</span></td><td><code>a4cdbe8dd38d8f57</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryRequest</span></td><td><code>2f8e616c1234b5ea</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener</span></td><td><code>693fee5cbd4c2df0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener.1</span></td><td><code>999902b68f81dd9a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.ExecutionRequest</span></td><td><code>f80b4e071e194cb8</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.Filter</span></td><td><code>5ffaaa90df97ca04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.FilterResult</span></td><td><code>a787a89e1f12d534</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult</span></td><td><code>b0cf35dcc829d3f4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult.Status</span></td><td><code>c505c2274f89f01d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor</span></td><td><code>aeaac58c9e7df241</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor.Type</span></td><td><code>20fe3e02963cb4b9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult</span></td><td><code>6b1b512d17bb680e</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult.Status</span></td><td><code>ad256e9fb4407e04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId</span></td><td><code>f649a106c8945a6a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId.Segment</span></td><td><code>f77d401d3f546230</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueIdFormat</span></td><td><code>6c86362ad62a1954</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.ClassSelector</span></td><td><code>a1cacad45a144508</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.DiscoverySelectors</span></td><td><code>d9d42aa13a2aea27</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.MethodSelector</span></td><td><code>69292f007e74298d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.AbstractTestDescriptor</span></td><td><code>b9c965daf4d9a476</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.ClassSource</span></td><td><code>37bd92069360f773</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.EngineDescriptor</span></td><td><code>8f2f77769ee0e9c9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.MethodSource</span></td><td><code>1d55ac49f5cabc20</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.ClassContainerSelectorResolver</span></td><td><code>dc6114dc7e983729</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution</span></td><td><code>ea497a81a10c339c</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution.DefaultContext</span></td><td><code>b39f8895aeb78b1e</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver</span></td><td><code>687cbe6b3b72b453</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.Builder</span></td><td><code>21b59a849a1e0107</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.DefaultInitializationContext</span></td><td><code>1904819635770d62</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver</span></td><td><code>8853a3b7d6531935</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match</span></td><td><code>922481c433789199</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match.Type</span></td><td><code>a62615901052f237</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Resolution</span></td><td><code>c90571b7b64f19a0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource</span></td><td><code>efa2e06c87a351c3</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource.LockMode</span></td><td><code>96e95d210b150f97</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine</span></td><td><code>5c686da27ab7f7b0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor</span></td><td><code>963cba9b029b4b19</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.LockManager</span></td><td><code>5aedd3bd3957b5a6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node</span></td><td><code>d5630bd7243c23ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node.SkipResult</span></td><td><code>5aca1404ff0f9294</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeExecutionAdvisor</span></td><td><code>7c2670c7a35cfba6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask</span></td><td><code>f652d8cc5e11bdc5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask.DefaultDynamicTestExecutor</span></td><td><code>abd00dd511d28b2f</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTaskContext</span></td><td><code>bdf88cd3834282a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTreeWalker</span></td><td><code>c689092b060d0b12</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils</span></td><td><code>a7ec8f66d373c169</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils.1</span></td><td><code>5a44a7e2cbf864b4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService</span></td><td><code>4021fb0b954634b6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SingleLock</span></td><td><code>2036ec8b92a38105</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ThrowableCollector</span></td><td><code>6fd7a27676be3c50</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestIdentifier</span></td><td><code>225bb434f8f223e2</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestPlan</span></td><td><code>9a2b71b572924cbc</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultDiscoveryRequest</span></td><td><code>7dda3ad9a0e6a666</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncher</span></td><td><code>9f3466cbe6d5a584</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherConfig</span></td><td><code>a355b55f1fea9e21</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineDiscoveryResultValidator</span></td><td><code>93df7a3977833cf5</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ExecutionListenerAdapter</span></td><td><code>52cf3c3c69d4dfba</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig</span></td><td><code>b3c713ac595fde03</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig.Builder</span></td><td><code>a17564c5b87448a3</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters</span></td><td><code>ef55cacb5e47a902</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder</span></td><td><code>e78a71b91c159e69</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherFactory</span></td><td><code>766208a42b7391ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.Root</span></td><td><code>32394ca895f9fb9a</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry</span></td><td><code>7c054c4cf76cb0f6</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderTestExecutionListenerRegistry</span></td><td><code>2299bac1075a6bf3</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.StreamInterceptingTestExecutionListener</span></td><td><code>3a1f3bd6b32f854b</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.TestExecutionListenerRegistry</span></td><td><code>2549306f9f4bc4a7</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.TestExecutionListenerRegistry.CompositeTestExecutionListener</span></td><td><code>54c88d30baf04181</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.LegacyReportingUtils</span></td><td><code>9dc21fd2f024a158</code></td></tr><tr><td><span class="el_class">org.mockito.Answers</span></td><td><code>7bb49d321e73bbc5</code></td></tr><tr><td><span class="el_class">org.mockito.ArgumentMatchers</span></td><td><code>09d65d5d1d4b1daf</code></td></tr><tr><td><span class="el_class">org.mockito.Mockito</span></td><td><code>bd9c62077a639c72</code></td></tr><tr><td><span class="el_class">org.mockito.MockitoAnnotations</span></td><td><code>4e582471d227b01d</code></td></tr><tr><td><span class="el_class">org.mockito.configuration.DefaultMockitoConfiguration</span></td><td><code>7c1c365c15c2133e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.MockitoCore</span></td><td><code>402eae6f392115ba</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.CaptorAnnotationProcessor</span></td><td><code>b1d3667699da5bde</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.ClassPathLoader</span></td><td><code>1837784d8946effa</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.DefaultDoNotMockEnforcer</span></td><td><code>c193dbfbfd7e7112</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.DefaultInjectionEngine</span></td><td><code>9d4f4284084eab52</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.GlobalConfiguration</span></td><td><code>cee487af60df9de4</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.IndependentAnnotationEngine</span></td><td><code>6712157121b4c009</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.IndependentAnnotationEngine.1</span></td><td><code>0c571489b6a84e81</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.InjectingAnnotationEngine</span></td><td><code>093bcb2236e9e096</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.MockAnnotationProcessor</span></td><td><code>c227d08ff7d98a5c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.SpyAnnotationEngine</span></td><td><code>0e1046ea3cb07962</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.ConstructorInjection</span></td><td><code>a2e0cfed216ffbf1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjection</span></td><td><code>41ad05a9cf251c66</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjection.OngoingMockInjection</span></td><td><code>4c9b53365f5f9c2a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjectionStrategy</span></td><td><code>cd40af08f6405c20</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjectionStrategy.1</span></td><td><code>c6860b7b40dd6139</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.PropertyAndSetterInjection</span></td><td><code>93b665d792e25fd6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.SpyOnInjectedFieldsHandler</span></td><td><code>6f93949c7ad54b5c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.NameBasedCandidateFilter</span></td><td><code>cbf3f2390a7a068c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.TerminalMockCandidateFilter</span></td><td><code>80b5d7c476edad41</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.TypeBasedCandidateFilter</span></td><td><code>bb38595e57e057ee</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.scanner.InjectMocksScanner</span></td><td><code>1b7ab81c25844e8f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.scanner.MockScanner</span></td><td><code>3b1d7ca146e28785</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.DefaultMockitoPlugins</span></td><td><code>a3d514713c9235ca</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.DefaultPluginSwitch</span></td><td><code>973f142b836667e1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginFileReader</span></td><td><code>1c7aa64a5a5a162d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginFinder</span></td><td><code>d946fdf7c3f2c58b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginInitializer</span></td><td><code>172e9a5c046703bf</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginLoader</span></td><td><code>2d00b0c8836bfc7a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginRegistry</span></td><td><code>7c6b38725ad08380</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.Plugins</span></td><td><code>ff53f63a8240eb6e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.DelegatingMethod</span></td><td><code>7ea1353e5c77b5f3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.MockSettingsImpl</span></td><td><code>73433353e7684171</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.SuspendMethod</span></td><td><code>dc8e823dfe533d87</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ByteBuddyCrossClassLoaderSerializationSupport</span></td><td><code>91ac516637b8c4ee</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.BytecodeGenerator</span></td><td><code>896014d879c42ec9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineByteBuddyMockMaker</span></td><td><code>cba288e9eafa167f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator</span></td><td><code>6e93dbf821b9a251</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper</span></td><td><code>278db3d9ba946d37</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper.MethodParameterStrippingMethodVisitor</span></td><td><code>3def62f49dd7789f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper.ParameterAddingClassVisitor</span></td><td><code>39cd81af1cdb0636</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineDelegateByteBuddyMockMaker</span></td><td><code>4ca287b5c381ce53</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineDelegateByteBuddyMockMaker.1</span></td><td><code>ce01c3a23b0fe624</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockFeatures</span></td><td><code>161a6ae9389d4da3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice</span></td><td><code>2e6cf306dbc068b8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ConstructorShortcut</span></td><td><code>f3a070431524d642</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ConstructorShortcut.1</span></td><td><code>6d5acc901df77be9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.RealMethodCall</span></td><td><code>2de7cf23de0250f8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ReturnValueWrapper</span></td><td><code>884b8fb93961f044</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.SelfCallInfo</span></td><td><code>f7e9c35073684234</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodInterceptor</span></td><td><code>d185526feefc5f6b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ModuleHandler</span></td><td><code>77380dd282d3eb30</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ModuleHandler.ModuleSystemFound</span></td><td><code>d8515816e294707d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassBytecodeGenerator</span></td><td><code>94fd428955a86efe</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassInjectionLoader</span></td><td><code>47ea8dba5b15c796</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassInjectionLoader.WithReflection</span></td><td><code>55a84d6cf8f318a1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeCachingBytecodeGenerator</span></td><td><code>123a98feabc81a7a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeCachingBytecodeGenerator.MockitoMockKey</span></td><td><code>8fb34c2e10b7db99</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeSupport</span></td><td><code>652949fe1e4bb215</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.instance.DefaultInstantiatorProvider</span></td><td><code>3900ee0969504a34</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.instance.ObjenesisInstantiator</span></td><td><code>e451a21eadbc4d30</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.settings.CreationSettings</span></td><td><code>417c97a74f5fad25</code></td></tr><tr><td><span class="el_class">org.mockito.internal.debugging.Localized</span></td><td><code>3453e26ea406565f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.debugging.LocationImpl</span></td><td><code>b13b42f8f18069c1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.DefaultStackTraceCleaner</span></td><td><code>0be2358e0d7b7d96</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.DefaultStackTraceCleanerProvider</span></td><td><code>475c82ec8ba01c75</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.StackTraceFilter</span></td><td><code>3df073dc72decbe3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.InvocationNotifierHandler</span></td><td><code>7c138f78143ab433</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.MockHandlerFactory</span></td><td><code>236482acbbebaf4a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.MockHandlerImpl</span></td><td><code>e538c869e7bfe6c6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.NotifiedMethodInvocationReport</span></td><td><code>77e24bcf370dbd35</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.NullResultGuardian</span></td><td><code>40a1d637e9eadd05</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.ArgumentsProcessor</span></td><td><code>d50039fd637b3496</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.DefaultInvocationFactory</span></td><td><code>fa6c69aea1733666</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InterceptedInvocation</span></td><td><code>40a1bce4be9e6523</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InterceptedInvocation.1</span></td><td><code>1a1152b98b0c7d86</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMarker</span></td><td><code>f84ab0aa4401f5c6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMatcher</span></td><td><code>0f3f05080ade9bf3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMatcher.1</span></td><td><code>80b88eded9ee9335</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationsFinder</span></td><td><code>fb5d2489463954fb</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatcherApplicationStrategy</span></td><td><code>61ba3ebb5e5c5981</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatcherApplicationStrategy.MatcherApplicationType</span></td><td><code>338c14ae51b8af66</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatchersBinder</span></td><td><code>b39b9426c9814ac7</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.TypeSafeMatching</span></td><td><code>0523de66dbdeab05</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.mockref.MockWeakReference</span></td><td><code>ac456a2a5b693d6e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.listeners.StubbingLookupNotifier</span></td><td><code>6b94cdf6e74e7282</code></td></tr><tr><td><span class="el_class">org.mockito.internal.listeners.VerificationStartedNotifier</span></td><td><code>b5b225637c7897a9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.Any</span></td><td><code>0ef740a4f4344abc</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.Equals</span></td><td><code>1bb4b6d86ac8a29b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.LocalizedMatcher</span></td><td><code>23d1d86d4409a5f9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ArgumentMatcherStorageImpl</span></td><td><code>83a3e5fcf460cd8d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.MockingProgressImpl</span></td><td><code>f0bb250cbbac6b8b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.MockingProgressImpl.1</span></td><td><code>a1ad00aef40918d3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.SequenceNumber</span></td><td><code>fd2449d941ed721b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ThreadSafeMockingProgress</span></td><td><code>5ef9d6f1a875dc18</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ThreadSafeMockingProgress.1</span></td><td><code>1c85bd989b9441aa</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.BaseStubbing</span></td><td><code>0fd68c747fb3e1ac</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.DoAnswerStyleStubbing</span></td><td><code>f2057cd0aee1a50b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.InvocationContainerImpl</span></td><td><code>c16048ff1c19fd3e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.OngoingStubbingImpl</span></td><td><code>646db189ef95b765</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.CallsRealMethods</span></td><td><code>16da2f316c946fec</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.DefaultAnswerValidator</span></td><td><code>de0c324c57207f3c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.InvocationInfo</span></td><td><code>558393abbeee5acd</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.GloballyConfiguredAnswer</span></td><td><code>f308e3faf16f6212</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsDeepStubs</span></td><td><code>0ba1eff301842cf2</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsEmptyValues</span></td><td><code>fb54ce54650adcb6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsMocks</span></td><td><code>f72b0e3d274c564c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsMoreEmptyValues</span></td><td><code>4a4f9f45d874e56f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsSmartNulls</span></td><td><code>8920a999612923c9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.TriesToReturnSelf</span></td><td><code>b9eec415ba57796d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.Checks</span></td><td><code>c6a1d20be0e11d77</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.ConsoleMockitoLogger</span></td><td><code>b50468c7ba4abdba</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.DefaultMockingDetails</span></td><td><code>eb4060f4b147ea49</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockCreationValidator</span></td><td><code>e30e40e6aabce2d8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockNameImpl</span></td><td><code>c374206ea5426e18</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockUtil</span></td><td><code>22b633290ad851ce</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.ObjectMethodsGuru</span></td><td><code>2e0e0e3f520fd2eb</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.Primitives</span></td><td><code>3126a7777504288b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.StringUtil</span></td><td><code>fc180f2e2cfb19c5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsMockWrapper</span></td><td><code>2ddb4b6df187f1be</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsSafeSet</span></td><td><code>f13e3c60a5f3dac1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsSafeSet.1</span></td><td><code>04a9da11a07d7dbd</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.Iterables</span></td><td><code>f2f271f84160edef</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.Sets</span></td><td><code>ba0259dd5d0f4cdf</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal</span></td><td><code>a9d73ba77d913255</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.2</span></td><td><code>a27d6b80a8d8bf8e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.3</span></td><td><code>7dd9cb94952e0870</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.Cleaner</span></td><td><code>a2ff4aab71c0d490</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap</span></td><td><code>d8c9ef1cdcd399b1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.LatentKey</span></td><td><code>f3c567dfe6ce1b23</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.WeakKey</span></td><td><code>b4650d7e8c02ff74</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.WithInlinedExpunction</span></td><td><code>08bb38228585b485</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet</span></td><td><code>a3ede170dca14bf5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet.1</span></td><td><code>d59e6e47b1f360e5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet.Cleaner</span></td><td><code>ffe9c1e341be01e5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.io.IOUtil</span></td><td><code>dd048f2a9c401164</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.FieldReader</span></td><td><code>adeb073a2d5e6410</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.InstrumentationMemberAccessor</span></td><td><code>c76a00a7d336ca40</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.ModuleMemberAccessor</span></td><td><code>137604b9ad99ea8a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.DefaultRegisteredInvocations</span></td><td><code>2c81cbe8de7c014f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.MockAwareVerificationMode</span></td><td><code>7d19b8cd6993b835</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.Times</span></td><td><code>4aa9f1560e0ec411</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationDataImpl</span></td><td><code>c16c5da13b7fc7f1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationEventImpl</span></td><td><code>4f05d64f894ba8bc</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationModeFactory</span></td><td><code>1ca686294e0a83db</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.checkers.MissingInvocationChecker</span></td><td><code>dfc0bf910d6f5cc6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.checkers.NumberOfInvocationsChecker</span></td><td><code>e5dd03036a7ede01</code></td></tr><tr><td><span class="el_class">org.mockito.mock.SerializableMode</span></td><td><code>35d1981ec862bf72</code></td></tr><tr><td><span class="el_class">org.mockito.plugins.AnnotationEngine.NoAction</span></td><td><code>cb985c28ad2cce16</code></td></tr><tr><td><span class="el_class">org.modelmapper.AbstractConverter</span></td><td><code>54a41831c2187d2d</code></td></tr><tr><td><span class="el_class">org.modelmapper.ModelMapper</span></td><td><code>43321fd2b7cbee6d</code></td></tr><tr><td><span class="el_class">org.modelmapper.config.Configuration.AccessLevel</span></td><td><code>bc26ac8ce6766541</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher</span></td><td><code>a53cea4536278e98</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.DestTokensMatcher</span></td><td><code>a14ca205c451ffdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.StringIterator</span></td><td><code>acdb16860c413ef4</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.TokensIterator</span></td><td><code>82b619dd04618807</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.LooseMatchingStrategy</span></td><td><code>aa78a0af3e3c0f55</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.MatchingStrategies</span></td><td><code>8e9684a9fc9b8071</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers</span></td><td><code>2028a55f02d3ae9f</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers.CamelCaseNameTokenizer</span></td><td><code>6114cf2b3ddfae6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers.UnderscoreNameTokenizer</span></td><td><code>b5d5be6b8138612c</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers</span></td><td><code>f72ede052f2515b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers.1</span></td><td><code>48158ad88a1cf152</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers.2</span></td><td><code>504dc70a74b2839d</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions</span></td><td><code>05d1c9525fb6d1fa</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.1</span></td><td><code>d6fe49f3f9213c2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.2</span></td><td><code>ea198cacd03e8abb</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.3</span></td><td><code>0826c2d7d9434306</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StandardMatchingStrategy</span></td><td><code>1fa76799644912ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StandardMatchingStrategy.Matcher</span></td><td><code>e82c2a0bbdd4f933</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StrictMatchingStrategy</span></td><td><code>6ab4d827ddc9ea74</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ConfigurableConditionExpressionImpl</span></td><td><code>70232be1e3249c7c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors</span></td><td><code>7f235eba08e66c95</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.1</span></td><td><code>4f3cf785db948880</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.2</span></td><td><code>19b4fbcfc2fc2ab2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.3</span></td><td><code>e85e043c95825482</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.4</span></td><td><code>745739f13993d8be</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.Converter</span></td><td><code>32d7f94cf1b5075f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ExplicitMappingBuilder.MappingOptions</span></td><td><code>c1080aa2085e3f2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder</span></td><td><code>56632f320446ff15</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.DestTokenIterator</span></td><td><code>0eb26fa8e54b6e69</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.SourceTokensMatcher</span></td><td><code>f160c7f2f7b1cca1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.WeightPropertyMappingImpl</span></td><td><code>9e92ce1acaa7c1e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.InheritingConfiguration</span></td><td><code>1127edf2e2d9e15a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.MappingEngineImpl</span></td><td><code>92576e9a546b116d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.MappingImpl</span></td><td><code>c326c78f2c3c8670</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Pair</span></td><td><code>e61dbaa420a99298</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl</span></td><td><code>a53bff55bc6c3ab6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.AbstractMethodInfo</span></td><td><code>c5bda1197c5eb460</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.MethodAccessor</span></td><td><code>0290dd0c178d1825</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.MethodMutator</span></td><td><code>09ccbb8a4d1bac35</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoRegistry</span></td><td><code>12e8a563b5f964ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoRegistry.PropertyInfoKey</span></td><td><code>14277812f397e435</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver</span></td><td><code>51587c52ade9a4d9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.1</span></td><td><code>9d51a010a2d88b02</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.2</span></td><td><code>e92e8aa76cc7defa</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.3</span></td><td><code>2c9cd3796f0230f4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.DefaultPropertyResolver</span></td><td><code>2429e85b2fa05890</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver</span></td><td><code>9d11613eb9974adf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver.1</span></td><td><code>91664953b64f8944</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver.ResolveRequest</span></td><td><code>3e9f7ad9ab256c3b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyMappingImpl</span></td><td><code>7bd5372edee76274</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyNameInfoImpl</span></td><td><code>af06ff3ed5fba1c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector</span></td><td><code>462925734cac7ce0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector.DestinationInterceptor</span></td><td><code>981d2ddeac4d3795</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector.SourceInterceptor</span></td><td><code>37f5256495955251</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ProxyFactory</span></td><td><code>10bdf0bc6465e09b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ReferenceMapExpressionImpl</span></td><td><code>81ddcd28d49f955f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoImpl</span></td><td><code>56f942290a744187</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoRegistry</span></td><td><code>1d76af7c2e988b48</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoRegistry.TypeInfoKey</span></td><td><code>3967d092c15e2d2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl</span></td><td><code>412f688995b88d27</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.PathProperties</span></td><td><code>c173dcdb218aa282</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.PathProperty</span></td><td><code>d9783ee39b654004</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.Property</span></td><td><code>1705e4e88b89c67e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapStore</span></td><td><code>792acaaa15e25901</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypePair</span></td><td><code>74c8f803f89281ed</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeResolvingList</span></td><td><code>37326cb6912004e1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.AnnotationWriter</span></td><td><code>b00d19ab1b0f5777</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Attribute</span></td><td><code>d8156d56ef7277ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ByteVector</span></td><td><code>0bdb2054c0030d50</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ClassVisitor</span></td><td><code>7ba7b61d4dd4e9d8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ClassWriter</span></td><td><code>64d2ef772a5468e1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.FieldVisitor</span></td><td><code>dfa1c4ec138e2f82</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.FieldWriter</span></td><td><code>77b43de1c9d1e4eb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Handler</span></td><td><code>03a2093dd943e2fd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.MethodVisitor</span></td><td><code>174eb439999427b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.MethodWriter</span></td><td><code>bd8858b10c0e8d6c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Symbol</span></td><td><code>c96f206f91fefc9e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.SymbolTable</span></td><td><code>5087b58210933ea9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.SymbolTable.Entry</span></td><td><code>88d883b0bff633c3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Type</span></td><td><code>538236d0700a9e2a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.TypeReference</span></td><td><code>9fa711b172748e00</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.signature.SignatureVisitor</span></td><td><code>d9807a585c6997f0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.signature.SignatureWriter</span></td><td><code>b2175805563611e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ByteBuddy</span></td><td><code>0b6412866086f3f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion</span></td><td><code>39c2a626cfc09ff1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion.VersionLocator.Resolved</span></td><td><code>3b593902f9ff8bf2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion.VersionLocator.Resolver</span></td><td><code>7abac68cb82dac09</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.AbstractBase</span></td><td><code>4a1f4d6aedb52151</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.Suffixing</span></td><td><code>fae0e47f9ea54526</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType</span></td><td><code>be5e642e5a9c44df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.SuffixingRandom</span></td><td><code>a5b86870b502c795</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.asm.AsmVisitorWrapper.NoOp</span></td><td><code>919f93dc2c7a2bdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.ByteCodeElement.Token.TokenList</span></td><td><code>5d9c641fd2dc9c81</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.ModifierReviewable.AbstractBase</span></td><td><code>6140190e67a30942</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.NamedElement.WithDescriptor</span></td><td><code>2175203ff90e4e01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.TypeVariableSource.AbstractBase</span></td><td><code>b59bdc652cd2e97b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationDescription.AbstractBase</span></td><td><code>820ad2576b08cef6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationDescription.ForLoadedAnnotation</span></td><td><code>8a59ef7c20555bff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.AbstractBase</span></td><td><code>c904e933e07079bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.Empty</span></td><td><code>363155b6e3f39d19</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.Explicit</span></td><td><code>bd951c4232720951</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.ForLoadedAnnotations</span></td><td><code>51b186ce0bab6bbc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationSource.Empty</span></td><td><code>479cca50794a244b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationValue</span></td><td><code>5cca5fe914567e5c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription</span></td><td><code>40fecc183b380e6a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.AbstractBase</span></td><td><code>cdddf40daf074f56</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.InDefinedShape.AbstractBase</span></td><td><code>42f2fc4ab80e3638</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.Latent</span></td><td><code>00666c4a9a1aabe5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.SignatureToken</span></td><td><code>538b8e9e81c3de41</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.Token</span></td><td><code>c95ff0dd57bd53d3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldList.AbstractBase</span></td><td><code>2c1a70f4f0a60221</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldList.ForTokens</span></td><td><code>f2c0df46899dde72</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription</span></td><td><code>9006e7519ebcd8df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.AbstractBase</span></td><td><code>155fd55beda3a4d0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.ForLoadedConstructor</span></td><td><code>9b292131585c9a7c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.ForLoadedMethod</span></td><td><code>5e2394e96e8915bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase</span></td><td><code>6206a53325a72f4e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase.ForLoadedExecutable</span></td><td><code>344bd86c8b51fe6c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Latent</span></td><td><code>b3f339a70bad5ecf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Latent.TypeInitializer</span></td><td><code>f03017ec6bd43b0d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.SignatureToken</span></td><td><code>1bedffcea14132ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Token</span></td><td><code>33978c9b3db3cea0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.TypeSubstituting</span></td><td><code>3075c88265358f70</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.TypeToken</span></td><td><code>129b6af41c198ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.AbstractBase</span></td><td><code>d334684d92b8066c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.Explicit</span></td><td><code>43fe05bdec4adb18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.ForLoadedMethods</span></td><td><code>f437bec95bdc1e01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.ForTokens</span></td><td><code>30c9731dd4ea41f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.TypeSubstituting</span></td><td><code>19388f0772372046</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.AbstractBase</span></td><td><code>82163b59dbd04120</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter</span></td><td><code>015b6b5e30e28395</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfConstructor</span></td><td><code>3d841d174313be09</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfMethod</span></td><td><code>00f0163151439a69</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.InDefinedShape.AbstractBase</span></td><td><code>334461156858fabf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.Latent</span></td><td><code>480c8e1dd228b4c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.Token</span></td><td><code>798e97b3b90ad2bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.TypeSubstituting</span></td><td><code>f2c791b64d2efeb4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.AbstractBase</span></td><td><code>9ad50b6300fe78bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.Empty</span></td><td><code>588d6f547e513e64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable</span></td><td><code>808f13e5056fafdb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfConstructor</span></td><td><code>8561af49d8666914</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfMethod</span></td><td><code>29c51214c1be8969</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForTokens</span></td><td><code>483e3f52e29aebea</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.TypeSubstituting</span></td><td><code>9435ecc275ab0713</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.ModifierContributor.Resolver</span></td><td><code>3cf15614001dd544</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.TypeManifestation</span></td><td><code>164a189cf661635b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.Visibility</span></td><td><code>34fd43395b07df1c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.Visibility.1</span></td><td><code>87386e5770669ad8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.AbstractBase</span></td><td><code>85022d5d5a96bac2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.ForLoadedPackage</span></td><td><code>b6f837f548427bc4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.Simple</span></td><td><code>f1eff95b0fe97384</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.RecordComponentList.AbstractBase</span></td><td><code>566ce6fe60beb898</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.RecordComponentList.ForTokens</span></td><td><code>f7814bebfa5efdb1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDefinition.Sort</span></td><td><code>819d929dfa7ac6d0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription</span></td><td><code>ae7f0f0ca93a442b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.AbstractBase</span></td><td><code>157bbd6c92a95990</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.AbstractBase.OfSimpleType</span></td><td><code>8e936b4939ee98bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.ForLoadedType</span></td><td><code>14395905e38e6a51</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic</span></td><td><code>f7c01138b383de66</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AbstractBase</span></td><td><code>f80f36ba94358a0e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator</span></td><td><code>060c2bf377215df1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Chained</span></td><td><code>5b59dd6200291ad3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableExceptionType</span></td><td><code>c92812817d6dd66e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableParameterType</span></td><td><code>2c1437a6c3ed68fd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedInterface</span></td><td><code>2d610350c2d28a99</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedMethodReturnType</span></td><td><code>c5f9db625ae27882</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedSuperClass</span></td><td><code>dbcdc6163a5a41a5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeArgument</span></td><td><code>5691bed1251a0740</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForWildcardUpperBoundType</span></td><td><code>968f03c0134ad4ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.NoOp</span></td><td><code>1731c39d0a5d939e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection</span></td><td><code>798eb98f7429c121</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedReturnType</span></td><td><code>bb6c3bebb2aa7cb9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedSuperClass</span></td><td><code>64179c0ed8a10a4b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfConstructorParameter</span></td><td><code>c018d350f401eb96</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfMethodParameter</span></td><td><code>7473212b1b66b7e3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation</span></td><td><code>72ec2236bd70ff81</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation.OfAnnotatedElement</span></td><td><code>b13abff04a413cb0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation</span></td><td><code>cdda23bbd2c7ba63</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation.OfAnnotatedElement</span></td><td><code>b8500b6e26ada2dc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithResolvedErasure</span></td><td><code>7daec73a432f59d9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType</span></td><td><code>7632c49db4b3cb18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForErasure</span></td><td><code>4fd80467aad22e37</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForLoadedType</span></td><td><code>23175236249841d1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType</span></td><td><code>d794e834544758c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForGenerifiedErasure</span></td><td><code>98a7e4bd3ed5d710</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType</span></td><td><code>2c28b6254eb04409</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType.ParameterArgumentTypeList</span></td><td><code>b3a47bb50ca2f0bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType</span></td><td><code>7404631780df1a64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType</span></td><td><code>9222ebef3377427b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardLowerBoundTypeList</span></td><td><code>340f692a52e3f0a8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardUpperBoundTypeList</span></td><td><code>5808a13856a9b29c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForRawType</span></td><td><code>acc7814c99135601</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor</span></td><td><code>fc030332dd60eeb7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument</span></td><td><code>c995523583d71b39</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying</span></td><td><code>738e32ac114c3578</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.1</span></td><td><code>6d4851b88b8f5c6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.2</span></td><td><code>21322b1e454cb57d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor</span></td><td><code>2c55f713a28c7937</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForAttachment</span></td><td><code>86ba76709918357a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForDetachment</span></td><td><code>6ed1f77db3efd460</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator</span></td><td><code>03c95528325e1982</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.1</span></td><td><code>15fbb65a5a33596a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.2</span></td><td><code>bfaf29f443a4ae2e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.3</span></td><td><code>cfd1dd9b0f8a2a47</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.ForTypeAnnotations</span></td><td><code>8e38072b4af96b7f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Latent</span></td><td><code>ced0e4fc8902b4a0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList</span></td><td><code>3bc3c37310de2448</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.AbstractBase</span></td><td><code>5a6e010bdabc476b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Empty</span></td><td><code>bea7329dcf5c869d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Explicit</span></td><td><code>b744e07d6f89b7c3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.ForLoadedTypes</span></td><td><code>3af2b321e213dc5d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.AbstractBase</span></td><td><code>63309fbe86cc9e92</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.Empty</span></td><td><code>f275978e584ae54f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.Explicit</span></td><td><code>927b18392a653370</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes</span></td><td><code>b94779df6db659cc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables</span></td><td><code>9bfda16975f5eb16</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.WithResolvedErasure</span></td><td><code>947dcc7fba048024</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes</span></td><td><code>335d08d8bf5da82c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes.OfTypeVariables</span></td><td><code>013737856c70f366</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfConstructorExceptionTypes</span></td><td><code>be60842984533ef6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes</span></td><td><code>660134991291b4af</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes.TypeProjection</span></td><td><code>489bf58b3603e6fb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes</span></td><td><code>202bc2fdbefc6057</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes.TypeProjection</span></td><td><code>27491bc9b8d8e730</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase</span></td><td><code>85b32e4013c977a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter</span></td><td><code>df078118a2a5f417</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter</span></td><td><code>594b57e9531624e0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter.AnnotationAdapter</span></td><td><code>c4ecec4c7a75d889</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Delegator</span></td><td><code>c045a392eb5d0809</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase</span></td><td><code>d726a10554247643</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase.Adapter</span></td><td><code>79d012e8272d51cb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ImplementationDefinition.AbstractBase</span></td><td><code>28296f2925418254</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ReceiverTypeDefinition.AbstractBase</span></td><td><code>cb62692fefd4a3ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default</span></td><td><code>04893d575b765044</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default.Loaded</span></td><td><code>228383be4ae4ea5a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default.Unloaded</span></td><td><code>d6d98f5be9a78daf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.TargetType</span></td><td><code>b082b35421258b13</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.Transformer.NoOp</span></td><td><code>eb7ed53d59a2b9da</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.TypeResolutionStrategy.Passive</span></td><td><code>a97129420c1200fc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default</span></td><td><code>d720508ed9466a6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.1</span></td><td><code>8490d50b829a0487</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.2</span></td><td><code>612bcfc8d2dec5dd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.3</span></td><td><code>c93ae196a334525b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassInjector.AbstractBase</span></td><td><code>7bbf62a2d7dcffcb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassInjector.UsingLookup</span></td><td><code>d724309322a6b66f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassLoadingStrategy</span></td><td><code>973faa6af54794e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassLoadingStrategy.UsingLookup</span></td><td><code>a1e2678099214597</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default</span></td><td><code>66f85c15b5aff62b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.1</span></td><td><code>ba54ed6042fcf6f5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.2</span></td><td><code>98a324d9d81605ce</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.FrameComputingClassWriter</span></td><td><code>8d7fb5212df90cf4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.FieldRegistry.Default</span></td><td><code>871865af08e9d847</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled</span></td><td><code>7e4e17379acfdcf6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Default</span></td><td><code>cdf64ac0da1e3692</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default</span></td><td><code>708b2aaab2eb369e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.1</span></td><td><code>375f6583ac999ded</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.2</span></td><td><code>1a3ac6c96fe07abf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler</span></td><td><code>e62e65c4ccc09e94</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.AbstractBase</span></td><td><code>a215be43b057c500</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default</span></td><td><code>b790384ed14e3cee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod</span></td><td><code>df6f57e760cbb6ee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod.Token</span></td><td><code>9938aa35a5e5508c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key</span></td><td><code>966af051a46bd586</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Detached</span></td><td><code>d503add1e4f22fa9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Harmonized</span></td><td><code>bb31c389e46ce7e7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store</span></td><td><code>ccdbf5ecfb6124c0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Initial</span></td><td><code>7da8bb7edfc7d895</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved</span></td><td><code>08cb390b95f4d2b8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node</span></td><td><code>1d3b7c27a4760d8b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Graph</span></td><td><code>3b06c4a1d7f40031</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Merger.Directional</span></td><td><code>d4301de9b5db9763</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Linked.Delegation</span></td><td><code>efcdc1fd62919a12</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Node.Sort</span></td><td><code>65e23550e36817be</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.NodeList</span></td><td><code>85209ed477d5af18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default</span></td><td><code>a6cbdf977539294b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled</span></td><td><code>df426aa97307f44f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled.Entry</span></td><td><code>3edad35ca26addcf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Entry</span></td><td><code>56ec365957dc5628</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared</span></td><td><code>3066bf8e54756aa6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared.Entry</span></td><td><code>2376fd3a44aa360b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation</span></td><td><code>266090dae5175a22</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation.Compiled</span></td><td><code>f222709a51067789</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default</span></td><td><code>dfb561ffe5ba504b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default.Compiled</span></td><td><code>40b559012dfe3630</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.Drain.Default</span></td><td><code>a7faa95c2bcff365</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.None</span></td><td><code>e7faad866de070ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.Simple</span></td><td><code>ede23c299553f98f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeValidation</span></td><td><code>e5658f07d05b749a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default</span></td><td><code>85f92ab2d2536fd7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ClassDumpAction.Dispatcher.Disabled</span></td><td><code>6b2dbbd9c63112f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForCreation</span></td><td><code>2c6d2528082988df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.UnresolvedType</span></td><td><code>f8591b912d6ea7ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor</span></td><td><code>76ad6e6a443408e2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.Compound</span></td><td><code>b0717e19bb21a58e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClass</span></td><td><code>855d8a36b191c96d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClassFileVersion</span></td><td><code>50722e37d2eb32e2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingFieldVisitor</span></td><td><code>788ac31531f490bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingMethodVisitor</span></td><td><code>342f780bbfec3168</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForImplicitField</span></td><td><code>abf427c6ab2e9ee0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.AccessBridgeWrapper</span></td><td><code>3a6d26554d93423c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod</span></td><td><code>7d1f0ddec5104901</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod.WithBody</span></td><td><code>4e46fbb9520781ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForNonImplementedMethod</span></td><td><code>e844ad29fdfe843e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.Sort</span></td><td><code>b0334abbd56de846</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default</span></td><td><code>7be695ea08608488</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.1</span></td><td><code>eac29802245e4304</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.2</span></td><td><code>61d175698f052767</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.3</span></td><td><code>832144ed4f128683</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.4</span></td><td><code>8a7b0898510a0472</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.5</span></td><td><code>ca2e4f200d7339ab</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder</span></td><td><code>e8b940d1f3ef8b12</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.InstrumentableMatcher</span></td><td><code>9f27fd39bef8957c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget</span></td><td><code>b5d63841f3fd2f66</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.Factory</span></td><td><code>4db0c12c78570762</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver</span></td><td><code>f4f801a78fcc8c04</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.1</span></td><td><code>61158d542d38b55f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.2</span></td><td><code>eeead4f1774cb3cc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default</span></td><td><code>c52394f2b642798e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.CacheValueField</span></td><td><code>6dbbc013587d12a8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.Factory</span></td><td><code>d3cb95b94e402857</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.FieldCacheEntry</span></td><td><code>17e90ad966aad40a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.ExtractableView.AbstractBase</span></td><td><code>cbfe80dca6744b29</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.SpecialMethodInvocation.AbstractBase</span></td><td><code>2d1c4d470e6ddb7e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Simple</span></td><td><code>35471ada9369160f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase</span></td><td><code>b65e1cb6fb25b4ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation</span></td><td><code>40db7d5210456ae5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.1</span></td><td><code>7c457c813de6d41d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.2</span></td><td><code>5cbf15c4d197ac7f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter</span></td><td><code>a51f1af68f6254b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter.ForInstance</span></td><td><code>d9324843fa71c2b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter.ForInstance.Appender</span></td><td><code>2d2bcd91c5f3c82c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.Compound</span></td><td><code>4ad0af187973602b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.ForStaticField</span></td><td><code>da400ad39e2dcda1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.NoOp</span></td><td><code>16a134163a526430</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall</span></td><td><code>b090138b3cf8c4a1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender</span></td><td><code>07da0ee1b62cb5bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler</span></td><td><code>0171719fef8e8351</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.1</span></td><td><code>76fd27a4952ff422</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.2</span></td><td><code>203799d548c306e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Default</span></td><td><code>1969418473e0c3a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.ForTypeAnnotations</span></td><td><code>e1a1ac6f19e60f64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnField</span></td><td><code>5620092070509b20</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnType</span></td><td><code>36acc43238ad17e9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationRetention</span></td><td><code>1bda36dd12fa69bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default</span></td><td><code>cd6c4d935a00da0d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.1</span></td><td><code>1bc954c5e317614e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.2</span></td><td><code>73795f494fb3a41c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.FieldAttributeAppender.ForInstrumentedField</span></td><td><code>590347c2c77eabdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.MethodAttributeAppender.NoOp</span></td><td><code>86485d8464746991</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType</span></td><td><code>feac84b744bec524</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom</span></td><td><code>d48fc4bf0f1ce62d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Compound</span></td><td><code>09a3ac3220b48442</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Simple</span></td><td><code>8ace03e1d70090b6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Size</span></td><td><code>cd04b0151f40977d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal</span></td><td><code>efc293746f65a2f7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal.1</span></td><td><code>b75aedff0e27bd93</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal.2</span></td><td><code>a42468e531ae63b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase</span></td><td><code>34fa90365d45d484</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Compound</span></td><td><code>33ba1352da02c5c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Size</span></td><td><code>7d3fba41d71decbe</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Trivial</span></td><td><code>3324c59de75d5317</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackSize</span></td><td><code>8e86dd588fdc1f80</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.Assigner</span></td><td><code>f1284351f121fb33</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.Assigner.Typing</span></td><td><code>7154d580f26cc34f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.TypeCasting</span></td><td><code>001bd40528bd9197</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveTypeAwareAssigner</span></td><td><code>936def03137426a9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate</span></td><td><code>f4f22d3d6e57b02f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate.ImplicitlyTypedUnboxingResponsible</span></td><td><code>b553960e8d5ce2c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner</span></td><td><code>45f8be2b413b1649</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.reference.GenericTypeAwareAssigner</span></td><td><code>0f1c534bcf71c63e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.reference.ReferenceTypeAwareAssigner</span></td><td><code>014f86a6b34449a9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory</span></td><td><code>f1b7835d7afb40f4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator</span></td><td><code>7fcbf28d332de9ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator.ForReferenceType</span></td><td><code>43b8a3214c3cdd01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayStackManipulation</span></td><td><code>b31b2b34f956ccdf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.ClassConstant</span></td><td><code>a4a12f4e3206fa54</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.ClassConstant.ForReferenceType</span></td><td><code>4beaf5868368fbed</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.DefaultValue</span></td><td><code>8b73a9c360a67a28</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.DoubleConstant</span></td><td><code>52bd9b449085618e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.FloatConstant</span></td><td><code>5fb3ccc731587bc4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.IntegerConstant</span></td><td><code>9e03f8dd11e86ff1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.LongConstant</span></td><td><code>986b2e266755333a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant</span></td><td><code>7330180ddcf37c17</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant.CachedMethod</span></td><td><code>98bb7839f408950c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant.ForMethod</span></td><td><code>163dd6bf0ea02943</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.NullConstant</span></td><td><code>2b2f956a02afa1c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.TextConstant</span></td><td><code>49197405714dea64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess</span></td><td><code>e3d0ce9ea271fceb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher</span></td><td><code>bd4ece4f12887747</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.AbstractFieldInstruction</span></td><td><code>97cf3c81d8231fa9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldGetInstruction</span></td><td><code>b9d159e4e9112c59</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldPutInstruction</span></td><td><code>72a43f4e9679b6ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodInvocation</span></td><td><code>c4bb2177e787b426</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodInvocation.Invocation</span></td><td><code>9669ea760b125f7e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodReturn</span></td><td><code>bc4ddd5778a4cdc2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess</span></td><td><code>42588dd07e5b8ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading</span></td><td><code>43418c9b5441eacf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading.TypeCastingHandler.NoOp</span></td><td><code>7b915a887c544ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetLoading</span></td><td><code>e8ca83e07ead628a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.BooleanMatcher</span></td><td><code>47dab3336066dcea</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.CollectionItemMatcher</span></td><td><code>dd0a8fd098f08871</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.CollectionSizeMatcher</span></td><td><code>0c7222d5d06af59c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.DeclaringTypeMatcher</span></td><td><code>74a318108120aa5e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase</span></td><td><code>36fbbb6bfc2ece41</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.Conjunction</span></td><td><code>42633e90154b0623</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.Disjunction</span></td><td><code>ba908be6031df4de</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatchers</span></td><td><code>ba1d5e1af7eb7cc1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.EqualityMatcher</span></td><td><code>f1a48271dc4688ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ErasureMatcher</span></td><td><code>2e9c10993e76bf6e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FieldTypeMatcher</span></td><td><code>841713a9042ea632</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FilterableList.AbstractBase</span></td><td><code>d95f2cff9af9994b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FilterableList.Empty</span></td><td><code>c0e6b0ced2219e92</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.LatentMatcher.Resolved</span></td><td><code>f0d9e14566fe2cf6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodParameterTypeMatcher</span></td><td><code>27c523b204fa80f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodParametersMatcher</span></td><td><code>7f28b58cb5f399aa</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodReturnTypeMatcher</span></td><td><code>b0450a1fb3e3332c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher</span></td><td><code>41720d5a722b92cb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort</span></td><td><code>8c29527e8b72c070</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.1</span></td><td><code>64e57b23123c3182</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.2</span></td><td><code>c9bffa50e4b10efb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.3</span></td><td><code>6e603721a528d1b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.4</span></td><td><code>f10146499ec67ad8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.5</span></td><td><code>83e156e02f9d03bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ModifierMatcher</span></td><td><code>94f631cedb860dc1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ModifierMatcher.Mode</span></td><td><code>bf1c07ebe143b2b0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.NameMatcher</span></td><td><code>e03864915b4afdf7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.NegatingMatcher</span></td><td><code>a55535b89cece21a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.SignatureTokenMatcher</span></td><td><code>cadf8ac6384b69ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher</span></td><td><code>0c2f102b0598c818</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode</span></td><td><code>92d3281cfb83177d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.1</span></td><td><code>8c658a6a6254930b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.2</span></td><td><code>24d44a58c6a1234f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.3</span></td><td><code>7d5e04fe568ebd44</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.4</span></td><td><code>813149e597183350</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.5</span></td><td><code>ef37a3899d944e20</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.6</span></td><td><code>25013d8f677d241d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.7</span></td><td><code>531001b28aac3526</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.8</span></td><td><code>59adebfb24d626bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.9</span></td><td><code>5e8c8a6141ff4d4d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.TypeSortMatcher</span></td><td><code>da975afe2a8cb3bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.VisibilityMatcher</span></td><td><code>2261bde512697ad5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.AbstractBase</span></td><td><code>b52fb7f9a23cc7c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.AbstractBase.Hierarchical</span></td><td><code>d4685211419d16c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.CacheProvider.Simple</span></td><td><code>452ee91ca0489cf1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.ClassLoading</span></td><td><code>b1251eab70ef5d8a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.Empty</span></td><td><code>f9b65eb4e753f731</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.CompoundList</span></td><td><code>d8575a0145fb2233</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.GraalImageCode</span></td><td><code>4b016d07d8cbcb79</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.Invoker.Dispatcher</span></td><td><code>331191d6649fcc9d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaModule</span></td><td><code>da1d0ba7dc4a9a11</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaType</span></td><td><code>139131b9f3c4393b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaType.LatentTypeWithSimpleName</span></td><td><code>614db04ddd96fa4b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.OpenedClassReader</span></td><td><code>2f7bbb3856f56d50</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.RandomString</span></td><td><code>f8fe50d9ab60a126</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher</span></td><td><code>4ba705741513943c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForInstanceCheck</span></td><td><code>e1ede6df3d22bd17</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForNonStaticMethod</span></td><td><code>860b8f4e1eb76c0e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForStaticMethod</span></td><td><code>be12ebca4a0d9171</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader</span></td><td><code>6900779c9a330881</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.CreationAction</span></td><td><code>5111a9003a405da9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.ForModuleSystem</span></td><td><code>f61d072133ec0a53</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.InvokerCreationAction</span></td><td><code>7400ba01b08088b8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.ProxiedInvocationHandler</span></td><td><code>d6eb9674a95f2f0c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.privilege.GetSystemPropertyAction</span></td><td><code>54ac71eddf9cb81f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ArrayConverter</span></td><td><code>b34a69626ec93465</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.AssignableConverter</span></td><td><code>1490ced60c779bff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.BooleanConverter</span></td><td><code>37ebe15b7b963c8f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.CalendarConverter</span></td><td><code>a1f6fc92267a4267</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.CharacterConverter</span></td><td><code>932b2fc0a9f71424</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ConverterStore</span></td><td><code>fa853a924c7c0c39</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.DateConverter</span></td><td><code>d616429fab58346c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.EnumConverter</span></td><td><code>9c9472f80463860f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.FromOptionalConverter</span></td><td><code>0420eb91351a3cbd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.MapConverter</span></td><td><code>e58baf703ea7e83d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.MergingCollectionConverter</span></td><td><code>eb2e56e38f470577</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.NumberConverter</span></td><td><code>4f0fb4ecd7f67d51</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.OptionalConverter</span></td><td><code>5f5b3a1bf97c75c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.StringConverter</span></td><td><code>2b80eb1a37053e63</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ToOptionalConverter</span></td><td><code>197599b256a00d48</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.UuidConverter</span></td><td><code>3a558e39f681491e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.ObjenesisBase</span></td><td><code>44cefb4ca7037448</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.ObjenesisStd</span></td><td><code>0cc2933320d6bdb6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.instantiator.sun.SunReflectionFactoryHelper</span></td><td><code>245240023951dae1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.instantiator.sun.SunReflectionFactoryInstantiator</span></td><td><code>7ee33a928b596145</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>1fa4784ad17a7dd2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.PlatformDescription</span></td><td><code>2680e11f224a75cd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>30319d9043310633</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver</span></td><td><code>9b27827089be38ee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver.1</span></td><td><code>a704db94c7cec047</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver.4</span></td><td><code>561e2a80f3069ed7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Assert</span></td><td><code>44b0ea6cc4e6cdd3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.CopyOnWriteLinkedHashMap</span></td><td><code>bbc87ddcad7218a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Iterables</span></td><td><code>ac328b5b172563ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Primitives</span></td><td><code>1a59b6e5e917db24</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Stack</span></td><td><code>08bd88c0a3c74cd6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Strings</span></td><td><code>e48bc9892a4e6dbf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Types</span></td><td><code>3317081bf3670bbf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valueaccess.MapValueReader</span></td><td><code>86dbdab11752babb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valueaccess.ValueAccessStore</span></td><td><code>d83862642f1faee3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valuemutate.MapValueWriter</span></td><td><code>65912529dacd3722</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valuemutate.ValueMutateStore</span></td><td><code>d93a42310a852dc2</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.ConditionalConverter.MatchResult</span></td><td><code>a7ebd5aee7678130</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.NameableType</span></td><td><code>557aa07ebbc89bab</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.PropertyType</span></td><td><code>256d3b179a8a06ab</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.Tokens</span></td><td><code>2e103039fb7d218d</code></td></tr><tr><td><span class="el_class">org.objenesis.ObjenesisBase</span></td><td><code>0c1d2fd83029257f</code></td></tr><tr><td><span class="el_class">org.objenesis.ObjenesisStd</span></td><td><code>f35c83a75caea811</code></td></tr><tr><td><span class="el_class">org.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>b0aaa6460452f5ce</code></td></tr><tr><td><span class="el_class">org.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>abae05ba56ea35a6</code></td></tr><tr><td><span class="el_class">org.postgresql.Driver</span></td><td><code>27e41adf441bccd9</code></td></tr><tr><td><span class="el_class">org.postgresql.Driver.1</span></td><td><code>2314368a2e89297e</code></td></tr><tr><td><span class="el_class">org.postgresql.PGProperty</span></td><td><code>6c7bd76e6d3b63b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner</span></td><td><code>d40c54d79e9278fa</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.BaseKey</span></td><td><code>401b9da5ca167633</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.Key</span></td><td><code>b8c0a9bff5ee2a4a</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.StringReference</span></td><td><code>f73da7fd288de9f7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.TempKey</span></td><td><code>58c5e75fbddc51a4</code></td></tr><tr><td><span class="el_class">org.postgresql.core.BaseQueryKey</span></td><td><code>d86be4127ec3a07f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CachedQuery</span></td><td><code>61aaebb22ffec8e3</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CachedQueryCreateAction</span></td><td><code>168d93dd704e1736</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CallableQueryKey</span></td><td><code>f61d402a8c54b3e7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CommandCompleteParser</span></td><td><code>6f313558ceb4a7b9</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ConnectionFactory</span></td><td><code>19d6fc69721220c0</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Encoding</span></td><td><code>0d5d96c1636af308</code></td></tr><tr><td><span class="el_class">org.postgresql.core.EncodingPredictor.DecodeResult</span></td><td><code>76b860bf67130133</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Field</span></td><td><code>bd2fd60bc993ca33</code></td></tr><tr><td><span class="el_class">org.postgresql.core.JavaVersion</span></td><td><code>8a869dd8f93b0133</code></td></tr><tr><td><span class="el_class">org.postgresql.core.JdbcCallParseInfo</span></td><td><code>31fff44edf034263</code></td></tr><tr><td><span class="el_class">org.postgresql.core.NativeQuery</span></td><td><code>0a47c6575d2ae9e8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.PGStream</span></td><td><code>f1d447bb2dda4d2c</code></td></tr><tr><td><span class="el_class">org.postgresql.core.PGStream.1</span></td><td><code>a081c74e102b47be</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser</span></td><td><code>c815c8fd79dbe082</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser.1</span></td><td><code>1c8e1a74174dcea0</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser.SqlParseState</span></td><td><code>70ccb5e89a34a2ea</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorBase</span></td><td><code>5550e94da7c34dcb</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorBase.1</span></td><td><code>128724ea7860f4a7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorCloseAction</span></td><td><code>092d185372956f2f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryWithReturningColumnsKey</span></td><td><code>7a516a9c17203f44</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ResultHandlerBase</span></td><td><code>84e1c61c887ea6d8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ResultHandlerDelegate</span></td><td><code>407e0a9dc379f154</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ServerVersion</span></td><td><code>b850b8b524573c47</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ServerVersion.1</span></td><td><code>68f1345096fc406f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SocketFactoryFactory</span></td><td><code>fa4d56af3c9ee97a</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SqlCommand</span></td><td><code>7c00b60e18e0a6a2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SqlCommandType</span></td><td><code>374b76d4a2814832</code></td></tr><tr><td><span class="el_class">org.postgresql.core.TransactionState</span></td><td><code>ca38250a7f418350</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Tuple</span></td><td><code>8d60317efe21eb10</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Utils</span></td><td><code>0a8aa5ae4339a4b9</code></td></tr><tr><td><span class="el_class">org.postgresql.core.VisibleBufferedInputStream</span></td><td><code>42cf7b01586fcaaf</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.AuthenticationPluginManager</span></td><td><code>411db9096f128904</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ChannelBindingOption</span></td><td><code>549cc973b1e3f6a7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.CompositeQuery</span></td><td><code>6e339158c18cda91</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ConnectionFactoryImpl</span></td><td><code>6bbd9479d56cd999</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ConnectionFactoryImpl.StartupParam</span></td><td><code>45decb99cf14fbec</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.DescribeRequest</span></td><td><code>f782c4158f36618e</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ExecuteRequest</span></td><td><code>b1af84930bb46303</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.Portal</span></td><td><code>b593fcc8a04291c2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl</span></td><td><code>1642f21b3c4e35b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl.1</span></td><td><code>ab32e545e29ab7d2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl.4</span></td><td><code>7adf5392e5cda293</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ScramAuthenticator</span></td><td><code>835608c6222f1324</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.SimpleParameterList</span></td><td><code>66a049e7691088b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.SimpleQuery</span></td><td><code>a244cd6d7c00b3f4</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.adaptivefetch.AdaptiveFetchCache</span></td><td><code>d8b6d2675de53a90</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.replication.V3ReplicationProtocol</span></td><td><code>51b747e25571003d</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.CandidateHost</span></td><td><code>263b4ad5ef4d5964</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.GlobalHostStatusTracker</span></td><td><code>cd6599c1132e7e4b</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.GlobalHostStatusTracker.HostSpecStatus</span></td><td><code>32513701f6683929</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostChooserFactory</span></td><td><code>6bad626625c67358</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement</span></td><td><code>86567837fa8d3f3c</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.1</span></td><td><code>24a0f79ae38bf78b</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.2</span></td><td><code>2953c8148b46fb44</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.3</span></td><td><code>1a59117d6b36c63f</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.4</span></td><td><code>e28d906d48c1944a</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.5</span></td><td><code>0f5c34f5815dae42</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.6</span></td><td><code>d063013185e46a33</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostStatus</span></td><td><code>60038ede5cf937be</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.SingleHostChooser</span></td><td><code>142cba6582b480b7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.AutoSave</span></td><td><code>a6378edefa6acd97</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.EscapeSyntaxCallMode</span></td><td><code>b570b243e99677a7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.FieldMetadata</span></td><td><code>c97b9c7142322054</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.GSSEncMode</span></td><td><code>b5f8689360dd1d4b</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgCallableStatement</span></td><td><code>f3cd4d390f6c41a1</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection</span></td><td><code>f6ff73f8bddc9d6c</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection.ReadOnlyBehavior</span></td><td><code>e01cc760a6f03f22</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection.TransactionCommandHandler</span></td><td><code>85ce53bc0471e50d</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnectionCleaningAction</span></td><td><code>4cd3123161820a3a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgDatabaseMetaData</span></td><td><code>fdee44f5f75b4987</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgPreparedStatement</span></td><td><code>b7603cf3e785fa1f</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSet</span></td><td><code>5321e1293da3cf95</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSet.1</span></td><td><code>daa64b6d6e60c81a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSetMetaData</span></td><td><code>413b1ea7f3693f9a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgStatement</span></td><td><code>1f5bc6a458676e1e</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgStatement.StatementResultHandler</span></td><td><code>31b5b6e0de3e8f11</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PreferQueryMode</span></td><td><code>56ec0680aa45af15</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.QueryExecutorTimeZoneProvider</span></td><td><code>8b1daebe6598ce40</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.ResourceLock</span></td><td><code>4e91bcea545a38a8</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.ResultWrapper</span></td><td><code>325bc6a6ab469d9a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.SslMode</span></td><td><code>8836e502073e34b7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.SslNegotiation</span></td><td><code>eb16fceeacd30186</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.StatementCancelState</span></td><td><code>61c49a676c6cd67f</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils</span></td><td><code>d738d465a0c5eb90</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.Infinity</span></td><td><code>813aea8c1fbc3b3a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.ParsedBinaryTimestamp</span></td><td><code>a53d3a944ffbcb1b</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.ParsedTimestamp</span></td><td><code>90600c15db263de1</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TypeInfoCache</span></td><td><code>8fb6053e91b652ef</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbcurlresolver.PgPassParser</span></td><td><code>bf76248f2dee3f00</code></td></tr><tr><td><span class="el_class">org.postgresql.plugin.AuthenticationRequestType</span></td><td><code>0afc947089104233</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.saslprep.SASLprep</span></td><td><code>453c397350f5af0a</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ClientFinalProcessor</span></td><td><code>8964e132135485fb</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.MessageFlow.Stage</span></td><td><code>19cd616d5e88cd4e</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ScramClient</span></td><td><code>fa5dc4ac180f9b26</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ScramClient.Builder</span></td><td><code>6ff32b04fbae7dca</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ServerFirstProcessor</span></td><td><code>8e4ce7e0b3bb2563</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.AbstractCharAttributeValue</span></td><td><code>dfe69b36b0378a65</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.AbstractScramMessage</span></td><td><code>5ff7a50bc785bdc1</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ClientFinalMessage</span></td><td><code>d7c9f67279a77c9f</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ClientFirstMessage</span></td><td><code>8f7580e905796cb5</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.CryptoUtil</span></td><td><code>9b4c38bccbc790b0</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2AttributeValue</span></td><td><code>474642b7531de038</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2Attributes</span></td><td><code>6552a81d32afc188</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2CbindFlag</span></td><td><code>e90abe5af97dccd9</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2Header</span></td><td><code>6fa447f922de7029</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramAttributeValue</span></td><td><code>03cdb83ebd51799e</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramAttributes</span></td><td><code>19311c7a1e475966</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramFunctions</span></td><td><code>7c5a6cf8e28bb9e5</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramMechanism</span></td><td><code>edbd0aadf110816d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramStringFormatting</span></td><td><code>3e4e0156d9c32a23</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ServerFinalMessage</span></td><td><code>d5c9028e2729babe</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ServerFirstMessage</span></td><td><code>95b397eedf5341ce</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation</span></td><td><code>1ec916d2eef9454d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.1</span></td><td><code>b9939fce7c6e5183</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.2</span></td><td><code>6711095b63529622</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.3</span></td><td><code>2ec24c8cc96e3d68</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringWritable</span></td><td><code>cc152c5f283c967c</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringWritableCsv</span></td><td><code>947099eb9aab0e3b</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.util.Preconditions</span></td><td><code>d9e31938a537701d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Option</span></td><td><code>16a1b1ab3ad99ce4</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Profile</span></td><td><code>a2fc13db1476c521</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Stringprep</span></td><td><code>5a2f66ee5ce522e8</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Tables</span></td><td><code>a4f7c2772c9a2379</code></td></tr><tr><td><span class="el_class">org.postgresql.util.ByteConverter</span></td><td><code>e4d3689ca1d354c3</code></td></tr><tr><td><span class="el_class">org.postgresql.util.GT</span></td><td><code>796e058c3d4964d3</code></td></tr><tr><td><span class="el_class">org.postgresql.util.HostSpec</span></td><td><code>209daea8c5602c65</code></td></tr><tr><td><span class="el_class">org.postgresql.util.IntList</span></td><td><code>b59c044b9a54dc29</code></td></tr><tr><td><span class="el_class">org.postgresql.util.JdbcBlackHole</span></td><td><code>1cbecf57eb94c954</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner</span></td><td><code>bdcbe1b3a2837c35</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner.1</span></td><td><code>74058cf25fb1e026</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner.Node</span></td><td><code>5b70812f551ac340</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LruCache</span></td><td><code>a2af7e34e5c23da4</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LruCache.LimitedMap</span></td><td><code>cd5463018e8ce3ac</code></td></tr><tr><td><span class="el_class">org.postgresql.util.NumberParser</span></td><td><code>e783c479218c1488</code></td></tr><tr><td><span class="el_class">org.postgresql.util.NumberParser.1</span></td><td><code>b8b9727d3b387a0f</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PGPropertyMaxResultBufferParser</span></td><td><code>f0be253272b6d1dd</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PGPropertyUtil</span></td><td><code>c2b236af4fa6117c</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PSQLException</span></td><td><code>428596975d677eff</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PSQLState</span></td><td><code>a242522ea116f646</code></td></tr><tr><td><span class="el_class">org.postgresql.util.ServerErrorMessage</span></td><td><code>0b355bd8e5caba31</code></td></tr><tr><td><span class="el_class">org.postgresql.util.SharedTimer</span></td><td><code>4901e3cbe643a778</code></td></tr><tr><td><span class="el_class">org.postgresql.util.URLCoder</span></td><td><code>d3e3ab08eb11efaa</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.IntSet</span></td><td><code>0619ceabcf70c6db</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.Nullness</span></td><td><code>664a70e6d9e3aa8b</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.PgBufferedOutputStream</span></td><td><code>e179aaeff063d325</code></td></tr><tr><td><span class="el_class">org.quartz.SchedulerContext</span></td><td><code>edcba0ebd15f3ec7</code></td></tr><tr><td><span class="el_class">org.quartz.SchedulerMetaData</span></td><td><code>6815a8582192a834</code></td></tr><tr><td><span class="el_class">org.quartz.Trigger.TriggerTimeComparator</span></td><td><code>b2711ad5e3ba628d</code></td></tr><tr><td><span class="el_class">org.quartz.core.ErrorLogger</span></td><td><code>d4b39828923eaf94</code></td></tr><tr><td><span class="el_class">org.quartz.core.ExecutingJobsManager</span></td><td><code>b9ece2391988d40c</code></td></tr><tr><td><span class="el_class">org.quartz.core.ListenerManagerImpl</span></td><td><code>0dee7d5e4c60c2d7</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzScheduler</span></td><td><code>6d1a6caea017109d</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzSchedulerResources</span></td><td><code>abee8a7f4c531ecd</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzSchedulerThread</span></td><td><code>5a02b034982d55cb</code></td></tr><tr><td><span class="el_class">org.quartz.core.SchedulerSignalerImpl</span></td><td><code>8b2f717a6ebcb378</code></td></tr><tr><td><span class="el_class">org.quartz.ee.jta.JTAAnnotationAwareJobRunShellFactory</span></td><td><code>379f33b84cd0777f</code></td></tr><tr><td><span class="el_class">org.quartz.impl.DefaultThreadExecutor</span></td><td><code>1086689f313d7538</code></td></tr><tr><td><span class="el_class">org.quartz.impl.SchedulerDetailsSetter</span></td><td><code>9b2077e45b9ed1af</code></td></tr><tr><td><span class="el_class">org.quartz.impl.SchedulerRepository</span></td><td><code>0dab65a4497d8bd3</code></td></tr><tr><td><span class="el_class">org.quartz.impl.StdScheduler</span></td><td><code>907cf0a85dead9af</code></td></tr><tr><td><span class="el_class">org.quartz.impl.StdSchedulerFactory</span></td><td><code>57f14a943221032a</code></td></tr><tr><td><span class="el_class">org.quartz.listeners.SchedulerListenerSupport</span></td><td><code>d787f5ee8ea23095</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.PropertySettingJobFactory</span></td><td><code>0355dd4be7aec5cf</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.RAMJobStore</span></td><td><code>29a4abe1eec5a721</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleJobFactory</span></td><td><code>acb0ca322527238c</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleThreadPool</span></td><td><code>cdbfe208551a6522</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleThreadPool.WorkerThread</span></td><td><code>bdaed829e6064ba7</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.TriggerWrapperComparator</span></td><td><code>e0ae773949faea7c</code></td></tr><tr><td><span class="el_class">org.quartz.utils.DirtyFlagMap</span></td><td><code>4d06d18848f85f3d</code></td></tr><tr><td><span class="el_class">org.quartz.utils.PropertiesParser</span></td><td><code>09626488bf696b63</code></td></tr><tr><td><span class="el_class">org.quartz.utils.StringKeyDirtyFlagMap</span></td><td><code>0f739594dc720a43</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.Preconditions</span></td><td><code>f106cd8cbbc833d5</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.ConstantThroughputRateLimiter</span></td><td><code>daeacfd64fa8d435</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiter</span></td><td><code>1a7d28cdec5da38b</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiterBuilder</span></td><td><code>cdbb7eff837216af</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiterBuilder.RateLimiterStrategy</span></td><td><code>d0a2bc4c00a50536</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.unreliables.Unreliables</span></td><td><code>07d2946fabe64f0e</code></td></tr><tr><td><span class="el_class">org.slf4j.LoggerFactory</span></td><td><code>a381b7ddf19bf47d</code></td></tr><tr><td><span class="el_class">org.slf4j.MDC</span></td><td><code>4d31efbdc380017c</code></td></tr><tr><td><span class="el_class">org.slf4j.bridge.SLF4JBridgeHandler</span></td><td><code>a24ab9068b3f1049</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.FormattingTuple</span></td><td><code>46e388b1eb4cb5c1</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.MessageFormatter</span></td><td><code>42e7db43bad15507</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.NOPLoggerFactory</span></td><td><code>54f5632bfcb8d8d5</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.SubstituteLoggerFactory</span></td><td><code>dc7efc0107a4a62d</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.Util</span></td><td><code>857ff3acc0576435</code></td></tr><tr><td><span class="el_class">org.slf4j.impl.StaticLoggerBinder</span></td><td><code>039b3c899e055991</code></td></tr><tr><td><span class="el_class">org.slf4j.impl.StaticMDCBinder</span></td><td><code>649700d80abb641d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Advisor</span></td><td><code>ef54cdaeb47b432b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Advisor.1</span></td><td><code>d687402cfbb21f65</code></td></tr><tr><td><span class="el_class">org.springframework.aop.ClassFilter</span></td><td><code>e82ad45e715a2767</code></td></tr><tr><td><span class="el_class">org.springframework.aop.MethodMatcher</span></td><td><code>c29355b2b77e1007</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Pointcut</span></td><td><code>d9a2e71c55afc2ed</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TrueClassFilter</span></td><td><code>66997f391f3335ac</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TrueMethodMatcher</span></td><td><code>bd93a7009fefd242</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TruePointcut</span></td><td><code>3712670a2abb92b3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.AspectJProxyUtils</span></td><td><code>d6b2e1cf951a2197</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactory</span></td><td><code>b162d94e0a197629</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactory.AspectJAnnotationParameterNameDiscoverer</span></td><td><code>f7beb1297e7d32a1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator</span></td><td><code>ec5101a7a56a25c0</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator.BeanFactoryAspectJAdvisorsBuilderAdapter</span></td><td><code>425a7d4852a811f3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.BeanFactoryAspectJAdvisorsBuilder</span></td><td><code>9e2fdb3311c47ec8</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory</span></td><td><code>b8775b0325008888</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator</span></td><td><code>75c5b76319a943d3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator.PartiallyComparableAdvisorHolder</span></td><td><code>b6fdffa324e4853c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJPrecedenceComparator</span></td><td><code>6568cfa556a0645f</code></td></tr><tr><td><span class="el_class">org.springframework.aop.config.AopConfigUtils</span></td><td><code>8fd124ab73265d14</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AbstractAdvisingBeanPostProcessor</span></td><td><code>19dda0c9dedbeea7</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AdvisedSupport</span></td><td><code>1a00caae3fdff967</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AdvisedSupport.MethodCacheKey</span></td><td><code>54e9c577d8db367d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AopProxyUtils</span></td><td><code>d20dd23c1373edf3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy</span></td><td><code>362ef7c9e3068cfb</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.AdvisedDispatcher</span></td><td><code>f3c0b9c7e3b00005</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.CglibMethodInvocation</span></td><td><code>23a0876704a3a48c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.DynamicAdvisedInterceptor</span></td><td><code>296bfc67cae2dda7</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.EqualsInterceptor</span></td><td><code>531156aac8618ad0</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.HashCodeInterceptor</span></td><td><code>b88bd3f887698ae4</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.ProxyCallbackFilter</span></td><td><code>4d2c811f6bfedd90</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.SerializableNoOp</span></td><td><code>023e181acb544865</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.StaticDispatcher</span></td><td><code>7ddcfddaf276d27c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.StaticUnadvisedInterceptor</span></td><td><code>a47f9d417aa3f4ad</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.DefaultAdvisorChainFactory</span></td><td><code>c7dda89780285dc3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.DefaultAopProxyFactory</span></td><td><code>b2c973f5a761adab</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.JdkDynamicAopProxy</span></td><td><code>4c802fbbb08cf45a</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ObjenesisCglibAopProxy</span></td><td><code>9c81ecc368cdf7dc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyConfig</span></td><td><code>da9e527ce0e87e39</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyCreatorSupport</span></td><td><code>1821c42e8839668b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyFactory</span></td><td><code>e0b96918a670afaa</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyProcessorSupport</span></td><td><code>6c1763bc516aec9b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ReflectiveMethodInvocation</span></td><td><code>d4fd0afa71efa12e</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.AfterReturningAdviceAdapter</span></td><td><code>062a53f080ee5a1b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.DefaultAdvisorAdapterRegistry</span></td><td><code>5c685171123ce41d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.GlobalAdvisorAdapterRegistry</span></td><td><code>397dafe6cf6f6bb5</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.MethodBeforeAdviceAdapter</span></td><td><code>b6ed39cc2de5fe66</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.ThrowsAdviceAdapter</span></td><td><code>455ea0b8cf24a354</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator</span></td><td><code>0312b8ea58cfb6a6</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator.BeanFactoryAdvisorRetrievalHelperAdapter</span></td><td><code>fc35016c25cd15b3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator</span></td><td><code>c94a9665b1b102d2</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractBeanFactoryAwareAdvisingPostProcessor</span></td><td><code>1718d54909ab3596</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AutoProxyUtils</span></td><td><code>68156f4f0998c6fc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.BeanFactoryAdvisorRetrievalHelper</span></td><td><code>7c2c296716af1e50</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.ProxyCreationContext</span></td><td><code>6d416aebf6c95e6d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.interceptor.ExposeInvocationInterceptor</span></td><td><code>74e112b9e33b15b2</code></td></tr><tr><td><span class="el_class">org.springframework.aop.interceptor.ExposeInvocationInterceptor.1</span></td><td><code>b29d64af4122f32c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.scope.ScopedProxyUtils</span></td><td><code>a586edd613974812</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractBeanFactoryPointcutAdvisor</span></td><td><code>e690f224fa2465a1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractGenericPointcutAdvisor</span></td><td><code>106f0964bccbd00b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractPointcutAdvisor</span></td><td><code>1826502a73f44db5</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AopUtils</span></td><td><code>386cf262c8b36bdb</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ClassFilters</span></td><td><code>d996e857520c7234</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ClassFilters.IntersectionClassFilter</span></td><td><code>8b94411089699bc1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ComposablePointcut</span></td><td><code>4f094bbfcbbd7638</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.DefaultPointcutAdvisor</span></td><td><code>3623a95704d49d39</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.StaticMethodMatcher</span></td><td><code>3026c4f0909f147f</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.StaticMethodMatcherPointcut</span></td><td><code>287fc22ee10b5ddc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.annotation.AnnotationClassFilter</span></td><td><code>efdc8c13399628db</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.annotation.AnnotationMatchingPointcut</span></td><td><code>4c4f0ee833e4a75c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.target.EmptyTargetSource</span></td><td><code>1667d7cf3cc65f8e</code></td></tr><tr><td><span class="el_class">org.springframework.aop.target.SingletonTargetSource</span></td><td><code>ae1fdc62beffeb7f</code></td></tr><tr><td><span class="el_class">org.springframework.asm.AnnotationVisitor</span></td><td><code>86177032fceae2cb</code></td></tr><tr><td><span class="el_class">org.springframework.asm.AnnotationWriter</span></td><td><code>09a3272c26e27d4b</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Attribute</span></td><td><code>818e34343aee567f</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ByteVector</span></td><td><code>497c4a0020da8b32</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassReader</span></td><td><code>02c36ddc15e1783c</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassVisitor</span></td><td><code>f4ec55c5038f23de</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassWriter</span></td><td><code>e278872fa5de2d91</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Context</span></td><td><code>f61dfcd9105062d7</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Edge</span></td><td><code>75fcf927f0e1727a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.FieldVisitor</span></td><td><code>56d636b4e7c08b03</code></td></tr><tr><td><span class="el_class">org.springframework.asm.FieldWriter</span></td><td><code>65acdc7b813096c1</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Frame</span></td><td><code>448a952c85904643</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Handle</span></td><td><code>6d8c7e503837bb12</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Handler</span></td><td><code>4cf000e56c2c3c02</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Label</span></td><td><code>bc2fa7ee63dec43a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.MethodVisitor</span></td><td><code>9b0b81169dc3f6c1</code></td></tr><tr><td><span class="el_class">org.springframework.asm.MethodWriter</span></td><td><code>5d26da405e8ffd56</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Symbol</span></td><td><code>28333b059d7a579e</code></td></tr><tr><td><span class="el_class">org.springframework.asm.SymbolTable</span></td><td><code>4f2562bd2342989b</code></td></tr><tr><td><span class="el_class">org.springframework.asm.SymbolTable.Entry</span></td><td><code>5e95f09fdec28a06</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Type</span></td><td><code>41cb414463d8845a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.TypePath</span></td><td><code>7f7cfebb19dc1a61</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor</span></td><td><code>25f974598142eceb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor.PropertyHandler</span></td><td><code>7726cd62b91ed846</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor.PropertyTokenHolder</span></td><td><code>0ee732b4fcaa98ae</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractPropertyAccessor</span></td><td><code>8629b55baaeb6a44</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanMetadataAttribute</span></td><td><code>8cf3dad0351b685a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanMetadataAttributeAccessor</span></td><td><code>870898df99a4e69f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanUtils</span></td><td><code>faf77bea5b45e52f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanWrapperImpl</span></td><td><code>1fa2c26f29cb3470</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanWrapperImpl.BeanPropertyHandler</span></td><td><code>abaa751daa75ac8e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeansException</span></td><td><code>0543c63b55aa3ec1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.CachedIntrospectionResults</span></td><td><code>813b1da85578ab2b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo</span></td><td><code>2386814e73a25ac1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.PropertyDescriptorComparator</span></td><td><code>b461926eb42677ab</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.SimpleIndexedPropertyDescriptor</span></td><td><code>a72ed42c939df2d9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.SimplePropertyDescriptor</span></td><td><code>b1392285e7c12be0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfoFactory</span></td><td><code>c7c7752172de1df8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.FatalBeanException</span></td><td><code>9d88baaafb59a756</code></td></tr><tr><td><span class="el_class">org.springframework.beans.GenericTypeAwarePropertyDescriptor</span></td><td><code>546854fffbaf65fe</code></td></tr><tr><td><span class="el_class">org.springframework.beans.MutablePropertyValues</span></td><td><code>7c91b0939d2bab5c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyAccessorUtils</span></td><td><code>68325c1e604284c5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyDescriptorUtils</span></td><td><code>617b1324b0ee10c1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyEditorRegistrySupport</span></td><td><code>a7aca8baec411d07</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyValue</span></td><td><code>f55260d736565fb7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.SimpleTypeConverter</span></td><td><code>c2a485c2c4760758</code></td></tr><tr><td><span class="el_class">org.springframework.beans.TypeConverterDelegate</span></td><td><code>6f0b44459a9ae68a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.TypeConverterSupport</span></td><td><code>5fa522029fbc23db</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanCreationException</span></td><td><code>10b315dd93d9d50c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanCurrentlyInCreationException</span></td><td><code>3ec385c118191877</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanFactoryUtils</span></td><td><code>bce352acab412e0c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.FactoryBean</span></td><td><code>712a87cd0512dd09</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.InjectionPoint</span></td><td><code>a4c72d1770a7a7fb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.NoSuchBeanDefinitionException</span></td><td><code>882626fdbe4bcc64</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.ObjectProvider</span></td><td><code>a94310da6186767b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.UnsatisfiedDependencyException</span></td><td><code>0edb50b8eafc2497</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AnnotatedGenericBeanDefinition</span></td><td><code>619e8f20e52cbd04</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.Autowire</span></td><td><code>5b521c6e0200af6d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor</span></td><td><code>1b550f7f1f226b88</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.AutowiredFieldElement</span></td><td><code>161f0520d3fa854d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.AutowiredMethodElement</span></td><td><code>5dd543f6933c827c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.ShortcutDependencyDescriptor</span></td><td><code>130d5bd973836f54</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.BeanFactoryAnnotationUtils</span></td><td><code>42afbdd32e6cec3e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor</span></td><td><code>a043b9bac7d18cde</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.1</span></td><td><code>1b66ba92e94cb29d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.LifecycleElement</span></td><td><code>02b4ed0c82400db7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.LifecycleMetadata</span></td><td><code>8a8d7870aa141386</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata</span></td><td><code>addb42baff1b43c3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata.1</span></td><td><code>43ef1ac68bc3474a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata.InjectedElement</span></td><td><code>b6c3f44002cd9e19</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.QualifierAnnotationAutowireCandidateResolver</span></td><td><code>bbfd7df845d2f7f8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor</span></td><td><code>5a662aa523f7b902</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.AbstractFactoryBean</span></td><td><code>ad164c061ee07276</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.AutowiredPropertyMarker</span></td><td><code>26d9a743bf97cf72</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanDefinitionHolder</span></td><td><code>3b70fa34c1022f80</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanDefinitionVisitor</span></td><td><code>74f88f77765e2ba7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanExpressionContext</span></td><td><code>af2e0aa265480df0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanPostProcessor</span></td><td><code>31a3b8078cd2b4de</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.ConstructorArgumentValues</span></td><td><code>974eff1301c7a799</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder</span></td><td><code>53952c06705bd495</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.DependencyDescriptor</span></td><td><code>2717994de849ffe3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.DependencyDescriptor.1</span></td><td><code>53235c089020d60a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.EmbeddedValueResolver</span></td><td><code>67c6aa7eff4a2af4</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessor</span></td><td><code>d45dfbe8c3b017dc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.NamedBeanHolder</span></td><td><code>2452594c2a8b0afb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PlaceholderConfigurerSupport</span></td><td><code>fb62dccf379ce479</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PropertiesFactoryBean</span></td><td><code>6cdb6c1b91ff49e7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PropertyResourceConfigurer</span></td><td><code>8fc0749add384007</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.RuntimeBeanReference</span></td><td><code>0bd630af284fdc88</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.SmartInstantiationAwareBeanPostProcessor</span></td><td><code>d410f2e0a60feaee</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.BeanComponentDefinition</span></td><td><code>97239406e6143e43</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.EmptyReaderEventListener</span></td><td><code>66cf0f3278fa7506</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.FailFastProblemReporter</span></td><td><code>5ba1c86bd60fce8d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.NullSourceExtractor</span></td><td><code>380cd58a6c753854</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.PassThroughSourceExtractor</span></td><td><code>6b35528d7f0c2809</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory</span></td><td><code>54065cf602da8e47</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.FactoryBeanMethodTypeFinder</span></td><td><code>3e0152ef0a6da1de</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanDefinition</span></td><td><code>f525227d47f5ec93</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanDefinitionReader</span></td><td><code>8eed4a6c3d0ce428</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory</span></td><td><code>85ccc52c4af0f793</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory.BeanPostProcessorCache</span></td><td><code>7dcfabd0f93814b9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory.BeanPostProcessorCacheAwareList</span></td><td><code>39848665ad4671c1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AutowireCandidateQualifier</span></td><td><code>e2e718d2926fd313</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AutowireUtils</span></td><td><code>44c81fa5e4e22cae</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionBuilder</span></td><td><code>0b117ac0ebfe0f71</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionDefaults</span></td><td><code>465409ce7ac606a2</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionReaderUtils</span></td><td><code>208e83e858b5738a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionValueResolver</span></td><td><code>eeefc7f249f8ad77</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.CglibSubclassingInstantiationStrategy</span></td><td><code>a563b40b14a5489f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver</span></td><td><code>88e7b8fc2e189304</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver.ArgumentsHolder</span></td><td><code>3e0665ed15e3e330</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver.ConstructorPropertiesChecker</span></td><td><code>863054f1e67ded9f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultBeanNameGenerator</span></td><td><code>55ebd73a1cdc28a6</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory</span></td><td><code>b322468d9a9084a9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.1</span></td><td><code>cd4845b732ea5466</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.2</span></td><td><code>5b6575421b6ac3fd</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider</span></td><td><code>c742d6b252caf199</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider.2</span></td><td><code>8ad547e241e0b2d5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider.3</span></td><td><code>fbf4a44705234f95</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.FactoryAwareOrderSourceProvider</span></td><td><code>d3250f57da3b3bde</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.MultiElementDescriptor</span></td><td><code>7362b4a88f148e1b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.NestedDependencyDescriptor</span></td><td><code>13c87172106dbc32</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.StreamDependencyDescriptor</span></td><td><code>923ec1c0bcaf2329</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultSingletonBeanRegistry</span></td><td><code>2e13867d601540f5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DisposableBeanAdapter</span></td><td><code>e35225c20a619b07</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.FactoryBeanRegistrySupport</span></td><td><code>99c74fcfc0d39cdf</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.GenericBeanDefinition</span></td><td><code>ac91c5bf6c2439f0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.GenericTypeAwareAutowireCandidateResolver</span></td><td><code>ee9509933c9fc0e3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.MergedBeanDefinitionPostProcessor</span></td><td><code>dbfe9af65ed74e99</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.MethodOverrides</span></td><td><code>02bf1e2f93a375da</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.NullBean</span></td><td><code>e569c45ba8cb9f69</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.RootBeanDefinition</span></td><td><code>c66a4b7b525dc119</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.SimpleAutowireCandidateResolver</span></td><td><code>484c37bd2a5b92be</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.SimpleInstantiationStrategy</span></td><td><code>63611899eec828c8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.DefaultDocumentLoader</span></td><td><code>f33a4e5ddd7424ee</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.XmlBeanDefinitionReader</span></td><td><code>666dc2cc2306131a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.XmlBeanDefinitionReader.1</span></td><td><code>314e956097cb5105</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ByteArrayPropertyEditor</span></td><td><code>181c863773c983bf</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharArrayPropertyEditor</span></td><td><code>bead55453e03a944</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharacterEditor</span></td><td><code>70502cd57d980a0c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharsetEditor</span></td><td><code>57cdb9b3bce38e91</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ClassArrayEditor</span></td><td><code>b976ce9a8db4c481</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ClassEditor</span></td><td><code>ebe3e6a2ae7c4bf2</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CurrencyEditor</span></td><td><code>15eb0a232a991dc1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomBooleanEditor</span></td><td><code>51b576b87ebd43fc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomCollectionEditor</span></td><td><code>f926c36f46bf0512</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomMapEditor</span></td><td><code>aa09a775696f5ed7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomNumberEditor</span></td><td><code>fd415437506f733b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.FileEditor</span></td><td><code>ac516fb1c5132ca8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.InputSourceEditor</span></td><td><code>3878badde453f7f1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.InputStreamEditor</span></td><td><code>519c08fee3b1c7a8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.LocaleEditor</span></td><td><code>ef2c6a2ebce881e6</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PathEditor</span></td><td><code>0a813b85f0f3f067</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PatternEditor</span></td><td><code>5701eec941fca72b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PropertiesEditor</span></td><td><code>b15706d4d5d44248</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ReaderEditor</span></td><td><code>83eff1682c3bc5cc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.StringArrayPropertyEditor</span></td><td><code>7ef4f3e0d227b024</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.TimeZoneEditor</span></td><td><code>7f37437da55c16a4</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.URIEditor</span></td><td><code>5023880daac6928f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.URLEditor</span></td><td><code>c1db6f85946d10fc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.UUIDEditor</span></td><td><code>fcc38198e72b691e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ZoneIdEditor</span></td><td><code>719b0a6638c998fd</code></td></tr><tr><td><span class="el_class">org.springframework.beans.support.ResourceEditorRegistrar</span></td><td><code>b69ae45337080c07</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ApplicationContextFactory</span></td><td><code>1c35257aaac1c2e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.Banner.Mode</span></td><td><code>1671eb939d3d025d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BeanDefinitionLoader</span></td><td><code>e7d19ca02f800336</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BeanDefinitionLoader.ClassExcludeFilter</span></td><td><code>eed1c2f291408d4f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapContextClosedEvent</span></td><td><code>da78a525c36dac73</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.InstanceSupplier</span></td><td><code>a4be181cc8e23603</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.InstanceSupplier.1</span></td><td><code>0e68c50c60102199</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.Scope</span></td><td><code>9db2258389f1ae19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ClearCachesApplicationListener</span></td><td><code>9f836d67a246ae16</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationArguments</span></td><td><code>68256ed60a832d78</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationArguments.Source</span></td><td><code>282730bec49a2c6b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationContextFactory</span></td><td><code>6b8a7554af8cb838</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultBootstrapContext</span></td><td><code>9152024e795bfb64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultPropertiesPropertySource</span></td><td><code>cdc65f3398da6690</code></td></tr><tr><td><span class="el_class">org.springframework.boot.EnvironmentConverter</span></td><td><code>1eaf183b60d2ef10</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplication</span></td><td><code>0916c9b87f37a7dc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplication.PropertySourceOrderingBeanFactoryPostProcessor</span></td><td><code>a7de228bbe81af50</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter</span></td><td><code>792fd17363f348cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter.Banners</span></td><td><code>d5c37c4466be3c71</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter.PrintedBanner</span></td><td><code>616cd93ed0af98d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationRunListeners</span></td><td><code>75d00f9ced9a1a3a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook</span></td><td><code>2ef86547c43ef13d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook.ApplicationContextClosedListener</span></td><td><code>f45768c12f8176a1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook.Handlers</span></td><td><code>e04cec9c109647e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringBootBanner</span></td><td><code>70b2923944cb49da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringBootVersion</span></td><td><code>e4fc1ff7a7409457</code></td></tr><tr><td><span class="el_class">org.springframework.boot.StartupInfoLogger</span></td><td><code>0b67221cceabef94</code></td></tr><tr><td><span class="el_class">org.springframework.boot.WebApplicationType</span></td><td><code>f2f3e3a921ed366a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiColor</span></td><td><code>cd3dd429350a7a04</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiOutput</span></td><td><code>9b529f6bbca35e14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiOutput.Enabled</span></td><td><code>7c2ea9a397946bdc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiStyle</span></td><td><code>ace7a2dd57f73fa2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationExcludeFilter</span></td><td><code>b9f6fceeec9c94bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportEvent</span></td><td><code>25e5452af442938c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector</span></td><td><code>f161da263fc37d11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.AutoConfigurationEntry</span></td><td><code>eda049128fec28ec</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.AutoConfigurationGroup</span></td><td><code>e6d0b9c92ed6ca3f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.ConfigurationClassFilter</span></td><td><code>6f2c852549fc6111</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationMetadataLoader</span></td><td><code>72ee35ed589b55ff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationMetadataLoader.PropertiesAutoConfigurationMetadata</span></td><td><code>ea82e8475b2588cc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages</span></td><td><code>b9fb55423bbf157d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.BasePackages</span></td><td><code>c99df65f04f09ac9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.BasePackagesBeanDefinition</span></td><td><code>589e960ea96cc605</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.PackageImports</span></td><td><code>b23b60c8327c8c99</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.Registrar</span></td><td><code>cf639b0b1238d8db</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter</span></td><td><code>a1da1e22b23bc7a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter.AutoConfigurationClass</span></td><td><code>41e9801822af2d24</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter.AutoConfigurationClasses</span></td><td><code>94d687ba3229eaea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer</span></td><td><code>6c4e865d6e56f17a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.1</span></td><td><code>a98d38dbaa4d5192</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.CharsetInitializer</span></td><td><code>cdd69351ff702f7c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.ConversionServiceInitializer</span></td><td><code>3223c472b8ae5639</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.MessageConverterInitializer</span></td><td><code>a1c8eed607c38c19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.ValidationInitializer</span></td><td><code>4ba0e7512c65ffff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer</span></td><td><code>6d97920237f3cfab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer.CachingMetadataReaderFactoryPostProcessor</span></td><td><code>4a04a63c5bc6292f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer.SharedMetadataReaderFactoryBean</span></td><td><code>b6c9e27a7b5d6093</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration</span></td><td><code>2cd0f5d8e7cf2ea4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.AspectJAutoProxyingConfiguration</span></td><td><code>0d62851c9c377ecb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration</span></td><td><code>011d0a89005de8d1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration</span></td><td><code>d5a9b30312477202</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.batch.JobRepositoryDependsOnDatabaseInitializationDetector</span></td><td><code>5772e3bc39dc387c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheConfigurationImportSelector</span></td><td><code>898619240be14a15</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheCondition</span></td><td><code>d5f82332b4159a52</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheConfigurations</span></td><td><code>002ee01e0336112c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheType</span></td><td><code>85e3ab33e89b88ac</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.codec.CodecProperties</span></td><td><code>953f0ce9ac243b2f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition</span></td><td><code>f6b993fa67357dea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberConditions</span></td><td><code>7d0284eca04492a3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberMatchOutcomes</span></td><td><code>3bd6a5375e4d5ce3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberOutcomes</span></td><td><code>7d103057de404eab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AllNestedConditions</span></td><td><code>33d80e3173dd34fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AnyNestedCondition</span></td><td><code>74f45fbc657575f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport</span></td><td><code>74eb9d307c82f967</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.AncestorsMatchedCondition</span></td><td><code>a016859620a54641</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.ConditionAndOutcome</span></td><td><code>79d51a8261726e85</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.ConditionAndOutcomes</span></td><td><code>0486dac2dc77e476</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReportAutoConfigurationImportListener</span></td><td><code>a72d71e1052dd0f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage</span></td><td><code>798c07377a65869c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Builder</span></td><td><code>52265bcd0af10702</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.ItemsBuilder</span></td><td><code>f034801cb4143eed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style</span></td><td><code>a8010be41dff8642</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style.1</span></td><td><code>0d5604975ea62eb2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style.2</span></td><td><code>48a2c891ad53ab7e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionOutcome</span></td><td><code>47f32adfbfd77123</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type</span></td><td><code>96f69fb486cfb679</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition</span></td><td><code>e36ae77a1649f25a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter</span></td><td><code>4ce6ad23870d9f74</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter.1</span></td><td><code>5a5d0855652ce808</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter.2</span></td><td><code>65162f67a816a55a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.NoneNestedConditions</span></td><td><code>2b9042b164a859e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition</span></td><td><code>26f8a931843720b1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.MatchResult</span></td><td><code>56264beb3df9fff7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.SingleCandidateSpec</span></td><td><code>9eb92ba494010154</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.Spec</span></td><td><code>025d996893b4c57b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition</span></td><td><code>0d78809aeffd3f2a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition.StandardOutcomesResolver</span></td><td><code>52653a45d6a03fd5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition.ThreadedOutcomesResolver</span></td><td><code>11939627e835c514</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnJndiCondition</span></td><td><code>71552c53add7ecaa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnPropertyCondition</span></td><td><code>e28b1904228b6094</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnPropertyCondition.Spec</span></td><td><code>cc19a93d438d5bb5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnResourceCondition</span></td><td><code>4fa7499dba196fa8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition</span></td><td><code>acae091df6eb214c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition.1</span></td><td><code>5efa33945285821e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.SearchStrategy</span></td><td><code>0f8a720573b8b7ab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.SpringBootCondition</span></td><td><code>e4fd3bc12ffe7f01</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration</span></td><td><code>0ec18aa0e399642b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration</span></td><td><code>b311f1b24341a66b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.LifecycleProperties</span></td><td><code>25d9a0313540321a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration.ResourceBundleCondition</span></td><td><code>0f1ef52dd3848b9e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration</span></td><td><code>8db2dcc45845d6de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration</span></td><td><code>be35b353720c5b83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport</span></td><td><code>619f248e0bf690d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.1</span></td><td><code>4d10c445f78eae42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.AutoConfiguredAnnotationRepositoryConfigurationSource</span></td><td><code>78de78ab4b829f65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration</span></td><td><code>fec99dfa299d7810</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition</span></td><td><code>77b6a5c80f05b388</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration.JpaRepositoriesImportSelector</span></td><td><code>7c34d596ee5b672d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesRegistrar</span></td><td><code>becbaf8d80fd05fb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration</span></td><td><code>7da03e566a13fcd8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties</span></td><td><code>9f7881ab6ac04485</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties.Pageable</span></td><td><code>2b2ece9c3abd8163</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties.Sort</span></td><td><code>69d9f2b26519c4fa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages</span></td><td><code>785788bb6d8ba9c2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages.EntityScanPackagesBeanDefinition</span></td><td><code>a786c50466f7931c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages.Registrar</span></td><td><code>86c8d4951684cb12</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.flyway.FlywayMigrationInitializerDatabaseInitializerDetector</span></td><td><code>4b943bc0a6b4ea83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider</span></td><td><code>bc87fed2b13ed69d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider</span></td><td><code>3dbcbea7b74e07d7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration</span></td><td><code>2e1465ea465d6a5e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration.StandardGsonBuilderCustomizer</span></td><td><code>ca82fafcfd28d4d6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonProperties</span></td><td><code>570873ad1e6606c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration</span></td><td><code>eb182ff77a4492c4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition</span></td><td><code>e6e65b06cc6f9186</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition</span></td><td><code>bfb8fc1f9453e657</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConverters</span></td><td><code>3d6da231aeb54b42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConverters.1</span></td><td><code>ee7345aaff6ad882</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration</span></td><td><code>8da55984fb559d05</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition</span></td><td><code>4f19e3502552b0af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration</span></td><td><code>042f078d8f0ae907</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration</span></td><td><code>d609c1f94604d4e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration</span></td><td><code>f2c9cbe1e004cafa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration</span></td><td><code>9e55be31cd74f336</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration.DefaultCodecsConfiguration</span></td><td><code>6d68312d1c16db8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration.JacksonCodecConfiguration</span></td><td><code>de1026a89996526a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration</span></td><td><code>85ccbcc3ea21b77c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration.GitResourceAvailableCondition</span></td><td><code>db416e9367f67ed2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties</span></td><td><code>8dfe798cf2f71f26</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties.Build</span></td><td><code>1e156c41c21621df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties.Git</span></td><td><code>e1b7d59f2090494a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.integration.IntegrationPropertiesEnvironmentPostProcessor</span></td><td><code>0ccb7e7d34b3620f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration</span></td><td><code>e399d84b1b02cf49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration</span></td><td><code>d5a0925364898303</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration.StandardJackson2ObjectMapperBuilderCustomizer</span></td><td><code>1fb62779cd1e2125</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration</span></td><td><code>53ad7233e977e123</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.JacksonObjectMapperConfiguration</span></td><td><code>85deda0a9c11460c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.ParameterNamesModuleConfiguration</span></td><td><code>3f355ec285054528</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonProperties</span></td><td><code>1999b9dd657aa5d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration</span></td><td><code>dbadd8f3214d610e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.EmbeddedDatabaseCondition</span></td><td><code>f8420047c8c6d59e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceAvailableCondition</span></td><td><code>47c55481330ee4fb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceCondition</span></td><td><code>742fc5107f9e15ea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceConfiguration</span></td><td><code>a648369099a205d2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration</span></td><td><code>2add4095a1481eaf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration.Hikari</span></td><td><code>d6016fc59a2d7986</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceProperties</span></td><td><code>db195dc1db726475</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceProperties.Xa</span></td><td><code>4966ea8cc9e2f547</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration</span></td><td><code>6c40e4c3e4bd2019</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration</span></td><td><code>750ba02c94d1cb2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcProperties</span></td><td><code>d2b978ceedc11bdf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcProperties.Template</span></td><td><code>639eee2e8f0458df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration</span></td><td><code>7818bf2742d8c999</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration</span></td><td><code>ccea44646d6b51a8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration</span></td><td><code>0df8db1d6d2e44b4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration</span></td><td><code>48d725865c947aa6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration</span></td><td><code>edcbc59790702f33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration</span></td><td><code>63c6c9aa4d422b79</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration.LiquibaseConfiguration</span></td><td><code>279a771db61b307a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration.LiquibaseDataSourceCondition</span></td><td><code>7c788f38e5cba9f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties</span></td><td><code>de8a0d3104a4d122</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseSchemaManagementProvider</span></td><td><code>6a65873b551689ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener</span></td><td><code>9418f72aaa9a365d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener.ConditionEvaluationReportListener</span></td><td><code>03ad5ebe023a8bce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider</span></td><td><code>a037b80c57875a53</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.netty.NettyAutoConfiguration</span></td><td><code>cd8743fb242aec81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.netty.NettyProperties</span></td><td><code>3083b235a6b1eec2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateDefaultDdlAutoProvider</span></td><td><code>83ae38dd5da622a4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration</span></td><td><code>6c21d2071e659c18</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration</span></td><td><code>9a117fae7dffd2fe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties</span></td><td><code>bb5cf93ada2dd297</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.Naming</span></td><td><code>fe5f62effdd16700</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateSettings</span></td><td><code>f909d4be9c9dc1d2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration</span></td><td><code>70abc74d8baacd2e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.JpaWebConfiguration</span></td><td><code>3f17bf89407897c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.JpaWebConfiguration.1</span></td><td><code>9dcf6259e8e5b5c2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaProperties</span></td><td><code>055be1782a55763d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.JobStoreType</span></td><td><code>8c2019ddb057f3b9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration</span></td><td><code>7fc455c6e99acf30</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzProperties</span></td><td><code>3dfd0211fb468d59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzProperties.Jdbc</span></td><td><code>d14f9af4bf7fbd53</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.SchedulerDependsOnDatabaseInitializationDetector</span></td><td><code>4620beb268afd31a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.DefaultWebSecurityCondition</span></td><td><code>68f7160e70c256c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties</span></td><td><code>889de5eebd03a3aa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties.Filter</span></td><td><code>856816da1969b542</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties.User</span></td><td><code>e8ee476f6c0c8ed4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration</span></td><td><code>c4b2d70cded1dbbf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition</span></td><td><code>dae04355e4c8b773</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration</span></td><td><code>ae2f68ac57f85f81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration</span></td><td><code>64eb292bbd1288f7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration</span></td><td><code>0637c6e116b9e5f1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.ErrorPageSecurityFilterConfiguration</span></td><td><code>ad8376c939b8a3d3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.SecurityFilterChainConfiguration</span></td><td><code>e902630e52d9d05a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.WebSecurityEnablerConfiguration</span></td><td><code>fcbe8db1605cd64a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration</span></td><td><code>e9b5f1971eb4f0a6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.session.JdbcIndexedSessionRepositoryDependsOnDatabaseInitializationDetector</span></td><td><code>33a8397352a3a7f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration</span></td><td><code>b3f6f4db76dbf66c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SettingsCreator</span></td><td><code>82518c867f96c2e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer</span></td><td><code>3aaad144972e5500</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration</span></td><td><code>3edd9f010c7754a8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration.SqlInitializationModeCondition</span></td><td><code>056cb6aeaa36be98</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties</span></td><td><code>b81a32514472fd8e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration</span></td><td><code>fa5ea558173e1904</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties</span></td><td><code>35553ffd75b66ade</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties.Pool</span></td><td><code>cd01741c13347968</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties.Shutdown</span></td><td><code>b4b03df9340becf0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration</span></td><td><code>f5015daa4d7935fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties</span></td><td><code>a990708e75c6b426</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties.Pool</span></td><td><code>2c833317735c7bd1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties.Shutdown</span></td><td><code>76b1ac5406bffba5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.PathBasedTemplateAvailabilityProvider</span></td><td><code>cf3f6e33adb12641</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders</span></td><td><code>2d7ca1b2aa64b631</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders.1</span></td><td><code>ace58102e22d27a2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders.NoTemplateAvailabilityProvider</span></td><td><code>739dac9cd73b8a11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider</span></td><td><code>c8e6ed48e234ae13</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration</span></td><td><code>b413b079776f7161</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.EnableTransactionManagementConfiguration</span></td><td><code>7828a4c0c9725228</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration</span></td><td><code>d2b29d72351f0fa2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.TransactionTemplateConfiguration</span></td><td><code>7684d4a46ad564f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers</span></td><td><code>0e50645da243f606</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionProperties</span></td><td><code>674d39e0429cce0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration</span></td><td><code>09364df523bf07ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.PrimaryDefaultValidatorPostProcessor</span></td><td><code>1124718dab987572</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration</span></td><td><code>8ec8cd07f5bb4dd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.ValidatorAdapter</span></td><td><code>bf37d2723a759649</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties</span></td><td><code>892d60481c4a6c8c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties.IncludeAttribute</span></td><td><code>c71e44c1cd608b45</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties.Whitelabel</span></td><td><code>cd2e788130ebdf72</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.OnEnabledResourceChainCondition</span></td><td><code>bcfe3e828c90649b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties</span></td><td><code>0faef4a8b5f1ebae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty</span></td><td><code>bd28aea13339fb33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Accesslog</span></td><td><code>fada068da6ad88a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Accesslog.FORMAT</span></td><td><code>64b3d9f74587f8fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Threads</span></td><td><code>a1f70ab5c706f651</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Netty</span></td><td><code>aec215c04657b599</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Reactive</span></td><td><code>d733615dcd2ad1a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Reactive.Session</span></td><td><code>6a202cdd687ae986</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Servlet</span></td><td><code>f35d22607f2f235c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat</span></td><td><code>b7eb6f8721f110d0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Accesslog</span></td><td><code>bb5a8c8b051cc86a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Mbeanregistry</span></td><td><code>4c1139880b69999a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Remoteip</span></td><td><code>d483b861e6790188</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Resource</span></td><td><code>be36af6338430966</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Threads</span></td><td><code>0d34b1d470ef1e45</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow</span></td><td><code>b0bf85d7fbe59b56</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Accesslog</span></td><td><code>5e7192ebaf32cb13</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Options</span></td><td><code>867066e22b929e92</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Threads</span></td><td><code>cefae1b72b4ad6a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties</span></td><td><code>a5be7c797e64f59a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.LocaleResolver</span></td><td><code>e3db63a13ea13131</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources</span></td><td><code>89d581b98a428a67</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Cache</span></td><td><code>53cea447a3eff76f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Cache.Cachecontrol</span></td><td><code>3a6d6d725e4c7548</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain</span></td><td><code>7c95f9fd42dc69d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy</span></td><td><code>4115fe772165ae26</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy.Content</span></td><td><code>5a2a7757286d7cb9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy.Fixed</span></td><td><code>ae8ec324bf742ee9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration</span></td><td><code>cd1a158bb8bc8146</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition</span></td><td><code>d00fce5413bdd7ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration</span></td><td><code>1d26977e9fbd1e2b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration</span></td><td><code>276f2585d2cbf68b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration</span></td><td><code>53acae052c5a534f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.NettyWebServerFactoryCustomizer</span></td><td><code>bc521095f6b070fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.TomcatWebServerFactoryCustomizer</span></td><td><code>004e090d9950d2f3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.format.DateTimeFormatters</span></td><td><code>f6847d790d7f1ab0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.format.WebConversionService</span></td><td><code>e477bece1f868c50</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration</span></td><td><code>c3ea9ee90d0bd6f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration.ReactorNetty</span></td><td><code>ba94c87e932b705f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration</span></td><td><code>6c8f626582d82418</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration.WebClientCodecsConfiguration</span></td><td><code>0c4a10b9183e3a8f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientCodecCustomizer</span></td><td><code>a4336b7bfdabf9af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration</span></td><td><code>6618e1a3729eadec</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition</span></td><td><code>d3312b2681ca3619</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletConfiguration</span></td><td><code>3ccf942f5bddcc8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition</span></td><td><code>8f8429ff4af894f4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration</span></td><td><code>be60c9683aa9867a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletPath</span></td><td><code>f1bdfd60c5b4f7e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletRegistrationBean</span></td><td><code>9f108e9ea1bccf17</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration</span></td><td><code>0723dec1251ff550</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.LocaleCharsetMappingsCustomizer</span></td><td><code>13bae87be53dca76</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider</span></td><td><code>cdb9dd259079160c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration</span></td><td><code>69f730785f2b5b6c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.MultipartProperties</span></td><td><code>7b974f9e38d671c7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration</span></td><td><code>48ad6a3cdb026669</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.BeanPostProcessorsRegistrar</span></td><td><code>b9747b3ab4aa777e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration.EmbeddedTomcat</span></td><td><code>f317b847109cb3a5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryCustomizer</span></td><td><code>e826d9cfb1a6724e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.TomcatServletWebServerFactoryCustomizer</span></td><td><code>f426fdc12641ccb4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration</span></td><td><code>077da0b073a94bd4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.EnableWebMvcConfiguration</span></td><td><code>d92aa4375e5b9de1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter</span></td><td><code>4c370b302faaa69f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties</span></td><td><code>f4d67d1e4e676a59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Async</span></td><td><code>9538adddc7cf6e3b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Contentnegotiation</span></td><td><code>8999c7149ceb8a19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Format</span></td><td><code>a18f407c2f160b3f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.MatchingStrategy</span></td><td><code>7502084bf40bade9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Pathmatch</span></td><td><code>aafa074a7b929d90</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Servlet</span></td><td><code>56bc6e1095002de8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.View</span></td><td><code>4c4aaf224cd775de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WelcomePageHandlerMapping</span></td><td><code>1bdefa77c2965d22</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.AbstractErrorController</span></td><td><code>ba8345d004ea9804</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController</span></td><td><code>936e8421b08e0aba</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.DefaultErrorViewResolver</span></td><td><code>4c09e891b0b05ae7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration</span></td><td><code>570c19867358db64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration</span></td><td><code>445c9ee53b538d48</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.ErrorPageCustomizer</span></td><td><code>3058a8f9bbcc0201</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition</span></td><td><code>9fdaac4e8efa9119</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.PreserveErrorControllerTargetClassPostProcessor</span></td><td><code>b769d8901d32028c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.StaticView</span></td><td><code>e3f6f66f3b9b8eac</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration</span></td><td><code>0c603dbdfb65a603</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.TomcatWebSocketServletWebServerCustomizer</span></td><td><code>f1245a7785a79681</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration</span></td><td><code>5ad07f0bce38f370</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration</span></td><td><code>d5121640edbf0ccd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.ApplicationAvailabilityBean</span></td><td><code>35118002c85a0ea8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.AvailabilityChangeEvent</span></td><td><code>ac8d2de0265705bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.LivenessState</span></td><td><code>c9fa70c3ce5bdf83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.ReadinessState</span></td><td><code>8d4d2c75d559143a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.builder.ParentContextCloserApplicationListener</span></td><td><code>544a5d6a2b994ed0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudFoundryVcapEnvironmentPostProcessor</span></td><td><code>fc10cfadfe814ce2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform</span></td><td><code>810a83d4109bd6f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.1</span></td><td><code>b6fcde01348a76ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.2</span></td><td><code>a3dae51bfc46b586</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.3</span></td><td><code>eb70e2c1c92fa348</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.4</span></td><td><code>d67405424d95783b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.5</span></td><td><code>154b4ad83a1ff491</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.6</span></td><td><code>71af5d97943540c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer</span></td><td><code>721ca7d777f5e45a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer.ComponentScanPackageCheck</span></td><td><code>476b9f2b25350329</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer.ConfigurationWarningsPostProcessor</span></td><td><code>26d4cc5186c32f95</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ContextIdApplicationContextInitializer</span></td><td><code>33a71ad7921f5add</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ContextIdApplicationContextInitializer.ContextId</span></td><td><code>3dd23c747875d30c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.FileEncodingApplicationListener</span></td><td><code>72334ff426b0adb6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.TypeExcludeFilter</span></td><td><code>cd3c7034c6945980</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.annotation.ImportCandidates</span></td><td><code>b64bd43c378f84f2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.AnsiOutputApplicationListener</span></td><td><code>ff41877fc7070916</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData</span></td><td><code>293599fb55abd6de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.AlwaysPropertySourceOptions</span></td><td><code>0dd1c0f5b07f9f2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.Option</span></td><td><code>1db7bd24bb481e83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.Options</span></td><td><code>7d2899013f6fcbf8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.PropertySourceOptions</span></td><td><code>be9b533d7269fd85</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataActivationContext</span></td><td><code>0c236649242a28af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironment</span></td><td><code>05934bd193f027f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor</span></td><td><code>65969422fb61aa5b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.ContributorIterator</span></td><td><code>4784b89331fa213a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.ImportPhase</span></td><td><code>11266db9f0c72ba7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.Kind</span></td><td><code>388cad2d1ec41541</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributorPlaceholdersResolver</span></td><td><code>ad6374c030e8fcd0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors</span></td><td><code>7527176fcabae50d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.BinderOption</span></td><td><code>cb691f262e1b0b69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.ContributorConfigDataLocationResolverContext</span></td><td><code>6f2751d2ce4bfc47</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.ContributorDataLoaderContext</span></td><td><code>09821b25f81762f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.InactiveSourceChecker</span></td><td><code>761bbdd2c167c4cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor</span></td><td><code>58ba5b08a0153624</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentUpdateListener</span></td><td><code>659414a31e83bd35</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentUpdateListener.1</span></td><td><code>0b4e61c05d897817</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataImporter</span></td><td><code>2081615781dab4d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLoader</span></td><td><code>41dafc9029d66ba4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLoaders</span></td><td><code>5a69f4e14d3c4444</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocation</span></td><td><code>a92671cb6407dcd8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocationBindHandler</span></td><td><code>1466660f1e71c9f7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocationResolvers</span></td><td><code>561d4f0f3b82a9da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction</span></td><td><code>23409825201d8981</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction.1</span></td><td><code>2eb1514f5fcba2c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction.2</span></td><td><code>3bab05bbe828a160</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataProperties</span></td><td><code>b1cdfe47ed0c154c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataProperties.LegacyProfilesBindHandler</span></td><td><code>233bef46a1752390</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResolutionResult</span></td><td><code>a32d0336145de04c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResource</span></td><td><code>0a33628daaf3aaf2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResourceNotFoundException</span></td><td><code>f770e7c119409d7b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigTreeConfigDataLoader</span></td><td><code>0f1b4c850e7857d8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigTreeConfigDataLocationResolver</span></td><td><code>4773ab01d1f96266</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.DelegatingApplicationContextInitializer</span></td><td><code>ffb2fc577ff9b841</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.DelegatingApplicationListener</span></td><td><code>118807ca7053a160</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.InvalidConfigDataPropertyException</span></td><td><code>ebad2910c6658803</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.LocationResourceLoader</span></td><td><code>27610e74dad6b86d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.LocationResourceLoader.ResourceType</span></td><td><code>ff4b8be4c9b3e90a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.Profiles</span></td><td><code>967b6ada63970455</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.Profiles.Type</span></td><td><code>fe3e6379dc6aa2e3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataLoader</span></td><td><code>11108b9822bfda5d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataLocationResolver</span></td><td><code>fe3c86d2bdcd6ced</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataReference</span></td><td><code>426f4760d4f55df3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataResource</span></td><td><code>9fae8212c0857723</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.UseLegacyConfigProcessingException</span></td><td><code>d67e031ee10bbb16</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.UseLegacyConfigProcessingException.UseLegacyProcessingBindHandler</span></td><td><code>f02509ac7b34b22b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationContextInitializedEvent</span></td><td><code>30442b977fa15441</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent</span></td><td><code>6f66ed7c373faa00</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationPreparedEvent</span></td><td><code>57634f2aa9c5e321</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationReadyEvent</span></td><td><code>ac5cff4337448da8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationStartedEvent</span></td><td><code>d859a7e804c27ad0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationStartingEvent</span></td><td><code>c3d43901464275e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.EventPublishingRunListener</span></td><td><code>04dd73c089c4ba49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.SpringApplicationEvent</span></td><td><code>1659aa41af31bb9e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.logging.LoggingApplicationListener</span></td><td><code>a370aa0c93896b2e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.logging.LoggingApplicationListener.Lifecycle</span></td><td><code>5b0aadbbe15ad96c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.BoundConfigurationProperties</span></td><td><code>4ba022222b05f5c3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBean</span></td><td><code>3934a904f99d8ec0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBean.BindMethod</span></td><td><code>a91fdabee284a27e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBeanRegistrar</span></td><td><code>374b6bcd0e7e7fa0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBindConstructorProvider</span></td><td><code>5b01bd4e2f1a233e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder</span></td><td><code>f1a4d61d93ded3f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder.ConfigurationPropertiesBindHandler</span></td><td><code>3487e25afbdcce31</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder.Factory</span></td><td><code>1ae556af5c98bff2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor</span></td><td><code>f28c3f8b2ac3eae7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesJsr303Validator</span></td><td><code>766b11e437f25f86</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConversionServiceDeducer</span></td><td><code>d0e47179511e0fa6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConversionServiceDeducer.ConverterBeans</span></td><td><code>eb606f33304f7c4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar</span></td><td><code>2aa12e268b983c7a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper</span></td><td><code>28da7628c93f72a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper.NullPointerExceptionSafeSupplier</span></td><td><code>ea4eaa4602e47b14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper.Source</span></td><td><code>d12e8e09b9f950b9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertySourcesDeducer</span></td><td><code>8d676a5ee50beab9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AbstractBindHandler</span></td><td><code>a4f677f99d80a62f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateBinder</span></td><td><code>75f5644082301ccb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateBinder.AggregateSupplier</span></td><td><code>f3c8fbab9d95c01f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateElementBinder</span></td><td><code>7ff0ed7dcc3269bf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ArrayBinder</span></td><td><code>a536fd6b06e5650b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConstructorProvider</span></td><td><code>bf383e65f307f795</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter</span></td><td><code>4a28b9020c2e37c1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.ResolvableTypeDescriptor</span></td><td><code>ef8ee4e215273463</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.TypeConverterConversionService</span></td><td><code>03d809f84666a069</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.TypeConverterConverter</span></td><td><code>32ce998262bf0407</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindHandler</span></td><td><code>9d34d454c55a542d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindHandler.1</span></td><td><code>0eb1c27d19a82c8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindResult</span></td><td><code>40fd776a7ab036bf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Bindable</span></td><td><code>4b633fe04ffb0563</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Bindable.BindRestriction</span></td><td><code>8def3daf6d9e4b4e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Binder</span></td><td><code>b70df904a74667cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Binder.Context</span></td><td><code>debfddef5ba73382</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BoundPropertiesTrackingBindHandler</span></td><td><code>56cde931352c19c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.CollectionBinder</span></td><td><code>3de1185aef5815b7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.DataObjectPropertyName</span></td><td><code>b9df91c08bfd21e4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.DefaultBindConstructorProvider</span></td><td><code>71e3406b61c7b5c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.IndexedElementsBinder</span></td><td><code>7bbd6a4677ea0f02</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.IndexedElementsBinder.IndexedCollectionSupplier</span></td><td><code>7df6f585712ab521</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder</span></td><td><code>57b4de81ee969449</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.Bean</span></td><td><code>8c1e0339f5538491</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.BeanProperty</span></td><td><code>2ec06b177923cebb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.BeanSupplier</span></td><td><code>529d980100257e1b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.MapBinder</span></td><td><code>5212c888e14fdf69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.MapBinder.EntryBinder</span></td><td><code>a7c6333ce48af3ae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.PlaceholdersResolver</span></td><td><code>ef20d592de5df50c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.PropertySourcesPlaceholdersResolver</span></td><td><code>ad2f96fb3d5d68e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder</span></td><td><code>46554dbe2535ade2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.ConstructorParameter</span></td><td><code>d3314e07b609fa9f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.DefaultValueObject</span></td><td><code>5839892cdf4a736d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.ValueObject</span></td><td><code>fce8bf270f6ad610</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.handler.IgnoreTopLevelConverterNotFoundBindHandler</span></td><td><code>a6694a3778e5750d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.handler.NoUnboundElementsBindHandler</span></td><td><code>c6cada51e776e74f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationProperty</span></td><td><code>7710126579fdb65d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName</span></td><td><code>fdc2e9b08f52f4c4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.ElementType</span></td><td><code>1bc2287cf335d392</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.Elements</span></td><td><code>729f7b93544adef2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.ElementsParser</span></td><td><code>01b0c99f7b27e766</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.Form</span></td><td><code>70a2eacff140f23a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySource</span></td><td><code>41542f36d0cb2c87</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySources</span></td><td><code>30cebaf2378d0df9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertyResolver</span></td><td><code>581b02045b7e3898</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertyResolver.DefaultResolver</span></td><td><code>ebb8109e58798e4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource</span></td><td><code>b50bfe34ea083cd2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyState</span></td><td><code>3bd5fcebbe04f89a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.DefaultPropertyMapper</span></td><td><code>256bd77f8ce20bb8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.DefaultPropertyMapper.LastMapping</span></td><td><code>1d4c8fde7b560f15</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.FilteredConfigurationPropertiesSource</span></td><td><code>bf93c3f4035fe741</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.FilteredIterableConfigurationPropertiesSource</span></td><td><code>9b4b37705b45e2f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.IterableConfigurationPropertySource</span></td><td><code>442a435bb45623f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.MapConfigurationPropertySource</span></td><td><code>b01b81cbfb7e2f20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.PropertyMapper</span></td><td><code>9f019c62a1a9ab02</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SoftReferenceConfigurationPropertyCache</span></td><td><code>c5c0eb066e57f8fe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySource</span></td><td><code>e78564b84cc588a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySources</span></td><td><code>7ba889b7c1a4defd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.SourcesIterator</span></td><td><code>c5dd104a33c35dbd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource</span></td><td><code>9cc37024cecbe973</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource.ConfigurationPropertyNamesIterator</span></td><td><code>2a525ab83509cc4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource.Mappings</span></td><td><code>b499360875ca05c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SystemEnvironmentPropertyMapper</span></td><td><code>3a0ff0c4a3b81963</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.UnboundElementsSourceFilter</span></td><td><code>eff833ddd74dc201</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.ApplicationConversionService</span></td><td><code>703105b1da56b762</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.ArrayToDelimitedStringConverter</span></td><td><code>24cfa2634c416f14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CharArrayFormatter</span></td><td><code>c64f59a5a3d1e2cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CharSequenceToObjectConverter</span></td><td><code>5f4ba54cd2266aa3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CollectionToDelimitedStringConverter</span></td><td><code>82362d527b9cfd21</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DelimitedStringToArrayConverter</span></td><td><code>db11ae5fb13bdb8e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DelimitedStringToCollectionConverter</span></td><td><code>28be1a1ceda69841</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DurationToNumberConverter</span></td><td><code>2d81edc14a86cf8a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DurationToStringConverter</span></td><td><code>3e40c346f5ee0df5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.InetAddressFormatter</span></td><td><code>582137ff797f415c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.InputStreamSourceToByteArrayConverter</span></td><td><code>5d58d892f7b71525</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.IsoOffsetFormatter</span></td><td><code>d28d6879b708f1e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientBooleanToEnumConverterFactory</span></td><td><code>f9c9f6fb2af00c62</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientObjectToEnumConverterFactory</span></td><td><code>2d8246ca81d1c203</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientStringToEnumConverterFactory</span></td><td><code>b974637d4886dfe1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToDataSizeConverter</span></td><td><code>dc8a9039ec592965</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToDurationConverter</span></td><td><code>32dc759bfeafac05</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToPeriodConverter</span></td><td><code>097b2d62b48c3caa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.PeriodToStringConverter</span></td><td><code>898a24b0085b4510</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToDataSizeConverter</span></td><td><code>18153304533818bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToDurationConverter</span></td><td><code>e3e30fe7d38decff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToFileConverter</span></td><td><code>a4915273d43e589c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToPeriodConverter</span></td><td><code>e8ecc06eb929a8eb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.EnvironmentPostProcessorApplicationListener</span></td><td><code>7e08a225af86661d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.EnvironmentPostProcessorsFactory</span></td><td><code>2cf73988660f638c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedMapPropertySource</span></td><td><code>a044b67668343b55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader</span></td><td><code>0271800f17dff848</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader.CharacterReader</span></td><td><code>ebd6fa6be0e68752</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader.Document</span></td><td><code>654b1d37cb62cafc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.PropertiesPropertySourceLoader</span></td><td><code>e52b2d2f4d270a4d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.RandomValuePropertySource</span></td><td><code>2746586b8a679fb1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.RandomValuePropertySourceEnvironmentPostProcessor</span></td><td><code>72138b3465c9c8f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.ReflectionEnvironmentPostProcessorsFactory</span></td><td><code>b3212f7654b89171</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor</span></td><td><code>cf7b857c794f2edc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor.JsonPropertyValue</span></td><td><code>25de8b09e14d6d2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor</span></td><td><code>1a830952911713d0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor.OriginAwareSystemEnvironmentPropertySource</span></td><td><code>20b9906af5ffad65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.YamlPropertySourceLoader</span></td><td><code>f9489214398cb8ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.flyway.FlywayDatabaseInitializerDetector</span></td><td><code>bd671edf9cf2e7cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonComponentModule</span></td><td><code>01462b5a32f01051</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonMixinModule</span></td><td><code>6b30c045a4f3ed8f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonMixinModule.JsonMixinComponentScanner</span></td><td><code>14381f1485673e99</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.AbstractDataSourceInitializerDatabaseInitializerDetector</span></td><td><code>96d42260e95f1b44</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder</span></td><td><code>8b3ec702b821e4f5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.DataSourceProperties</span></td><td><code>d3a95de047df4ae0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.DataSourceProperty</span></td><td><code>f14c6423912c9ded</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.HikariDataSourceProperties</span></td><td><code>8033ca0684b2dc4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.MappedDataSourceProperties</span></td><td><code>851a2211da16f4d3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.MappedDataSourceProperty</span></td><td><code>2b0f4e98c7ecd000</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceUnwrapper</span></td><td><code>96ae9e6c67cbc85b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver</span></td><td><code>85914347b7d471b8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.1</span></td><td><code>8f52d335c4fc3782</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.2</span></td><td><code>d9fc0001d270195f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.3</span></td><td><code>449099e15f17309c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.4</span></td><td><code>f8b8ceaa28d47353</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.5</span></td><td><code>591a6bf4ccb3545c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.6</span></td><td><code>88ae3de58527be59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.7</span></td><td><code>9d4d9484e44a72f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.EmbeddedDatabaseConnection</span></td><td><code>c505145f779a1164</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.SpringJdbcDependsOnDatabaseInitializationDetector</span></td><td><code>9e81f1c604b7be64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.UnsupportedDataSourcePropertyException</span></td><td><code>4707bd9b9de4f507</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.init.DataSourceScriptDatabaseInitializer</span></td><td><code>bd6e4261df5ca426</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.init.DataSourceScriptDatabaseInitializerDetector</span></td><td><code>6847ed136e40588f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.AbstractDataSourcePoolMetadata</span></td><td><code>d441902761bb082c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.CompositeDataSourcePoolMetadataProvider</span></td><td><code>74a306117522e489</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.HikariDataSourcePoolMetadata</span></td><td><code>4ffbeec9b0a8302e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jooq.JooqDependsOnDatabaseInitializationDetector</span></td><td><code>a0a6b56fe4f46dcc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.liquibase.LiquibaseDatabaseInitializerDetector</span></td><td><code>f8baa61efe2e96ed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.AbstractLoggingSystem</span></td><td><code>1a01d07c20417590</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.AbstractLoggingSystem.LogLevels</span></td><td><code>c30b1c954768d7b4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog</span></td><td><code>42cb6d347ba750d5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.1</span></td><td><code>d2b354a9ec3311ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.Line</span></td><td><code>43ea925525777cf5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.Lines</span></td><td><code>0374d672935f6518</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLogs</span></td><td><code>41861103c5b30e1b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DelegatingLoggingSystemFactory</span></td><td><code>f307a9b432cf4dfe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LogFile</span></td><td><code>21999b14dda2d435</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LogLevel</span></td><td><code>17241f9b3e215178</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerConfigurationComparator</span></td><td><code>d2534e372cbe96d7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerGroup</span></td><td><code>ccc6ba973c7cc3fc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerGroups</span></td><td><code>e8cfe9b7a52e6af9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingInitializationContext</span></td><td><code>1e26223a12306c6f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystem</span></td><td><code>07880b27a605b8cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystemFactory</span></td><td><code>b8af2cd20ab65f90</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystemProperties</span></td><td><code>db5c847f3dc4dcf4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.Slf4JLoggingSystem</span></td><td><code>a81a348e70fcef83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.java.JavaLoggingSystem.Factory</span></td><td><code>1c2549f66f91e3dd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.Factory</span></td><td><code>f1cf3f37debdadb0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.log4j2.SpringBootPropertySource</span></td><td><code>46381c182c9b004f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem</span></td><td><code>0fd8927496845ba7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem.1</span></td><td><code>532c546583b68b69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem.Factory</span></td><td><code>4a04c8fc61cff16c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystemProperties</span></td><td><code>dcf48e3bf7cb449e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringBootJoranConfigurator</span></td><td><code>eb4820c89dc70fd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringProfileAction</span></td><td><code>c39453792014f361</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringPropertyAction</span></td><td><code>48a644e9173b3dc0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.Origin</span></td><td><code>98257a656c3ed6b3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginLookup</span></td><td><code>b0affa2ef074d81a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedResource</span></td><td><code>5ba774844310a338</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedValue</span></td><td><code>82f3d79b1daa6b42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedValue.OriginTrackedCharSequence</span></td><td><code>999e48e771dd5520</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.PropertySourceOrigin</span></td><td><code>f5f11ab9cd2a09fc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.TextResourceOrigin</span></td><td><code>2802c354480d5643</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.TextResourceOrigin.Location</span></td><td><code>2a7fe95db89d04e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder</span></td><td><code>0ff726a9200c2621</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder.Builder</span></td><td><code>c270c08c12dccef9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.JpaDatabaseInitializerDetector</span></td><td><code>7b15ff06676289dc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.JpaDependsOnDatabaseInitializationDetector</span></td><td><code>f5833422c26124bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy</span></td><td><code>7c31b19b079c2702</code></td></tr><tr><td><span class="el_class">org.springframework.boot.r2dbc.init.R2dbcScriptDatabaseInitializerDetector</span></td><td><code>ce6a5cca4c2a5e54</code></td></tr><tr><td><span class="el_class">org.springframework.boot.reactor.DebugAgentEnvironmentPostProcessor</span></td><td><code>7bff2e88b8a40f7c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.rsocket.context.RSocketPortInfoApplicationContextInitializer</span></td><td><code>0766208683a69865</code></td></tr><tr><td><span class="el_class">org.springframework.boot.rsocket.context.RSocketPortInfoApplicationContextInitializer.Listener</span></td><td><code>7f52017ce138dec9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer</span></td><td><code>452daca8f0bb4478</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer.ScriptLocationResolver</span></td><td><code>5866996eb8f6f08f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.DatabaseInitializationMode</span></td><td><code>735c356aa2882d0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.DatabaseInitializationSettings</span></td><td><code>f169ec45cfebab33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AbstractBeansOfTypeDatabaseInitializerDetector</span></td><td><code>281d75e70d310330</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AbstractBeansOfTypeDependsOnDatabaseInitializationDetector</span></td><td><code>50cca425c17665f5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AnnotationDependsOnDatabaseInitializationDetector</span></td><td><code>73793f565397c6c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.BeansOfTypeDetector</span></td><td><code>d62d5dd256627bfa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer</span></td><td><code>2778d84061ceb308</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer.DependsOnDatabaseInitializationPostProcessor</span></td><td><code>39001c9928805f8b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer.DependsOnDatabaseInitializationPostProcessor.InitializerBeanNames</span></td><td><code>4f9dc611692499bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializerDetector</span></td><td><code>62add512d3b089bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.system.ApplicationPid</span></td><td><code>a4e6f9c27bd7ed07</code></td></tr><tr><td><span class="el_class">org.springframework.boot.task.TaskExecutorBuilder</span></td><td><code>737a345c7b511c17</code></td></tr><tr><td><span class="el_class">org.springframework.boot.task.TaskSchedulerBuilder</span></td><td><code>89a813fd6c603401</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory</span></td><td><code>9b8ba8026d0e5344</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener</span></td><td><code>a3a6fc880cc0eede</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener.PostProcessor</span></td><td><code>48c58581625994ed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory</span></td><td><code>42f3315b066281e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory.DisableMetricExportContextCustomizer</span></td><td><code>31307b5da98adea0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizerFactory</span></td><td><code>e7bed41bd1b92bba</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.AnnotationsPropertySource</span></td><td><code>362d5632916b5947</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer</span></td><td><code>2949e4a211d3993d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer.PropertyMappingCheckBeanPostProcessor</span></td><td><code>39d913a00fea47cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizerFactory</span></td><td><code>92800aae53815f65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.SkipPropertyMapping</span></td><td><code>b0e54b0c3c9e505d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener</span></td><td><code>a598cadabcf5242e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener</span></td><td><code>d648fac93d006266</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener</span></td><td><code>6fc0a865981d7bff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.SpringBootMockMvcBuilderCustomizer.DeferredLinesWriter</span></td><td><code>7c088e07fabaed5a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory</span></td><td><code>ef5a380b14a36625</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory.Customizer</span></td><td><code>3dbab5c65cc814f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverScope</span></td><td><code>ab0ab8f8fe9e5f55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener</span></td><td><code>fa9738ec33dbac9b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener</span></td><td><code>d77f2ee82ac99b56</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.ImportsContextCustomizerFactory</span></td><td><code>7f796a36dfe5a90f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader</span></td><td><code>65ad00df4ffb54e5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.ContextCustomizerAdapter</span></td><td><code>f0fd4c729aa8c18a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.PrepareEnvironmentListener</span></td><td><code>6e94cf22931581a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.WebConfigurer</span></td><td><code>75f7600636eb69df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.WebConfigurer.DefensiveWebApplicationContextInitializer</span></td><td><code>9a5216dffe426a11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTest.WebEnvironment</span></td><td><code>f79db620845a35c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestArgs</span></td><td><code>1f485f078546a807</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestContextBootstrapper</span></td><td><code>f3fc969f8a88c627</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestWebEnvironment</span></td><td><code>4965281bf733ffc5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer</span></td><td><code>41bac6ceb9564498</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizerFactory</span></td><td><code>eaee9436d9498473</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.TestTypeExcludeFilter</span></td><td><code>0ca625b295bfe708</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.graphql.tester.HttpGraphQlTesterContextCustomizerFactory</span></td><td><code>006bafdcc621398b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory</span></td><td><code>0370cdaa1978f335</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory.DuplicateJsonObjectContextCustomizer</span></td><td><code>34bd2e25d95286cb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.Definition</span></td><td><code>252313e6676f6007</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.DefinitionsParser</span></td><td><code>1a26532190d1d296</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockDefinition</span></td><td><code>2639a210f7bbd560</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockReset</span></td><td><code>576de1a6418d13cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockReset.ResetInvocationListener</span></td><td><code>b38b064fe11cee19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoBeans</span></td><td><code>99f0ebef15b45d86</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoContextCustomizer</span></td><td><code>33445d48848930b3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoContextCustomizerFactory</span></td><td><code>aed4e59f9e43fbd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoPostProcessor</span></td><td><code>25c6000cde1b7481</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoPostProcessor.SpyPostProcessor</span></td><td><code>d04da26917e3e9da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener</span></td><td><code>903fb43fdc655586</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.MockitoAnnotationCollection</span></td><td><code>b2b18deb7002db81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.QualifierDefinition</span></td><td><code>0234983ff5c47745</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener</span></td><td><code>b13c0d0b29ec4be5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.SpringBootMockResolver</span></td><td><code>0d421c9057a50572</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.web.SpringBootMockServletContext</span></td><td><code>7568f8e51eea38ae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues</span></td><td><code>7803145f193530d1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues.Pair</span></td><td><code>e429e19a9a786f92</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues.Type</span></td><td><code>591abca8059212df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.SpringBootTestRandomPortEnvironmentPostProcessor</span></td><td><code>ac6d23ab6da7b0e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer</span></td><td><code>461431b63b1ab32d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.client.TestRestTemplateContextCustomizerFactory</span></td><td><code>042274766736acc7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer</span></td><td><code>cb11ff065f403a20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizerFactory</span></td><td><code>849415ddd1a778f3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory</span></td><td><code>42c71bb1304daa4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator</span></td><td><code>993835fcda9f6e9b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.1</span></td><td><code>622a3e1e6126a17d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.TypeSupplier</span></td><td><code>f5ef5b60d243d804</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.TypeSupplier.1</span></td><td><code>61301b73b055926e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe</span></td><td><code>19168437a1b76045</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.Callbacks</span></td><td><code>3a56daa68958c2d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.GenericTypeFilter</span></td><td><code>f7970bb527b4dd0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.InvocationResult</span></td><td><code>da598d389dfcaca1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.LambdaSafeCallback</span></td><td><code>043f285fed380a0a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.MessageInterpolatorFactory</span></td><td><code>9207b3152f6ec612</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.MessageSourceMessageInterpolator</span></td><td><code>3009a7e3514d3aa4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.beanvalidation.FilteredMethodValidationPostProcessor</span></td><td><code>5c8da2a6fcea6e20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.beanvalidation.MethodValidationExcludeFilter</span></td><td><code>1813cbc31db4dd38</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.context.ServerPortInfoApplicationContextInitializer</span></td><td><code>68757a22d379c63e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.embedded.tomcat.TldPatterns</span></td><td><code>627439507d6a9381</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory</span></td><td><code>aa14258009eb9519</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.reactive.context.AnnotationConfigReactiveWebServerApplicationContext.Factory</span></td><td><code>385589869859bd32</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.AbstractConfigurableWebServerFactory</span></td><td><code>d2bfb849a45c8e69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Compression</span></td><td><code>bbcc5a7f0fbb5e49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Cookie</span></td><td><code>23e1a86e1ae9f13e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.ErrorPage</span></td><td><code>cef2ee2c8b306fbd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.ErrorPageRegistrarBeanPostProcessor</span></td><td><code>f2a205622207ff82</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Http2</span></td><td><code>330989d870e36af7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.MimeMappings</span></td><td><code>bba4390181b888cc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.MimeMappings.Mapping</span></td><td><code>91659a0763c3cfe0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Shutdown</span></td><td><code>f4833b7f976f4aeb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.WebServerFactoryCustomizerBeanPostProcessor</span></td><td><code>a4860a247a617dea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.AbstractFilterRegistrationBean</span></td><td><code>e201e36ed4aaccfd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean</span></td><td><code>b43c345c924b8904</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DispatcherType</span></td><td><code>ea9b13e776316e4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DynamicRegistrationBean</span></td><td><code>d1c89fcc74b65932</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.FilterRegistrationBean</span></td><td><code>821f707e37d28afa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.MultipartConfigFactory</span></td><td><code>925d64e14294a847</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.RegistrationBean</span></td><td><code>2314275215e5a61a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.ServletRegistrationBean</span></td><td><code>ddd7424c9db9d22b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.Factory</span></td><td><code>ff57a6724e266b72</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.context.ApplicationServletEnvironment</span></td><td><code>feb1813305b46aca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.error.DefaultErrorAttributes</span></td><td><code>304b805043be57dd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.error.ErrorAttributes</span></td><td><code>4946286e06300d10</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter</span></td><td><code>f13eb2a3ff6ac579</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter.AlwaysAllowWebInvocationPrivilegeEvaluator</span></td><td><code>46a23f368b207380</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter</span></td><td><code>da1849011569b2ea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedFormContentFilter</span></td><td><code>0314570b28c6db70</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter</span></td><td><code>0bcb3364cc548eff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.AbstractServletWebServerFactory</span></td><td><code>626c2b5958a3e2de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.DocumentRoot</span></td><td><code>a1c04ac314b75111</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Encoding</span></td><td><code>55f4ec770925ce55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Encoding.Type</span></td><td><code>8a6247e6b4b63d95</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Jsp</span></td><td><code>85aff8301aec13ee</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Session</span></td><td><code>5b97c7a6aaa4b043</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Session.Cookie</span></td><td><code>e5908aba0539e954</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.SessionStoreDirectory</span></td><td><code>ab126f47b9cf2782</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.StaticResourceJars</span></td><td><code>9a24f60a090ba63b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.support.ServletContextApplicationContextInitializer</span></td><td><code>a398dfec137f67e0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator</span></td><td><code>16659dd60b7ac522</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData</span></td><td><code>76b8216645b5e5c9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.1</span></td><td><code>1b2cea60a682e2c3</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.2</span></td><td><code>48cb6c18556a29b4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.3</span></td><td><code>c542b77694d94c97</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.Source</span></td><td><code>ff8f43537c34cd3b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AsmApi</span></td><td><code>1d4074768b3cdf07</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Block</span></td><td><code>e2a6d60f476b1ad3</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter</span></td><td><code>3ba8734723964e36</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.1</span></td><td><code>39f150d2118e1804</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.2</span></td><td><code>12f18330a16d0cb0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.3</span></td><td><code>6236e78708abef85</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.FieldInfo</span></td><td><code>bab342d76f528d96</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassInfo</span></td><td><code>d2740fe06275245b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassLoaderAwareGeneratorStrategy</span></td><td><code>69ca9256582983bf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader</span></td><td><code>855515cc037952e8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader.1</span></td><td><code>0bb78b05c2e49eea</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader.EarlyExitException</span></td><td><code>ca8401a07d39dc83</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CodeEmitter</span></td><td><code>f4079541ab09e9ac</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CodeEmitter.State</span></td><td><code>2ec828dd81bc0c0c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CollectionUtils</span></td><td><code>5a718fd52de86b53</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Constants</span></td><td><code>082826b62bc5a8a9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DebuggingClassWriter</span></td><td><code>83379891fa1a41a5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DebuggingClassWriter.1</span></td><td><code>76a5cf5cdcbd19be</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DefaultGeneratorStrategy</span></td><td><code>e12309df161d92d9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DefaultNamingPolicy</span></td><td><code>f800bc1e724c5de2</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DuplicatesPredicate</span></td><td><code>72b22809364bc365</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils</span></td><td><code>2acf8c170e46a0fe</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.10</span></td><td><code>15e0b91c23b0ff36</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.11</span></td><td><code>cb38cfb536f16439</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.12</span></td><td><code>e1f96bc4886152aa</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.13</span></td><td><code>f3ff067069b9242e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.14</span></td><td><code>1e0ff056f23c7b6a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.15</span></td><td><code>f6a268f6f3dabfd8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.16</span></td><td><code>2d4566661b378d53</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.5</span></td><td><code>e2151d0c3b851bb4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.6</span></td><td><code>4de24939f0a7665a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.7</span></td><td><code>6e452784329d5558</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.8</span></td><td><code>1712bc0fd784fe03</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.9</span></td><td><code>7651c322c3d5d3de</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.ArrayDelimiters</span></td><td><code>18ab89bbb8bc1140</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory</span></td><td><code>aaff5e32f290b72d</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.1</span></td><td><code>395e231da0305811</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.2</span></td><td><code>bda3ca578abbccd7</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.3</span></td><td><code>789f11328fb9edb4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.4</span></td><td><code>e2459242d9d89d51</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.Generator</span></td><td><code>57db1ed68fa4a1c5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Local</span></td><td><code>5d30973c49f46e69</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.LocalVariablesSorter</span></td><td><code>8f972b2a9b8f51bc</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.LocalVariablesSorter.State</span></td><td><code>0d6e48dab9681aaf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodInfo</span></td><td><code>d516e0c1efb7cca8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodInfoTransformer</span></td><td><code>4fb5bd591e720eda</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodWrapper</span></td><td><code>865dbce2ad8e7d24</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodWrapper.MethodWrapperKey..KeyFactoryByCGLIB..552be97a</span></td><td><code>f35945d793084d6e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils</span></td><td><code>c9ec97d6f34b8bad</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.1</span></td><td><code>c4e753e259164426</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.2</span></td><td><code>da31569df7b7157b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.3</span></td><td><code>d4062a1215a41c24</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.4</span></td><td><code>88a5e23807bd1182</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.5</span></td><td><code>7b8e5c1ee318f532</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.7</span></td><td><code>c6511bc675f2a21e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.8</span></td><td><code>76e844b510e9d626</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.RejectModifierPredicate</span></td><td><code>eae531685546bb9c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Signature</span></td><td><code>351053ceeb854fc2</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.SpringNamingPolicy</span></td><td><code>50bfffd266d25701</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.TypeUtils</span></td><td><code>e82358d7b15f29b0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.VisibilityPredicate</span></td><td><code>2d3a360a28cb8493</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.WeakCacheKey</span></td><td><code>27e63a2597959ca4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.CustomizerRegistry</span></td><td><code>24225651041ba904</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache</span></td><td><code>88704dd4e739bbc8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache.1</span></td><td><code>6ef651073f2e7e04</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache.2</span></td><td><code>a41eea9d584fdc4f</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.BridgeMethodResolver</span></td><td><code>bbb9f15787112ede</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.CallbackInfo</span></td><td><code>d6fd445a3d6f017f</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.DispatcherGenerator</span></td><td><code>0ac6262c87237a40</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer</span></td><td><code>372eac5588e1c83d</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.1</span></td><td><code>3ab2a2d4a9ab9026</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.2</span></td><td><code>485314879038802a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.3</span></td><td><code>272f30984224adbb</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.4</span></td><td><code>17fb00bcbadf891e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.5</span></td><td><code>3ad491ddc9838467</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.6</span></td><td><code>09222951f58cd763</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.EnhancerFactoryData</span></td><td><code>ca8adaae39389f9a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.EnhancerKey..KeyFactoryByCGLIB..4ce19e8f</span></td><td><code>5f5a3ce9c5601714</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.FixedValueGenerator</span></td><td><code>20384f48bf1763a6</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.InvocationHandlerGenerator</span></td><td><code>a198020a9c973f61</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.LazyLoaderGenerator</span></td><td><code>fb509e8d9bbbbded</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator</span></td><td><code>4e9d41c80f250339</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator.1</span></td><td><code>0e1a460afeb4e30a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator.2</span></td><td><code>96e07b9c8833b9bf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy</span></td><td><code>0cb4c15aff0bcd9c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy.CreateInfo</span></td><td><code>d3b5659617fa2a28</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy.FastClassInfo</span></td><td><code>3645d6c2256ef51b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOp</span></td><td><code>49f25723ade142d1</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOp.1</span></td><td><code>acc3921bfc2620d8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOpGenerator</span></td><td><code>fa8188f64396c488</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClass</span></td><td><code>f43165c248a79d5a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClass.Generator</span></td><td><code>7292c80c42635ce5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter</span></td><td><code>a897a57567b25d62</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.1</span></td><td><code>3fc8e1d69dab0eb1</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.3</span></td><td><code>3de8e736f1f0db99</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.4</span></td><td><code>64317dddff70ed76</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.GetIndexCallback</span></td><td><code>d6fda17b9938d83c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.ClassEmitterTransformer</span></td><td><code>72ae4c57048be866</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.ClassTransformer</span></td><td><code>8984f423cbc28a10</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.TransformingClassGenerator</span></td><td><code>28e7820bc18cb3d4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration</span></td><td><code>f8d8c07a29cda016</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration</span></td><td><code>1379fe3e4c0eefaa</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration</span></td><td><code>6949360e15f3168a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.JpaInvokerConfiguration</span></td><td><code>be795b861e8f244a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshProperties</span></td><td><code>f1612bb9bb376284</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeBeanDefinitionEnhancer</span></td><td><code>615a7c49211f80d3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.BootstrapApplicationListener</span></td><td><code>13b1dc045c4125f0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.LoggingSystemShutdownListener</span></td><td><code>8a0b024828b5c942</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.RefreshBootstrapRegistryInitializer</span></td><td><code>fbe90584be2b2a28</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.TextEncryptorConfigBootstrapper</span></td><td><code>7d3fc68745d62da4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.AbstractEnvironmentDecrypt</span></td><td><code>fa88784cf7045705</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.DecryptEnvironmentPostProcessor</span></td><td><code>b238d867c22e47bb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.KeyProperties</span></td><td><code>ca8741730c0c01c9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore</span></td><td><code>8eaf0e7c033376f9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.RsaProperties</span></td><td><code>b47eb8fe6da4ecd0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.TextEncryptorUtils</span></td><td><code>536683f2fcff35f6</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.TextEncryptorUtils.FailsafeTextEncryptor</span></td><td><code>55f9183a478ac927</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.CommonsClientAutoConfiguration</span></td><td><code>94f33960cef9de31</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.DefaultServiceInstance</span></td><td><code>8de79ab86904064c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.HostInfoEnvironmentPostProcessor</span></td><td><code>da20c621e37bbe48</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.ReactiveCommonsClientAutoConfiguration</span></td><td><code>e1fc408fe0712ebc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.actuator.HasFeatures</span></td><td><code>78542e605a418748</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.actuator.NamedFeature</span></td><td><code>236bbd98bdc5046b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient</span></td><td><code>01d8d62ef3f0aa8c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration</span></td><td><code>04e3c1e8a8d71370</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.reactive.ReactiveCompositeDiscoveryClient</span></td><td><code>1e28db6e568114a5</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.reactive.ReactiveCompositeDiscoveryClientAutoConfiguration</span></td><td><code>77caf4e9bda30857</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicatorProperties</span></td><td><code>abaf83b6606f4e28</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient</span></td><td><code>2c3a8ade11e4a217</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration</span></td><td><code>0a774331b3e56377</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties</span></td><td><code>66cb7ae3cb701aa2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryClient</span></td><td><code>3699e8040f41154e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryClientAutoConfiguration</span></td><td><code>aea85a4544bc6ce7</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryProperties</span></td><td><code>b0241f1318ed5e7a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration.RetryMissingOrDisabledCondition</span></td><td><code>ff2b3ec62c0fc068</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration</span></td><td><code>e3239370dc98d74e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration.OnAnyLoadBalancerImplementationPresentCondition</span></td><td><code>68512305d373ace0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration</span></td><td><code>e62ab413acfc21cf</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration</span></td><td><code>893ee046dd025e11</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties</span></td><td><code>2cdc133784ad0ef1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration</span></td><td><code>308edb4b2a2034e8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration</span></td><td><code>2a2b333f81b27e53</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor</span></td><td><code>ba43ddc4486af185</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor.1</span></td><td><code>fd9fbd97354c1ada</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultApacheHttpClientConnectionManagerFactory</span></td><td><code>7655020629cc5234</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultApacheHttpClientFactory</span></td><td><code>ebb79ced5836c1a0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultOkHttpClientConnectionPoolFactory</span></td><td><code>fa31680790c61982</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultOkHttpClientFactory</span></td><td><code>dcf7a6700c767fee</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration</span></td><td><code>87b2f6836db0939b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration.ApacheHttpClientConfiguration</span></td><td><code>9390f425ea8b26bf</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration.OkHttpClientConfiguration</span></td><td><code>e8b43bef2485f8a2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.security.ResourceServerTokenRelayAutoConfiguration.OAuth2OnClientInResourceServerCondition</span></td><td><code>9239202233ae4ee7</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtils</span></td><td><code>b0a4fb82ff1902b9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtils.HostInfo</span></td><td><code>2375ed9ed4fb94c4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtilsProperties</span></td><td><code>cb3cdd23cf526c1b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.UtilAutoConfiguration</span></td><td><code>1dde9cfd041a6e93</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompatibilityVerifierAutoConfiguration</span></td><td><code>0fbc42787500b8ef</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompatibilityVerifierProperties</span></td><td><code>e41ece1020f7bb3d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompositeCompatibilityVerifier</span></td><td><code>57d21cbaba86a870</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier</span></td><td><code>67ea0533fc9c0cfb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.1</span></td><td><code>ddd8f4c06d5cea3f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.2</span></td><td><code>84f60e2bf50710c8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.3</span></td><td><code>34c15dcb00ec6f00</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.VerificationResult</span></td><td><code>a06ff145fb1eec7f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.environment.EnvironmentManager</span></td><td><code>704f7d409b971a27</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.named.NamedContextFactory</span></td><td><code>12a5d18977808378</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.properties.ConfigurationPropertiesBeans</span></td><td><code>a814ca3fc1d30b2b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder</span></td><td><code>38581afcfdba3cdd</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.refresh.ConfigDataContextRefresher</span></td><td><code>06f8a1b1bbdd2594</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.refresh.ContextRefresher</span></td><td><code>fe8c07b090ad00e3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.restart.RestartListener</span></td><td><code>e494d850aba5853c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.GenericScope</span></td><td><code>a2455ca039fca045</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.GenericScope.BeanLifecycleWrapperCache</span></td><td><code>2c4f24fe4cf26eae</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.StandardScopeCache</span></td><td><code>e989206b5b6fc27f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.refresh.RefreshScope</span></td><td><code>41a20eef5df0e9b8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.endpoint.event.RefreshEventListener</span></td><td><code>90d5e4aa09f658cb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.logging.LoggingRebinder</span></td><td><code>3686164238d30e6b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.DefaultFeignLoggerFactory</span></td><td><code>701cc8bf53218ea8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.DefaultTargeter</span></td><td><code>6315019bc7c9f135</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignAutoConfiguration</span></td><td><code>4db86a977542406e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignAutoConfiguration.DefaultFeignTargeterConfiguration</span></td><td><code>3f2f5d21a376b513</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignCircuitBreakerDisabledConditions</span></td><td><code>cb92c31154a96e76</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientFactoryBean</span></td><td><code>d11a05a1dc43b721</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientMetricsEnabledCondition</span></td><td><code>e39dc332b3f9d99b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientProperties</span></td><td><code>3869197a087cf191</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientSpecification</span></td><td><code>3b04ba0a0a1f99a9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration</span></td><td><code>5d8d4b19c7f07cfe</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration.1</span></td><td><code>0bccac4856339a94</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration.DefaultFeignBuilderConfiguration</span></td><td><code>03bcd3db330ebfdd</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsRegistrar</span></td><td><code>172c7ff0e2b7e658</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignContext</span></td><td><code>a506cf0eea25f02a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.HttpClient5DisabledConditions</span></td><td><code>3eda5b579370a941</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.CookieValueParameterProcessor</span></td><td><code>8eb2827c8b213383</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.MatrixVariableParameterProcessor</span></td><td><code>533b0f850ccd0775</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.PathVariableParameterProcessor</span></td><td><code>c545049ccc4b472a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.QueryMapParameterProcessor</span></td><td><code>654868ae72af5ab1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestHeaderParameterProcessor</span></td><td><code>bca55838a4511255</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestParamParameterProcessor</span></td><td><code>dbebf676a50d6f3a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestPartParameterProcessor</span></td><td><code>1df7edd3a90d9b4f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.clientconfig.FeignClientConfigurer</span></td><td><code>d29421a6aed8cf33</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignEncoderProperties</span></td><td><code>2f28d759c89d6ad8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties</span></td><td><code>1746962d2926d26d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties</span></td><td><code>cc40a41c78429a91</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties.PoolConcurrencyPolicy</span></td><td><code>12e23d8bed8da04e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties.PoolReusePolicy</span></td><td><code>4ab2e589cbad02c3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.OkHttp</span></td><td><code>d6dba5f9e61079d6</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignUtils</span></td><td><code>ef2c0ddaa0c111ce</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.PageableSpringEncoder</span></td><td><code>bddd5a259073b688</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.PageableSpringQueryMapEncoder</span></td><td><code>5d4b06c1b02deacc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.ResponseEntityDecoder</span></td><td><code>0c8bdfb44d5b7951</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringDecoder</span></td><td><code>eb2f9c87d1cb2370</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringEncoder</span></td><td><code>67bd2d286ac1a23d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract</span></td><td><code>803236e8640d6f2d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract.ConvertingExpanderFactory</span></td><td><code>4e58c5a04ec3f6e2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract.SimpleAnnotatedParameterContext</span></td><td><code>76b790f0b109cdfc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.ConditionalOnBootstrapDisabled.OnBootstrapDisabledCondition</span></td><td><code>94d2acdb6747ef73</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.ConditionalOnBootstrapEnabled.OnBootstrapEnabledCondition</span></td><td><code>75a7dff723a7f988</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.PropertyUtils</span></td><td><code>dbc7287b95e2d610</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.random.CachedRandomPropertySource</span></td><td><code>fbb439ce346c23f1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.random.CachedRandomPropertySourceEnvironmentPostProcessor</span></td><td><code>7cc174eeffe49765</code></td></tr><tr><td><span class="el_class">org.springframework.context.ApplicationEvent</span></td><td><code>83cb66a9e3580ca6</code></td></tr><tr><td><span class="el_class">org.springframework.context.PayloadApplicationEvent</span></td><td><code>dab204af6beaa183</code></td></tr><tr><td><span class="el_class">org.springframework.context.SmartLifecycle</span></td><td><code>580036ed72a22f86</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AdviceMode</span></td><td><code>8c0454606c4bd0de</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AdviceModeImportSelector</span></td><td><code>c4dc960d63afc8d1</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotatedBeanDefinitionReader</span></td><td><code>897d6f2e8e7ffe57</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationBeanNameGenerator</span></td><td><code>1a4ac548cdcdd738</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationConfigApplicationContext</span></td><td><code>545ac5c0b34de1b3</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationConfigUtils</span></td><td><code>3eba687d124d556f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationScopeMetadataResolver</span></td><td><code>39178d9dd0165637</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AspectJAutoProxyRegistrar</span></td><td><code>48223b8400a83304</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AutoProxyRegistrar</span></td><td><code>1f98080442544624</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.BeanAnnotationHelper</span></td><td><code>50f9c0a5609d7d07</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.BeanMethod</span></td><td><code>b2bbb0c7f2e35111</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ClassPathBeanDefinitionScanner</span></td><td><code>23dbc08126c2fbc4</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider</span></td><td><code>82eb4d43593e88aa</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.CommonAnnotationBeanPostProcessor</span></td><td><code>727c1ed1a80577e8</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ComponentScanAnnotationParser</span></td><td><code>cc364b137e78720a</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ComponentScanAnnotationParser.1</span></td><td><code>102212c872af920f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConditionEvaluator</span></td><td><code>f72ae849c4719e1c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConditionEvaluator.ConditionContextImpl</span></td><td><code>8519893fbd6bfb22</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClass</span></td><td><code>c42d389c1516e1ab</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader</span></td><td><code>f2354c5d71534b6c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.ConfigurationClassBeanDefinition</span></td><td><code>6f56a9cd29e5c1ff</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.TrackedConditionEvaluator</span></td><td><code>3f282c92838ce57d</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer</span></td><td><code>f5202a3ffe4630d3</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareGeneratorStrategy</span></td><td><code>be23cc469db7a3b5</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareGeneratorStrategy.1</span></td><td><code>4329a2760414c2c0</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareMethodInterceptor</span></td><td><code>a943879bae2c3ac9</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanMethodInterceptor</span></td><td><code>16f2fced898a254d</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.ConditionalCallbackFilter</span></td><td><code>b4500e6f5c8fe809</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser</span></td><td><code>c6b297f24dee74cf</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorGrouping</span></td><td><code>792da396a6d3042a</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorGroupingHandler</span></td><td><code>48a487914dcc878b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorHandler</span></td><td><code>5865164655ff704c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorHolder</span></td><td><code>51d40af6857f95a6</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.ImportStack</span></td><td><code>945e9261e385b596</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.SourceClass</span></td><td><code>22c748c0b8920eee</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassPostProcessor</span></td><td><code>d7fb3dd6f5391d56</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassPostProcessor.ImportAwareBeanPostProcessor</span></td><td><code>d6fffcae701fe095</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassUtils</span></td><td><code>0334d911503fd303</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase</span></td><td><code>560dc1ac5efded73</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationMethod</span></td><td><code>7bbde10fbd56dc59</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver</span></td><td><code>39c5001b763878da</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver.1</span></td><td><code>478a00cb6fb4fc6f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.DeferredImportSelector.Group.Entry</span></td><td><code>3f5f109b118a04de</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.FilterType</span></td><td><code>07bcbc82439adf8b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator</span></td><td><code>79169c3fdace56e9</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ImportBeanDefinitionRegistrar</span></td><td><code>58e50834cacf6219</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ImportSelector</span></td><td><code>a7852eff51cbead1</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ParserStrategyUtils</span></td><td><code>935bd9607fa1b8d8</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ProfileCondition</span></td><td><code>169c26592f62f39b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScannedGenericBeanDefinition</span></td><td><code>85cba26291a60045</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScopeMetadata</span></td><td><code>f4c94273854e79b5</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScopedProxyMode</span></td><td><code>98c5bda3bb764e44</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.TypeFilterUtils</span></td><td><code>45f04a8a3b9d327f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.TypeFilterUtils.1</span></td><td><code>0fa6829ebeb64fd6</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster</span></td><td><code>23747158baac4bdf</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.CachedListenerRetriever</span></td><td><code>6c4411c0fab14187</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.DefaultListenerRetriever</span></td><td><code>9f574a1076f423be</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.ListenerCacheKey</span></td><td><code>870f98fe44e4c176</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ApplicationContextEvent</span></td><td><code>99355cd7effbfcfe</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ContextClosedEvent</span></td><td><code>454518749a18dc48</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ContextRefreshedEvent</span></td><td><code>7685faae0b73b5e2</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.DefaultEventListenerFactory</span></td><td><code>c88ebb05d5c9bbd5</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.EventExpressionEvaluator</span></td><td><code>8c3cd34d70fa3dd0</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.EventListenerMethodProcessor</span></td><td><code>dc09c6cfbbc2dc33</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.GenericApplicationListenerAdapter</span></td><td><code>aea76c7ed49262b6</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.SimpleApplicationEventMulticaster</span></td><td><code>9d1e567f1a4a68e5</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.SmartApplicationListener</span></td><td><code>cf05d5cb6c64c041</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanExpressionContextAccessor</span></td><td><code>54f22f02669c1fd2</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanFactoryAccessor</span></td><td><code>d0aabf289d9ac5e3</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanFactoryResolver</span></td><td><code>7bafc3251813e9be</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.CachedExpressionEvaluator</span></td><td><code>a2ff71920ef013cf</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.EnvironmentAccessor</span></td><td><code>8cbb51749f4ba41c</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.MapAccessor</span></td><td><code>e5455b294f754444</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.StandardBeanExpressionResolver</span></td><td><code>a94869362149626e</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.StandardBeanExpressionResolver.1</span></td><td><code>e4be0e65585a1f68</code></td></tr><tr><td><span class="el_class">org.springframework.context.index.CandidateComponentsIndexLoader</span></td><td><code>92aa29134f9ef73f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractApplicationContext</span></td><td><code>c3c7cfd8f988325a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractMessageSource</span></td><td><code>07cae2cff217da1a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractResourceBasedMessageSource</span></td><td><code>dd378b42e49a353e</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationContextAwareProcessor</span></td><td><code>4831557feef2df5f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationListenerDetector</span></td><td><code>d9612ca339cf3e81</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationObjectSupport</span></td><td><code>2612900a9e481055</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor</span></td><td><code>5d0b51095a5e9ba9</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor.LifecycleGroup</span></td><td><code>d22d5a011dc9612a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor.LifecycleGroupMember</span></td><td><code>383157bfedc4cea7</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DelegatingMessageSource</span></td><td><code>587e04cc80616cad</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.EmbeddedValueResolutionSupport</span></td><td><code>33fd6e4c01797b9f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.GenericApplicationContext</span></td><td><code>77ec1b11a5428b1f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.LiveBeansView</span></td><td><code>fad60b913896e0c9</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.MessageSourceAccessor</span></td><td><code>61a3bb9169ca7ef3</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.MessageSourceSupport</span></td><td><code>fa18b4a586bbd7d4</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PostProcessorRegistrationDelegate</span></td><td><code>4d3cbc1651b115f2</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PostProcessorRegistrationDelegate.BeanPostProcessorChecker</span></td><td><code>1f6837c57e6f2606</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PropertySourcesPlaceholderConfigurer</span></td><td><code>e7e76a955620351a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PropertySourcesPlaceholderConfigurer.1</span></td><td><code>f2ed7dd357d5549c</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ResourceBundleMessageSource</span></td><td><code>79e67fcae44d87db</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ResourceBundleMessageSource.MessageSourceControl</span></td><td><code>216033abf8bc755d</code></td></tr><tr><td><span class="el_class">org.springframework.core.AttributeAccessorSupport</span></td><td><code>4260f940c9373c86</code></td></tr><tr><td><span class="el_class">org.springframework.core.BridgeMethodResolver</span></td><td><code>6be8e35b682d363d</code></td></tr><tr><td><span class="el_class">org.springframework.core.CollectionFactory</span></td><td><code>0aefff6cf4e930b1</code></td></tr><tr><td><span class="el_class">org.springframework.core.Constants</span></td><td><code>c36d404d3824e294</code></td></tr><tr><td><span class="el_class">org.springframework.core.Conventions</span></td><td><code>973a966aa5ae679f</code></td></tr><tr><td><span class="el_class">org.springframework.core.DecoratingClassLoader</span></td><td><code>668e6314a2d5c7ba</code></td></tr><tr><td><span class="el_class">org.springframework.core.DefaultParameterNameDiscoverer</span></td><td><code>b41a493774fe0725</code></td></tr><tr><td><span class="el_class">org.springframework.core.GenericTypeResolver</span></td><td><code>e85d6e442c0ae553</code></td></tr><tr><td><span class="el_class">org.springframework.core.GenericTypeResolver.TypeVariableMapVariableResolver</span></td><td><code>f93e36a90d3435f6</code></td></tr><tr><td><span class="el_class">org.springframework.core.KotlinDetector</span></td><td><code>0dc2ed8934e996e3</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer</span></td><td><code>096054af0b43f07d</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer.LocalVariableTableVisitor</span></td><td><code>9083238d8223d6d7</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer.ParameterNameDiscoveringVisitor</span></td><td><code>36c5a3179da8ead4</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodClassKey</span></td><td><code>76a127ef7f0c2244</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodIntrospector</span></td><td><code>40ce4160b1a8770f</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodParameter</span></td><td><code>1e7791a56b139d1a</code></td></tr><tr><td><span class="el_class">org.springframework.core.NamedInheritableThreadLocal</span></td><td><code>aa147e3fe75667a7</code></td></tr><tr><td><span class="el_class">org.springframework.core.NamedThreadLocal</span></td><td><code>50a4b84dcfc515f2</code></td></tr><tr><td><span class="el_class">org.springframework.core.NativeDetector</span></td><td><code>56dc3e9af599dc20</code></td></tr><tr><td><span class="el_class">org.springframework.core.NestedExceptionUtils</span></td><td><code>b7260ae3640fe639</code></td></tr><tr><td><span class="el_class">org.springframework.core.NestedRuntimeException</span></td><td><code>ee2a8e4c7f030794</code></td></tr><tr><td><span class="el_class">org.springframework.core.OrderComparator</span></td><td><code>e5cb63e3a5a4454c</code></td></tr><tr><td><span class="el_class">org.springframework.core.OverridingClassLoader</span></td><td><code>d01f0a350bc41770</code></td></tr><tr><td><span class="el_class">org.springframework.core.ParameterizedTypeReference</span></td><td><code>8e269aaa6aafdca9</code></td></tr><tr><td><span class="el_class">org.springframework.core.PrioritizedParameterNameDiscoverer</span></td><td><code>78983df87aa930cc</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapter</span></td><td><code>822fcc87ce1902ba</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry</span></td><td><code>4f0aa880364222da</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorAdapter</span></td><td><code>eae13d07d9f2f654</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorJdkFlowAdapterRegistrar</span></td><td><code>a3be8e9733ce737b</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorRegistrar</span></td><td><code>e1ad194d5068ab4f</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveTypeDescriptor</span></td><td><code>2dd1b02fb22d9860</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType</span></td><td><code>3c5bc01f806c8a58</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.1</span></td><td><code>0b714d1a274ba0e1</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.DefaultVariableResolver</span></td><td><code>c2155d0f85ab4ceb</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.EmptyType</span></td><td><code>fd80d07b531f69c9</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.SyntheticParameterizedType</span></td><td><code>1b21652b5a451374</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.TypeVariablesVariableResolver</span></td><td><code>fe2f6dd0689cbc8e</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.WildcardBounds</span></td><td><code>bf21f32f1ff12903</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.WildcardBounds.Kind</span></td><td><code>6ac226f09c6eb74b</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper</span></td><td><code>678661f946404a83</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.FieldTypeProvider</span></td><td><code>9c5bc8725d602f45</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.MethodInvokeTypeProvider</span></td><td><code>a7a369201b8b6db3</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.MethodParameterTypeProvider</span></td><td><code>2a66a8a12753699e</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.TypeProxyInvocationHandler</span></td><td><code>4b3f995af378b662</code></td></tr><tr><td><span class="el_class">org.springframework.core.SimpleAliasRegistry</span></td><td><code>fbf14eec2c7d2193</code></td></tr><tr><td><span class="el_class">org.springframework.core.SpringProperties</span></td><td><code>8479bce077966276</code></td></tr><tr><td><span class="el_class">org.springframework.core.StandardReflectionParameterNameDiscoverer</span></td><td><code>52e69827f219ea90</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AbstractMergedAnnotation</span></td><td><code>a2eaf21deb40737e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotatedElementUtils</span></td><td><code>853036e7254dcce0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotatedElementUtils.AnnotatedElementForAnnotations</span></td><td><code>a86e2e7e479801a3</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationAttributes</span></td><td><code>9425c17b05fe81c9</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationAwareOrderComparator</span></td><td><code>88fb9eedb6621779</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter</span></td><td><code>3b4e68bc5b0564b8</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter.1</span></td><td><code>731afcbd7c925ddd</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter.2</span></td><td><code>bf4ca23e363cbe8b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping</span></td><td><code>1aebf6605e7ad9a5</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping.MirrorSets</span></td><td><code>6c6ad40ea509f8ef</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping.MirrorSets.MirrorSet</span></td><td><code>3771e8c5104e3ff7</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMappings</span></td><td><code>4fa688f6996f8a6e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMappings.Cache</span></td><td><code>fc3ee214a60a6271</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationUtils</span></td><td><code>2be45c15eaa45fb5</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsProcessor</span></td><td><code>5c9b3f2839a74a92</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsScanner</span></td><td><code>f939e682acf980cd</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsScanner.1</span></td><td><code>80df8452806fc35c</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AttributeMethods</span></td><td><code>b3604241d368ba8d</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger</span></td><td><code>1760e2f15fc055f0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger.1</span></td><td><code>69130e55aa339291</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger.2</span></td><td><code>e32cb403012dbeeb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotation</span></td><td><code>6ae84617d26a54b1</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotation.Adapt</span></td><td><code>2e6f89b9a9961c3b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationCollectors</span></td><td><code>e3c88709d3eba84e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates</span></td><td><code>113c58d70ba00efb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates.FirstRunOfPredicate</span></td><td><code>452a750cf4bd483b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates.UniquePredicate</span></td><td><code>107975a5a587c6e0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors</span></td><td><code>414c3b4df5f5d4e6</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors.FirstDirectlyDeclared</span></td><td><code>9815c07587c67f64</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors.Nearest</span></td><td><code>6c1daa8cf2b93d65</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotations</span></td><td><code>e7cb1ace931ea2a3</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotations.SearchStrategy</span></td><td><code>74f59a10eff86fc4</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationsCollection</span></td><td><code>e234fb9a0eb59118</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationsCollection.AnnotationsSpliterator</span></td><td><code>8866b0171d2d4f21</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MissingMergedAnnotation</span></td><td><code>676e984170373392</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.OrderUtils</span></td><td><code>6f96988914d327bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.PackagesAnnotationFilter</span></td><td><code>e0973d2e2a49417c</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers</span></td><td><code>e474d8d4437edcf1</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.ExplicitRepeatableContainer</span></td><td><code>bb523bf21245bd5d</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.NoRepeatableContainers</span></td><td><code>3908525dbd6dad38</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.StandardRepeatableContainers</span></td><td><code>4823a2bd926f68cc</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.SynthesizedMergedAnnotationInvocationHandler</span></td><td><code>425957c1427e4591</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.SynthesizingMethodParameter</span></td><td><code>df9797c29d4d7a17</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotation</span></td><td><code>f9403ca0615caaf9</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations</span></td><td><code>5f5ba88b66f894af</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.Aggregate</span></td><td><code>8ee9eaa9076a971b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.AggregatesCollector</span></td><td><code>3391fae82f28d637</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.AggregatesSpliterator</span></td><td><code>684dd868de473b8b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.IsPresent</span></td><td><code>42458f4118f8b435</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.MergedAnnotationFinder</span></td><td><code>bf2384fd0fcc8f56</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.Property</span></td><td><code>92c255dc9dc89a7c</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.TypeDescriptor</span></td><td><code>ad737b62c63b6f17</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.TypeDescriptor.AnnotatedElementAdapter</span></td><td><code>77c24a587608adc3</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.Converter</span></td><td><code>2578108c4b76a9f4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.ConvertingComparator</span></td><td><code>be2bf8ea585a0053</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.GenericConverter.ConvertiblePair</span></td><td><code>47277af2c8796b30</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.AbstractConditionalEnumConverter</span></td><td><code>e52b7ffca207b2a2</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToArrayConverter</span></td><td><code>e1d6eb8e143a0f3e</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToCollectionConverter</span></td><td><code>ae8a41c17ac2cfe8</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToObjectConverter</span></td><td><code>0adebbdf69ee28af</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToStringConverter</span></td><td><code>f392badc590390ad</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ByteBufferConverter</span></td><td><code>a4362816313574b0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CharacterToNumberFactory</span></td><td><code>76c982068142e0a5</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToArrayConverter</span></td><td><code>c42a5366a61c19ae</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToCollectionConverter</span></td><td><code>cd0eb2f4b5a09ecb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToObjectConverter</span></td><td><code>2db70afdb2d912fd</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToStringConverter</span></td><td><code>7abcefdc33eb1453</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ConversionUtils</span></td><td><code>356c819475f481da</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.DefaultConversionService</span></td><td><code>88e4a62ea2f94713</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.EnumToIntegerConverter</span></td><td><code>2b5a19f768913bb9</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.EnumToStringConverter</span></td><td><code>d28d48a056800d66</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.FallbackObjectToStringConverter</span></td><td><code>421f4fd4d944ab76</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService</span></td><td><code>d8cf7bfe6a050064</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterAdapter</span></td><td><code>e87a728f9ce140f6</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterCacheKey</span></td><td><code>19b14348651d4f0a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterFactoryAdapter</span></td><td><code>b5bc742e0cee54bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.Converters</span></td><td><code>e819ed8095c3920b</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConvertersForPair</span></td><td><code>a8f530e8e4d2a29a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.NoOpConverter</span></td><td><code>292817a54f80e2f0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.IdToEntityConverter</span></td><td><code>4a1bd8d7f46bc47d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.IntegerToEnumConverterFactory</span></td><td><code>3c7264b963eed208</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.MapToMapConverter</span></td><td><code>122c4b0d008a79cd</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToCharacterConverter</span></td><td><code>4fd3d858e3612945</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToNumberConverterFactory</span></td><td><code>01d65b24a2069618</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToNumberConverterFactory.NumberToNumber</span></td><td><code>b74ff8811350c89d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToArrayConverter</span></td><td><code>7968f1faa290b4c3</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToCollectionConverter</span></td><td><code>441ecfcac1b1f227</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToObjectConverter</span></td><td><code>031ec96fed02ca3d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToOptionalConverter</span></td><td><code>7dbe8179dd5b4d23</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToStringConverter</span></td><td><code>fe8e4e6e39906e84</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.PropertiesToStringConverter</span></td><td><code>1228e6e1ed886ffb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StreamConverter</span></td><td><code>b0c07b0a3e955052</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToArrayConverter</span></td><td><code>2abe74b63a2caacc</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToBooleanConverter</span></td><td><code>1727acb0c080e86f</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCharacterConverter</span></td><td><code>7fbd0d87c99698fb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCharsetConverter</span></td><td><code>bd2597ad67597d4a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCollectionConverter</span></td><td><code>37e3a49e9785bfcb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCurrencyConverter</span></td><td><code>1a9c58d7f472cb23</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToEnumConverterFactory</span></td><td><code>ed1a93fd706298c0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToLocaleConverter</span></td><td><code>8cba5c1837ca93e4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToNumberConverterFactory</span></td><td><code>85b4d6b99c6b9438</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToNumberConverterFactory.StringToNumber</span></td><td><code>a335bb3937da3868</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToPropertiesConverter</span></td><td><code>bb1101d3e2cec6e4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToTimeZoneConverter</span></td><td><code>df70ee5d021dd5ec</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToUUIDConverter</span></td><td><code>2b0efd5b83a8af85</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ZoneIdToTimeZoneConverter</span></td><td><code>80c26850887ed2fa</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ZonedDateTimeToCalendarConverter</span></td><td><code>ada1a53eb486d46f</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.AbstractEnvironment</span></td><td><code>5b31fc12f31e591a</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.AbstractPropertyResolver</span></td><td><code>7cab120f42834cd0</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.CommandLineArgs</span></td><td><code>98fad3d07d0cc8f5</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.CommandLinePropertySource</span></td><td><code>97010ce5ae66aaeb</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.EnumerablePropertySource</span></td><td><code>39fd1f60d9050967</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MapPropertySource</span></td><td><code>278fb2ece4af95ee</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MissingRequiredPropertiesException</span></td><td><code>c641b63e794fdd79</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MutablePropertySources</span></td><td><code>fa5119aece5158e1</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.Profiles</span></td><td><code>7eeebf730cc5696d</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser</span></td><td><code>7268f200d7f86997</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser.Context</span></td><td><code>287b4c43920b3d89</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser.ParsedProfiles</span></td><td><code>c37a6341ffe95e32</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertiesPropertySource</span></td><td><code>79f6cc42fc481f03</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource</span></td><td><code>fb657a8743ec132a</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource.ComparisonPropertySource</span></td><td><code>7ebdfaf64daa2df3</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource.StubPropertySource</span></td><td><code>64e8a71dbd922110</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySourcesPropertyResolver</span></td><td><code>9d4a0a1efe2168f7</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SimpleCommandLineArgsParser</span></td><td><code>a425c3b9c2105362</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SimpleCommandLinePropertySource</span></td><td><code>55d56aab4f01eadb</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.StandardEnvironment</span></td><td><code>4e4187f823953fa3</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SystemEnvironmentPropertySource</span></td><td><code>d50a586472b69aa7</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.AbstractFileResolvingResource</span></td><td><code>d1dee249f3344dc2</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.AbstractResource</span></td><td><code>06597b21d4538426</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.ClassPathResource</span></td><td><code>725d21742ca938ad</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DefaultResourceLoader</span></td><td><code>1f552532c47e5032</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DefaultResourceLoader.ClassPathContextResource</span></td><td><code>3533d0492caec070</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DescriptiveResource</span></td><td><code>637ef9bb0b5c4c41</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResource</span></td><td><code>43dccf62674b6788</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResourceLoader</span></td><td><code>d227e0a09dfd48f1</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResourceLoader.FileSystemContextResource</span></td><td><code>bb761f0d2a2899cf</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileUrlResource</span></td><td><code>626b3662ee902014</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.ResourceEditor</span></td><td><code>28c8e56b8d65300d</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.UrlResource</span></td><td><code>099350707f4b976e</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.DefaultPropertySourceFactory</span></td><td><code>e6b9f1497fb42da5</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.EncodedResource</span></td><td><code>67281da9935bcfe5</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PathMatchingResourcePatternResolver</span></td><td><code>86ae8cc1cf012953</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PropertiesLoaderSupport</span></td><td><code>aea0b9b08385ba3e</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PropertiesLoaderUtils</span></td><td><code>a145b823c88697bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourceArrayPropertyEditor</span></td><td><code>89d6a171d017e578</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePatternUtils</span></td><td><code>1a5a1d149aa3c6c8</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePropertiesPersister</span></td><td><code>250aba5449e3ee64</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePropertySource</span></td><td><code>7309b8953146de45</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.SpringFactoriesLoader</span></td><td><code>c83b5737c6d87a74</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.CompositeLog</span></td><td><code>db5b084ad41e7dc6</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogDelegateFactory</span></td><td><code>63712d9de62fd9e7</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage</span></td><td><code>15c2a219b9c21e90</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage</span></td><td><code>b9d81aae3f539efe</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage1</span></td><td><code>e47c0db4e5c0aeb5</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage2</span></td><td><code>d5ada364408d1dd3</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.SupplierMessage</span></td><td><code>6e20027a829c7194</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.ApplicationStartup</span></td><td><code>c20b37681880e60f</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup</span></td><td><code>24acf016a90bef82</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup.DefaultStartupStep</span></td><td><code>10d988ef492a9bf1</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup.DefaultStartupStep.DefaultTags</span></td><td><code>e29d290f9e160e16</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SimpleAsyncTaskExecutor</span></td><td><code>312ed759fbba2ec2</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SimpleAsyncTaskExecutor.ConcurrencyThrottleAdapter</span></td><td><code>6f706b1a0be9d3b0</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SyncTaskExecutor</span></td><td><code>58a28ecb849d6203</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.AnnotatedTypeMetadata</span></td><td><code>887d45606c4f242e</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.AnnotationMetadata</span></td><td><code>2c9a5d4b4ac9a686</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.ClassMetadata</span></td><td><code>9c939da6fc5ce9f5</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardAnnotationMetadata</span></td><td><code>ab4dd7a4b170e1b7</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardClassMetadata</span></td><td><code>c2d8bac47016fee4</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardMethodMetadata</span></td><td><code>79cc7c8a0201d66f</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.CachingMetadataReaderFactory</span></td><td><code>cea03dae07ab7dc9</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.CachingMetadataReaderFactory.LocalResourceCache</span></td><td><code>41775f83527e3ea9</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.MergedAnnotationReadingVisitor</span></td><td><code>e7fcbeac47e4e37c</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.MergedAnnotationReadingVisitor.ArrayVisitor</span></td><td><code>dfaeebd596ad1cf0</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadata</span></td><td><code>af2f984357afd614</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadataReadingVisitor</span></td><td><code>b80f39845808adac</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadataReadingVisitor.Source</span></td><td><code>305af125db061c7b</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMetadataReader</span></td><td><code>faab03e2f9387cc4</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMetadataReaderFactory</span></td><td><code>4f111f8623f7a3f1</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadata</span></td><td><code>6a8e9c6ff07cfbba</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadataReadingVisitor</span></td><td><code>67659b1241630412</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadataReadingVisitor.Source</span></td><td><code>c1c24ffb094b4fc8</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter</span></td><td><code>26502fadb38c4223</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AnnotationTypeFilter</span></td><td><code>48e3b502517951fa</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AssignableTypeFilter</span></td><td><code>107f2198b7d27a3a</code></td></tr><tr><td><span class="el_class">org.springframework.dao.annotation.PersistenceExceptionTranslationAdvisor</span></td><td><code>3de982e329b1d25c</code></td></tr><tr><td><span class="el_class">org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor</span></td><td><code>04399063473ffb1e</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.ChainedPersistenceExceptionTranslator</span></td><td><code>2741d3105a4ad9fe</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.DataAccessUtils</span></td><td><code>e303e2627b6e22d4</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.PersistenceExceptionTranslationInterceptor</span></td><td><code>2ca5384ad32a89fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.config.ConfigurationUtils</span></td><td><code>f4c1c7048517a5b3</code></td></tr><tr><td><span class="el_class">org.springframework.data.config.ParsingUtils</span></td><td><code>556a0c829ee65434</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters</span></td><td><code>14b717becdb4aee0</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToInstantConverter</span></td><td><code>0ab8b7c6e5a9b83a</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalDateConverter</span></td><td><code>a03ab20d3368b411</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalDateTimeConverter</span></td><td><code>3389a185e632f4dc</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalTimeConverter</span></td><td><code>9f4173eb169e8061</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DurationToStringConverter</span></td><td><code>be5fb9d968263b2c</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.InstantToDateConverter</span></td><td><code>b059dbfb2434d6ec</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.InstantToLocalDateTimeConverter</span></td><td><code>1b94dbc26d0649ea</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateTimeToDateConverter</span></td><td><code>ffe88756e31247ed</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateTimeToInstantConverter</span></td><td><code>768fcb1021b6f656</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateToDateConverter</span></td><td><code>ca403fa2bdc8fe27</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalTimeToDateConverter</span></td><td><code>a472891100e37ae5</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.PeriodToStringConverter</span></td><td><code>eaf886220aa133a5</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToDurationConverter</span></td><td><code>cdafac7026260ec1</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToInstantConverter</span></td><td><code>a9f6a033c4f01180</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToLocalDateConverter</span></td><td><code>cbd2229ecdb4ff18</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToLocalDateTimeConverter</span></td><td><code>fdb3a297b36c4662</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToPeriodConverter</span></td><td><code>dbdb51a351968e82</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToZoneIdConverter</span></td><td><code>b13378f66ea6c432</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.ZoneIdToStringConverter</span></td><td><code>878f03cf2b824ac9</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.AbstractPageRequest</span></td><td><code>5aedb5704204782b</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.PageRequest</span></td><td><code>770e9f6bff152488</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range</span></td><td><code>199ac0e7a13ae069</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range.Bound</span></td><td><code>4b89a39184925000</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range.RangeBuilder</span></td><td><code>34b4e906500dc48c</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort</span></td><td><code>e5d8943c661431cc</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.Direction</span></td><td><code>330a84ce8d75bd05</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.NullHandling</span></td><td><code>46628962e0631485</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.Order</span></td><td><code>d6af8f6c325f2797</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.GeoModule</span></td><td><code>6655a434fdb60df2</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.Metrics</span></td><td><code>9461ffe6b7867c98</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.format.DistanceFormatter</span></td><td><code>ef8bef69441cc871</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.format.PointFormatter</span></td><td><code>4afd3bc68ed540a9</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaMetamodelMappingContext</span></td><td><code>bdbc08bd02a5effa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaMetamodelMappingContext.Metamodels</span></td><td><code>fbfb7779943a93ae</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaPersistentEntityImpl</span></td><td><code>4c960e8381f28b2b</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaPersistentPropertyImpl</span></td><td><code>6195c3d65d9a382b</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.projection.CollectionAwareProjectionFactory</span></td><td><code>d03a9e8523efb082</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.HibernateJpaParametersParameterAccessor</span></td><td><code>bfd2a31a69c77495</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.JpaClassUtils</span></td><td><code>0a3f718cfab959d7</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider</span></td><td><code>dea04c56b0bdbf67</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.1</span></td><td><code>db71c69d7e4bc7c3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.2</span></td><td><code>59d09520c5709305</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.3</span></td><td><code>26853db9206dc655</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaMetamodelMappingContextFactoryBean</span></td><td><code>0ac07f06c2f36e5a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension</span></td><td><code>6191ddfc86ca994d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension.LazyJvmAgent</span></td><td><code>61a991a8aa8138f6</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractJpaQuery</span></td><td><code>044593abc6905951</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractJpaQuery.TupleConverter</span></td><td><code>f05f451a53feaeed</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractStringBasedJpaQuery</span></td><td><code>5118621dc2327999</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DeclaredQuery</span></td><td><code>a55f169c58841fe3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultJpaEntityMetadata</span></td><td><code>9edb3f2b7cdb0759</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultJpaQueryMethodFactory</span></td><td><code>14e9c2bf141edf23</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultQueryEnhancer</span></td><td><code>e44da9577cfab8f3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.EmptyDeclaredQuery</span></td><td><code>6ffc30559f282596</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.EscapeCharacter</span></td><td><code>304d7291828e690f</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ExpressionBasedStringQuery</span></td><td><code>254952188bd59927</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaCountQueryCreator</span></td><td><code>7c8c4e8015c58467</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParameters</span></td><td><code>4f80d2342dd6e861</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParameters.JpaParameter</span></td><td><code>9bea1f887e86c112</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParametersParameterAccessor</span></td><td><code>c7e282722ae9a78c</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator</span></td><td><code>7a0e7aae7a2a79a8</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator.1</span></td><td><code>8691914b602602ac</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator.PredicateBuilder</span></td><td><code>f17f050dcb177e6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution</span></td><td><code>80a35ee7819b40a0</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.CollectionExecution</span></td><td><code>e433264668b0b6c3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.ModifyingExecution</span></td><td><code>7c2b8c196a497af9</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.SingleEntityExecution</span></td><td><code>1bbd256a7b7f3ccf</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryFactory</span></td><td><code>39d6a73ae380a922</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy</span></td><td><code>1d4eb0108594e3b6</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.1</span></td><td><code>d77a6911ae0ae7b3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.AbstractQueryLookupStrategy</span></td><td><code>ac128c77f5a876cc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.CreateIfNotFoundQueryLookupStrategy</span></td><td><code>c3daeba5f2694466</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.CreateQueryLookupStrategy</span></td><td><code>102685247c8c8765</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.DeclaredQueryLookupStrategy</span></td><td><code>913523855a10d119</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.NoQuery</span></td><td><code>ae78ec9c609aac72</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryMethod</span></td><td><code>4676d7dcec5ef2ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaResultConverters.BlobToByteArrayConverter</span></td><td><code>61c39952df1571fa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.NamedQuery</span></td><td><code>d5d8c1d7209c7291</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.NativeJpaQuery</span></td><td><code>ec4120c1e5b775ea</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterBinder</span></td><td><code>fb2b21f14b4bc26e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterBinderFactory</span></td><td><code>62b6dc902c4d1003</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider</span></td><td><code>ca8ed029d513da66</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider.1</span></td><td><code>9b7d7afd7fb00771</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider.ParameterMetadata</span></td><td><code>50a1ce41cbe429c5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery</span></td><td><code>b094ddddec2db068</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery.CountQueryPreparer</span></td><td><code>3764298ee26084e1</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery.QueryPreparer</span></td><td><code>6007c3e0cd5ade63</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryEnhancer</span></td><td><code>43b0d1eb212f25d4</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryEnhancerFactory</span></td><td><code>dea2d6876a94a53d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.BindableQuery</span></td><td><code>0c98c7d28fa7eb01</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling</span></td><td><code>39171b90fa3509aa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling.1</span></td><td><code>9200b9d6d1146c2e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling.2</span></td><td><code>94d1130e9f20dcdc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.NamedOrIndexedQueryParameterSetter</span></td><td><code>eb8d0d83bc17463a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.QueryMetadata</span></td><td><code>8c90e95380d69be5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.QueryMetadataCache</span></td><td><code>11e5e5b9d16ba4b4</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory</span></td><td><code>31257f87951908dc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.BasicQueryParameterSetterFactory</span></td><td><code>d9946ece51f7de65</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.CriteriaQueryParameterSetterFactory</span></td><td><code>6c4c4ec19392b5ac</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.ExpressionBasedQueryParameterSetterFactory</span></td><td><code>e08f2db5136286d3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.ParameterImpl</span></td><td><code>b4828c869d68ddd5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryUtils</span></td><td><code>37f6b89bc6e6a11d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.SimpleJpaQuery</span></td><td><code>16f48f61711f2bd7</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StoredProcedureAttributeSource</span></td><td><code>91c6b72ff7442738</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery</span></td><td><code>d6a54624a623c665</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.1</span></td><td><code>2f2cd35dedfaa040</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.InParameterBinding</span></td><td><code>e2bc1cf41398e1bb</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.Metadata</span></td><td><code>8d49b98d06ad9680</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBinding</span></td><td><code>8aeed6eea64ae3cd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBindingParser</span></td><td><code>2891904d2bd167fa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBindingParser.ParameterBindingType</span></td><td><code>0dc366b2f55586c0</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor</span></td><td><code>6cce2b0e590c5e44</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.CrudMethodMetadataPopulatingMethodInterceptor</span></td><td><code>217dd69913fa4aca</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.DefaultCrudMethodMetadata</span></td><td><code>b4249780270b5206</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.ThreadBoundTargetSource</span></td><td><code>df7b17675835be8e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.DefaultQueryHints</span></td><td><code>0152d4d9ecec0472</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.EntityManagerBeanDefinitionRegistrarPostProcessor</span></td><td><code>00347741ab0877fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEntityInformationSupport</span></td><td><code>dd6228b560742ffd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension</span></td><td><code>61065252f5ef6dae</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension.JpaRootObject</span></td><td><code>a37244919ff8970d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation</span></td><td><code>89017ffcd212fb18</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation.IdMetadata</span></td><td><code>90e31a9b9a6d6d98</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaRepositoryFactory</span></td><td><code>8c2816723b61e68f</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean</span></td><td><code>d7e3bc4185eb8639</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.MutableQueryHints</span></td><td><code>17b2d475c56b21ff</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.QueryHints</span></td><td><code>bda04f8a2f097b81</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.SimpleJpaRepository</span></td><td><code>cdb55b62349bf939</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.BeanDefinitionUtils</span></td><td><code>c1802a76ba817838</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.BeanDefinitionUtils.EntityManagerFactoryBeanDefinition</span></td><td><code>604cb73ac6c86fad</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.HibernateProxyDetector</span></td><td><code>adc64a96b25a5155</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.JpaMetamodel</span></td><td><code>0b3b368c80df9d5a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.JpaMetamodelCacheCleanup</span></td><td><code>fd86b856f545ee06</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.Association</span></td><td><code>465fb641d1259215</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.InstanceCreatorMetadataSupport</span></td><td><code>4de4b7bdd85d4e63</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PersistentProperty</span></td><td><code>30ae35eb2c79dcc5</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PreferredConstructor</span></td><td><code>bb3bd5186c4ca4e3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PropertyPath</span></td><td><code>66659e18f5213819</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PropertyPath.Key</span></td><td><code>ab84117f76838165</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext</span></td><td><code>65109168ff07d5ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyCreator</span></td><td><code>a00cb24bc70d59af</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyFilter</span></td><td><code>30e706629c5033c4</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyFilter.PropertyMatch</span></td><td><code>98f0b42030a1c9af</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.PersistentPropertyPathFactory</span></td><td><code>c8ecc2d000f3acd1</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.AbstractPersistentProperty</span></td><td><code>6ba9a3d52d697ba2</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.AnnotationBasedPersistentProperty</span></td><td><code>c93e1e1e943f4af4</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.BasicPersistentEntity</span></td><td><code>07173a871a0c8ac3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory</span></td><td><code>00955a85a233d178</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingEntityInstantiator</span></td><td><code>6bba045018e0f646</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingEntityInstantiator.ObjectInstantiatorClassGenerator</span></td><td><code>b4781585848aac90</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingPropertyAccessorFactory</span></td><td><code>9d626aa6c58b41bf</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.EntityInstantiators</span></td><td><code>e292917f7ac5f109</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.InstanceCreatorMetadataDiscoverer</span></td><td><code>4bd8138aff201e6c</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.InstantiationAwarePropertyAccessorFactory</span></td><td><code>ffb98d50cefdb9d3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.KotlinClassGeneratingEntityInstantiator</span></td><td><code>aec0845c658fea0d</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer</span></td><td><code>f01a81a31f2746a0</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers</span></td><td><code>da4734cfbaf006fc</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers.1</span></td><td><code>94d4dd05bda4f220</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers.2</span></td><td><code>c37f7d8d37b010cb</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.Property</span></td><td><code>b8fbc3c9daa3db97</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.SimpleTypeHolder</span></td><td><code>c834dada41331944</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor</span></td><td><code>66fb9748073cac16</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup</span></td><td><code>c9b9e589a0c1b707</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.1</span></td><td><code>c371fafcfd2fde22</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.2</span></td><td><code>3c6fad8d3cea581c</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.3</span></td><td><code>7bdd4a6679f56c12</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory</span></td><td><code>cb7d5e1e00607fd1</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory.MapAccessingMethodInterceptorFactory</span></td><td><code>50c3d4161bf2c5b9</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory.PropertyAccessingMethodInvokerFactory</span></td><td><code>ac7577d2385912d0</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.SpelAwareProxyProjectionFactory</span></td><td><code>c7aa5c161f2fcbbf</code></td></tr><tr><td><span class="el_class">org.springframework.data.querydsl.QuerydslUtils</span></td><td><code>c5655d9ba545e823</code></td></tr><tr><td><span class="el_class">org.springframework.data.querydsl.SimpleEntityPathResolver</span></td><td><code>f0c6ebd63c5c971f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource</span></td><td><code>12eff70ff30e9030</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.BootstrapMode</span></td><td><code>e2f78399bb586a75</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.CustomRepositoryImplementationDetector</span></td><td><code>304633aeb896bb5f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.DefaultImplementationLookupConfiguration</span></td><td><code>36daf115c610e23a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.DefaultRepositoryConfiguration</span></td><td><code>5a9bd65fee29f1b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.FragmentMetadata</span></td><td><code>97d252790a3f4a09</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.ImplementationDetectionConfiguration</span></td><td><code>48dfc7145752446b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.ImplementationDetectionConfiguration.1</span></td><td><code>dfccce5432a166d7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.NamedQueriesBeanDefinitionBuilder</span></td><td><code>fd6700bd7a127a7b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryBeanDefinitionBuilder</span></td><td><code>c7a748902400d78d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryBeanNameGenerator</span></td><td><code>0c6918246b6dffc1</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryComponentProvider</span></td><td><code>b1463e06b08b2f4d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryComponentProvider.InterfaceTypeFilter</span></td><td><code>b692b302317b140f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationDelegate</span></td><td><code>4c787a52501fe6a2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport</span></td><td><code>4e14e2471620c7af</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSource</span></td><td><code>7a1416d93d7f3190</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSourceSupport</span></td><td><code>7f53f8617d29afaa</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSourceSupport.SpringImplementationDetectionConfiguration</span></td><td><code>bb2ff7a58bc92f2f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.SelectionSet</span></td><td><code>285a81409845144a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.RepositoryMetadata</span></td><td><code>06eb9e0e02f53dea</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.AbstractEntityInformation</span></td><td><code>916f012a866d2bf8</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.AbstractRepositoryMetadata</span></td><td><code>7856dec475f300a3</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.DefaultRepositoryInformation</span></td><td><code>add77c2fee6f7607</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.DefaultRepositoryMetadata</span></td><td><code>e678a019e605e7f7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.EventPublishingRepositoryProxyPostProcessor</span></td><td><code>9cfdcbad14307357</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.EventPublishingRepositoryProxyPostProcessor.EventPublishingMethod</span></td><td><code>6fbbe1d76f604dcb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodInvocationValidator</span></td><td><code>93aae383e6f2b26c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookup</span></td><td><code>b93b7a99d9686a22</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookup.InvokedMethod</span></td><td><code>428aa4648175f89c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookups</span></td><td><code>cf6c131e5fb69841</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookups.RepositoryAwareMethodLookup</span></td><td><code>189a3fef8c1b9348</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.PersistenceExceptionTranslationRepositoryProxyPostProcessor</span></td><td><code>a46a300375817a3c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.PropertiesBasedNamedQueries</span></td><td><code>cdac37d620506df2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutionResultHandler</span></td><td><code>97aa9f39368b5c20</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutionResultHandler.ReturnTypeDescriptor</span></td><td><code>04092aca1414c54b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor</span></td><td><code>a10ba1d85bab9cfc</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryComposition</span></td><td><code>ec8212f6caf45960</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments</span></td><td><code>78dc5a0cb3f70a9c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport</span></td><td><code>e04d0cdb2b2d332c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport</span></td><td><code>bfac3bcfc3f32361</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.ImplementationMethodExecutionInterceptor</span></td><td><code>8e6f6236fab8fbb8</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.QueryCollectingQueryCreationListener</span></td><td><code>6a72c571d23bf29a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.RepositoryInformationCacheKey</span></td><td><code>ad5d3583f11cdcc6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.RepositoryValidator</span></td><td><code>39ababa5c12fd1f3</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment</span></td><td><code>ed0a951da2cf98f6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment.ImplementedRepositoryFragment</span></td><td><code>6aa486898508d1ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment.StructuralRepositoryFragment</span></td><td><code>55748c03c9827f19</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragmentsFactoryBean</span></td><td><code>1525586efabc3262</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryInvocationMulticaster.NoOpRepositoryInvocationMulticaster</span></td><td><code>a4c8e7b478d1693d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation</span></td><td><code>3ec1d3e7495775f4</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult.State</span></td><td><code>df2e280f13f7503b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker</span></td><td><code>dc618ffa96682461</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryFragmentMethodInvoker</span></td><td><code>84be5c20ed2a2f40</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryFragmentMethodInvoker.CoroutineAdapterInformation</span></td><td><code>e3c06c2862eb6f3a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryMethodInvocationCaptor</span></td><td><code>2f856d1e18b18d4d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryMethodInvocationCaptor.1</span></td><td><code>f2968b5d2baea646</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryQueryMethodInvoker</span></td><td><code>33dc530116a29514</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport</span></td><td><code>71c72ecce4f75ad7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryProxyPostProcessor</span></td><td><code>7e307e00a295eb6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryProxyPostProcessor.RepositoryAnnotationTransactionAttributeSource</span></td><td><code>80c8a1b4d9534371</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider</span></td><td><code>aef480e5e262de48</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.Parameter</span></td><td><code>6c6ecb75cd78922f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.Parameters</span></td><td><code>49507cf27fadced2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ParametersParameterAccessor</span></td><td><code>94caa75e24cbf828</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryLookupStrategy.Key</span></td><td><code>1c13a0e2946d75fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryMethod</span></td><td><code>07b0e9c7bd206962</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryMethodEvaluationContextProvider</span></td><td><code>5827ed6e289aa38e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ResultProcessor</span></td><td><code>d32c5ef150c75c8d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ResultProcessor.ProjectingConverter</span></td><td><code>c90c06f1b7e2949e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType</span></td><td><code>4c76ca96b4d884eb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType.CacheKey</span></td><td><code>39792f92ef4fddde</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType.ReturnedClass</span></td><td><code>7c0d76dec83a631f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext</span></td><td><code>94fe3b162834de1e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext.QuotationMap</span></td><td><code>ca0f571ec6fca7a4</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext.SpelExtractor</span></td><td><code>8eb48c6f97b7af2b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.AbstractQueryCreator</span></td><td><code>cae1c1986016cd66</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.OrderBySource</span></td><td><code>fa19fcbb9f6aef2e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part</span></td><td><code>b737d033672b5696</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part.IgnoreCaseType</span></td><td><code>ea95e6bf962ebcb0</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part.Type</span></td><td><code>9fc60066d9e7df30</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree</span></td><td><code>0f7c6337438fce6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.OrPart</span></td><td><code>989398a46d78f703</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.Predicate</span></td><td><code>4ad163f8e31a21f7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.Subject</span></td><td><code>9294ea6b2d8aeb1d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.DomainClassConverter</span></td><td><code>93072485e88a73af</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.Repositories</span></td><td><code>896640967c2c850a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.Repositories.EmptyRepositoryFactoryInformation</span></td><td><code>d11853c42f93bf7b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ClassUtils</span></td><td><code>4667502d8bb2fc3b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters</span></td><td><code>e62a011d9231f77c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.AbstractWrapperTypeConverter</span></td><td><code>f363015f7ba6d21b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.IterableToStreamableConverter</span></td><td><code>fffaf78debf61919</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.NullableWrapperToCompletableFutureConverter</span></td><td><code>9d4c28da27efdaef</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.NullableWrapperToFutureConverter</span></td><td><code>d0901f1be9582f92</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.WrapperType</span></td><td><code>3319e39094ea7fe6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.WrapperType.Cardinality</span></td><td><code>9545deca717173c0</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters</span></td><td><code>7dfd7dbdbf0b3ecb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.FluxWrapper</span></td><td><code>24738d6a7bb4a422</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.MonoWrapper</span></td><td><code>8c1ddf96d20b0499</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherToFluxConverter</span></td><td><code>88a781f07b6f85e1</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherToMonoConverter</span></td><td><code>cafbea682e1fef94</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherWrapper</span></td><td><code>2bd6e7b16dd0585a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.ReactiveAdapterConverterFactory</span></td><td><code>c896e3a40889bd95</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.RegistryHolder</span></td><td><code>f8c71265e8ff254e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers</span></td><td><code>2d9937f5babde7bf</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers.1</span></td><td><code>190a104262df235a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers.ReactiveLibrary</span></td><td><code>de07a207a777113c</code></td></tr><tr><td><span class="el_class">org.springframework.data.spel.EvaluationContextProvider</span></td><td><code>20fbae09b2cbe1e2</code></td></tr><tr><td><span class="el_class">org.springframework.data.spel.ExtensionAwareEvaluationContextProvider</span></td><td><code>ad56b673a68d21b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.AnnotationDetectionMethodCallback</span></td><td><code>401de2b991e02a4e</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ClassTypeInformation</span></td><td><code>3885f5fa8988605a</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections</span></td><td><code>65f33e4c7c829a4a</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.EclipseCollections</span></td><td><code>c28de783dadcc5be</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.SearchableTypes</span></td><td><code>c9f4bb04590d1ddf</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.VavrCollections</span></td><td><code>c695743e2e55f2a7</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper</span></td><td><code>0b4a6730f5fe2b35</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.KotlinReflectionUtils</span></td><td><code>83f0b8c85dff3a8c</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Lazy</span></td><td><code>c945dfb9fe7fcbb9</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.LazyStreamable</span></td><td><code>06ea82037d5bb0af</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableUtils</span></td><td><code>6b12b5f1ec3e7f22</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapper</span></td><td><code>e0c517ab8ab7f4b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters</span></td><td><code>b490e857586de82b</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.AbstractWrapperTypeConverter</span></td><td><code>1d2fd8340578abb4</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.GuavaOptionalUnwrapper</span></td><td><code>4fbd7239f4027c85</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.Jdk8OptionalUnwrapper</span></td><td><code>020388885c3c3c0d</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.NullableWrapperToGuavaOptionalConverter</span></td><td><code>9285218829046dfd</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.NullableWrapperToJdk8OptionalConverter</span></td><td><code>8fde5a43adbc97ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.WrapperType</span></td><td><code>5ef2c0c0eb488cd0</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.WrapperType.Cardinality</span></td><td><code>1ea7960304ec4ca5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Optionals</span></td><td><code>25f778c917b85660</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Pair</span></td><td><code>83a90b4a49393b78</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ParameterizedTypeInformation</span></td><td><code>c56c4846e47c6040</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ParentTypeAwareTypeInformation</span></td><td><code>afb47de718de3210</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ProxyUtils</span></td><td><code>cdb936712fd5ee03</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ReflectionUtils</span></td><td><code>75d6b65f8a2e3fdb</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.StreamUtils</span></td><td><code>9a4f373cadb257e5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Streamable</span></td><td><code>6b9723830d69078b</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeDiscoverer</span></td><td><code>b9c5cd6f518969ee</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeInformation</span></td><td><code>42a267f4fd25269e</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeVariableTypeInformation</span></td><td><code>af19c5ed8edf4b38</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.JsonProjectingMethodInterceptorFactory</span></td><td><code>48d97e4df256081f</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.PageableHandlerMethodArgumentResolver</span></td><td><code>a39937d497ec3973</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport</span></td><td><code>3d7648779248545c</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.ProjectingJackson2HttpMessageConverter</span></td><td><code>eea1435ff5ef166a</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.ProxyingHandlerMethodArgumentResolver</span></td><td><code>3ca30889d82055cd</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.SortHandlerMethodArgumentResolver</span></td><td><code>af08bc9989df4ee9</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.SortHandlerMethodArgumentResolverSupport</span></td><td><code>189688a7778d245d</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.EnableSpringDataWebSupport.QuerydslActivator</span></td><td><code>567d6e2147d0a1d0</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.EnableSpringDataWebSupport.SpringDataWebConfigurationImportSelector</span></td><td><code>69c529961b9f62a6</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.ProjectingArgumentResolverRegistrar</span></td><td><code>55e4a6992d54872e</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.ProjectingArgumentResolverRegistrar.ProjectingArgumentResolverBeanPostProcessor</span></td><td><code>acc78dbeba3ffe3f</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.SpringDataJacksonConfiguration</span></td><td><code>a9cb670533d66daa</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.SpringDataWebConfiguration</span></td><td><code>7de944336e59cc12</code></td></tr><tr><td><span class="el_class">org.springframework.expression.TypedValue</span></td><td><code>b230e89cbe8fc16c</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.CompositeStringExpression</span></td><td><code>227e241df5599b73</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.ExpressionUtils</span></td><td><code>9d69a1f9d61bf22d</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.LiteralExpression</span></td><td><code>2ba7cdedc73cdf6b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.TemplateAwareExpressionParser</span></td><td><code>5a3fc20b2db14e85</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.TemplateAwareExpressionParser.Bracket</span></td><td><code>9a26bc5eb1e6a51e</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.CodeFlow</span></td><td><code>c98820730dc008f3</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ExpressionState</span></td><td><code>5b5617e8223be5d4</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.SpelCompilerMode</span></td><td><code>7e9999c764b8f9f0</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.SpelParserConfiguration</span></td><td><code>f8bf914b2bb43f5c</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.CompoundExpression</span></td><td><code>0a729c184060830b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer</span></td><td><code>498f122439c56816</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer.IndexedType</span></td><td><code>ed117038af739d8a</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer.MapIndexingValueRef</span></td><td><code>ebd26fbf4339ad3f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Literal</span></td><td><code>754271397ee43daa</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.OpPlus</span></td><td><code>acda7291081d4943</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Operator</span></td><td><code>b8a9b81cdb91ea86</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.PropertyOrFieldReference</span></td><td><code>310192d5cd5bd3b7</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.SpelNodeImpl</span></td><td><code>5a7229f6e781693f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.StringLiteral</span></td><td><code>f2e50ea1c5d2ba13</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.InternalSpelExpressionParser</span></td><td><code>27cf04cd280f4bcd</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.SpelExpression</span></td><td><code>b3556dfa7cc77ff5</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.SpelExpressionParser</span></td><td><code>f57f63d7b7140927</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.Token</span></td><td><code>c961058786d26b1f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.TokenKind</span></td><td><code>ef3a6c1fbf818434</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.Tokenizer</span></td><td><code>da9db1980ea4640b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.ReflectivePropertyAccessor</span></td><td><code>6f913f8f08e5c5e4</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardEvaluationContext</span></td><td><code>e3601c87372b6872</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardOperatorOverloader</span></td><td><code>8ae34cd735665e55</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeComparator</span></td><td><code>fab8e950a81b8f0b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeConverter</span></td><td><code>e3920902b48de154</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeLocator</span></td><td><code>bb57f759b33af433</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar</span></td><td><code>7b81eb77401c03d8</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.CalendarToDateConverter</span></td><td><code>aa139fff8e0cf5fe</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.CalendarToLongConverter</span></td><td><code>809d04568d720fe0</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.DateToCalendarConverter</span></td><td><code>65e50594d6a2c1f5</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.DateToLongConverter</span></td><td><code>406f54f3f59a7974</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.LongToCalendarConverter</span></td><td><code>8dbe9220177fc30d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.LongToDateConverter</span></td><td><code>e6664e9d490ced53</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DateTimeFormatterFactory</span></td><td><code>5064bf817f1c74e9</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DateTimeParser</span></td><td><code>c1aec9b7b1ede9ca</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DurationFormatter</span></td><td><code>99b48d53a6b02127</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaDateTimeFormatAnnotationFormatterFactory</span></td><td><code>0a0a4f0d9410b7e4</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters</span></td><td><code>da29177fc6c7fe83</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.CalendarToReadableInstantConverter</span></td><td><code>287adc5b91305eac</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToCalendarConverter</span></td><td><code>ab5a5249bb63299b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToDateConverter</span></td><td><code>8062ef1389e0622e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToDateMidnightConverter</span></td><td><code>5fee10f452369dc7</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToInstantConverter</span></td><td><code>a481744de8770a7e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalDateConverter</span></td><td><code>d1b6999a5c36c658</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalDateTimeConverter</span></td><td><code>9463fad6b7d3691d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalTimeConverter</span></td><td><code>1f15777e86275309</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLongConverter</span></td><td><code>c2ef23b06ca44b48</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToMutableDateTimeConverter</span></td><td><code>0639c08c6b1b5bcc</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateToReadableInstantConverter</span></td><td><code>865834478b50ce31</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LocalDateTimeToLocalDateConverter</span></td><td><code>771dc577eb1397d2</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LocalDateTimeToLocalTimeConverter</span></td><td><code>715fb854bb8fc679</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LongToReadableInstantConverter</span></td><td><code>1eef8bd82563a3fc</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar</span></td><td><code>17e26d9d01d0854d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar.1</span></td><td><code>e3f51edecf851b5c</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar.Type</span></td><td><code>60ef146c1ae84d72</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalDateParser</span></td><td><code>3db359a8b948ba5f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalDateTimeParser</span></td><td><code>a021f84f66bc8bdd</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalTimeParser</span></td><td><code>fef9f2be94c3da54</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.MonthDayFormatter</span></td><td><code>b8705f0446443483</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.PeriodFormatter</span></td><td><code>0f50c2f0fa053287</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.ReadableInstantPrinter</span></td><td><code>ffb8b0dd22ad3ead</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.ReadablePartialPrinter</span></td><td><code>97d1edeb0493ee9b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.YearMonthFormatter</span></td><td><code>b4e2fb7278bfc53d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters</span></td><td><code>5837e828ebd09a80</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToInstantConverter</span></td><td><code>63c05a834f8a1cb8</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalDateConverter</span></td><td><code>7bd2aea2858f9c02</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalDateTimeConverter</span></td><td><code>3520e7f74944eaf9</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalTimeConverter</span></td><td><code>8edaaf0002f38256</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToOffsetDateTimeConverter</span></td><td><code>4b819ddab829d0c0</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToZonedDateTimeConverter</span></td><td><code>5f9082d004a66e34</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.InstantToLongConverter</span></td><td><code>e94bd8e6084264a4</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LocalDateTimeToLocalDateConverter</span></td><td><code>94a8fd6ccba8f571</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LocalDateTimeToLocalTimeConverter</span></td><td><code>a63d3b10a15cb3d3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LongToInstantConverter</span></td><td><code>014bbdc0ff776fe1</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToInstantConverter</span></td><td><code>be4f28326b105582</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalDateConverter</span></td><td><code>32ceb3683802c44c</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalDateTimeConverter</span></td><td><code>5c1237f146ce6af3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalTimeConverter</span></td><td><code>19018b09c104dc03</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToZonedDateTimeConverter</span></td><td><code>d8d25aab03d32e15</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToInstantConverter</span></td><td><code>f40ff28c1eb47fce</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalDateConverter</span></td><td><code>806909da9d6ac744</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalDateTimeConverter</span></td><td><code>939ab79246198aa6</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalTimeConverter</span></td><td><code>5260a2489eddd336</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToOffsetDateTimeConverter</span></td><td><code>62f37af537479cd3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterFactory</span></td><td><code>b9f5b73428f10a6a</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar</span></td><td><code>7493ec7c9c432c0b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar.1</span></td><td><code>99489a9d8b8b057f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar.Type</span></td><td><code>f13687bd3fc13a36</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DurationFormatter</span></td><td><code>d914d15e52a41ae1</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.InstantFormatter</span></td><td><code>2c67f3cc9dfe22e3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.Jsr310DateTimeFormatAnnotationFormatterFactory</span></td><td><code>09a64195475d9a07</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.MonthDayFormatter</span></td><td><code>fdd05c5412c8fd1d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.MonthFormatter</span></td><td><code>699e64f30547240f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.PeriodFormatter</span></td><td><code>7e755d60ac33c09a</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.TemporalAccessorParser</span></td><td><code>ae70027b1133818e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.TemporalAccessorPrinter</span></td><td><code>3c8ede00255ec096</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.YearFormatter</span></td><td><code>759cef3e2bae1f39</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.YearMonthFormatter</span></td><td><code>c9eff5baa0de2d62</code></td></tr><tr><td><span class="el_class">org.springframework.format.number.NumberFormatAnnotationFormatterFactory</span></td><td><code>5af418b75e49bc32</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.DefaultFormattingConversionService</span></td><td><code>5109dded496f7481</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService</span></td><td><code>c89a3b077ad69c25</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.AnnotationParserConverter</span></td><td><code>eb4057548c1f44fc</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.AnnotationPrinterConverter</span></td><td><code>b33b0212c846ba7c</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.ParserConverter</span></td><td><code>4c93ec4fd5f04cd9</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.PrinterConverter</span></td><td><code>e295574185ff2dde</code></td></tr><tr><td><span class="el_class">org.springframework.http.CacheControl</span></td><td><code>fecc8594e7b4e446</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpLogging</span></td><td><code>a774dc6514c580cd</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpMethod</span></td><td><code>090fe60c5a7aeb31</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpStatus</span></td><td><code>5268e7f84bd058c1</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpStatus.Series</span></td><td><code>4707269a97d5390c</code></td></tr><tr><td><span class="el_class">org.springframework.http.MediaType</span></td><td><code>f95ad767778d385a</code></td></tr><tr><td><span class="el_class">org.springframework.http.MediaType.1</span></td><td><code>251d73f6d85f10f4</code></td></tr><tr><td><span class="el_class">org.springframework.http.client.reactive.ReactorResourceFactory</span></td><td><code>197876854a6560e6</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.AbstractGenericHttpMessageConverter</span></td><td><code>ae597821181c9aef</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.AbstractHttpMessageConverter</span></td><td><code>fc2b1561c56a6365</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ByteArrayHttpMessageConverter</span></td><td><code>a407f582005d5698</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.FormHttpMessageConverter</span></td><td><code>c1aca31bdd3161c6</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ResourceHttpMessageConverter</span></td><td><code>94ac4153b802989b</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ResourceRegionHttpMessageConverter</span></td><td><code>9dab323a7c79ca19</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.StringHttpMessageConverter</span></td><td><code>f09eb2855913b3c3</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.cbor.MappingJackson2CborHttpMessageConverter</span></td><td><code>02d0d44b7a8df884</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter</span></td><td><code>02b53995b9e87612</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.AbstractJsonHttpMessageConverter</span></td><td><code>a1507b2289949c67</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.Jackson2ObjectMapperBuilder</span></td><td><code>a1a2c7c766ec00f3</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.Jackson2ObjectMapperBuilder.CborFactoryInitializer</span></td><td><code>32b1ebbf50a95bb5</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.MappingJackson2HttpMessageConverter</span></td><td><code>b5ee689c744fd605</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.SpringHandlerInstantiator</span></td><td><code>7fa69c2adc722609</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.support.AllEncompassingFormHttpMessageConverter</span></td><td><code>350e130ffe9eca04</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.AbstractJaxb2HttpMessageConverter</span></td><td><code>7b66e6b5a2a64c85</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter</span></td><td><code>7489f01142d22639</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter</span></td><td><code>59e72b8f87f81769</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.SourceHttpMessageConverter</span></td><td><code>b117c4118a0e6e7c</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.DefaultPathContainer</span></td><td><code>2b52b473b17f7b00</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.DefaultPathContainer.DefaultSeparator</span></td><td><code>a5448fb71cec51b8</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.PathContainer</span></td><td><code>42f56788b54ce918</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.PathContainer.Options</span></td><td><code>5d3f95147c66489b</code></td></tr><tr><td><span class="el_class">org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver</span></td><td><code>01a479aed6b2252a</code></td></tr><tr><td><span class="el_class">org.springframework.instrument.classloading.SimpleThrowawayClassLoader</span></td><td><code>cdc4e5e1613db385</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.core.JdbcTemplate</span></td><td><code>56d2b0c323e4bbc4</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate</span></td><td><code>33c21c3e438b2a72</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.ConnectionHolder</span></td><td><code>8c483ba933838b68</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.DataSourceUtils</span></td><td><code>106f70e845aa8f5b</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.JdbcTransactionObjectSupport</span></td><td><code>1fb2d6857f381dd9</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType</span></td><td><code>33f11048058e39c4</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.lookup.JndiDataSourceLookup</span></td><td><code>97fc7545a7333212</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.lookup.SingleDataSourceLookup</span></td><td><code>7cd0dc564c906b36</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.support.JdbcAccessor</span></td><td><code>fd19cd72c09f2719</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiAccessor</span></td><td><code>4cf30f394d054c47</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiLocatorDelegate</span></td><td><code>820d309829202924</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiLocatorSupport</span></td><td><code>0097d3884117ad83</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiTemplate</span></td><td><code>54eac36c80868646</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.support.SimpleJndiBeanFactory</span></td><td><code>01b8231c22892faa</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.AbstractMessageConverter</span></td><td><code>55df88b1f382246c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.CompositeMessageConverter</span></td><td><code>0012a34c5e7c61d3</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.DefaultContentTypeResolver</span></td><td><code>e1e18f242fdb5db0</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.MappingJackson2MessageConverter</span></td><td><code>a0a0d06f32001396</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.SimpleMessageConverter</span></td><td><code>5809abee130b6ba4</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.StringMessageConverter</span></td><td><code>d27731f68baefc70</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.core.AbstractMessageSendingTemplate</span></td><td><code>75de49f7d4edba0a</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.core.CachingDestinationResolverProxy</span></td><td><code>fe311cb08abff7fe</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.AbstractNamedValueMethodArgumentResolver</span></td><td><code>0d79660972c8136d</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.HeaderMethodArgumentResolver</span></td><td><code>c48b0726c080eb10</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.HeadersMethodArgumentResolver</span></td><td><code>af2e30747cbc6e8e</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.MessageMethodArgumentResolver</span></td><td><code>0e71c103c3214030</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.PayloadArgumentResolver</span></td><td><code>a311aff0af314230</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.PayloadMethodArgumentResolver</span></td><td><code>e878463a0c05c5db</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.AbstractMethodMessageHandler</span></td><td><code>d597bce190b0f80c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.HandlerMethodArgumentResolverComposite</span></td><td><code>72bd436de4819f9c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.HandlerMethodReturnValueHandlerComposite</span></td><td><code>0843d9905ef29c8f</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.DelegatingServletInputStream</span></td><td><code>caae4a14dbe6c7d9</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.DelegatingServletOutputStream</span></td><td><code>a4351916c9b6f91a</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletRequest</span></td><td><code>d7bc515ecf43109d</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletResponse</span></td><td><code>1db60e385f7e230e</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletResponse.ResponseServletOutputStream</span></td><td><code>977313a67fe9f020</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockRequestDispatcher</span></td><td><code>d980211851a0ebd5</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockServletContext</span></td><td><code>6f37a81cf48d4542</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockSessionCookieConfig</span></td><td><code>5a253a49c8b87f15</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.SpringObjenesis</span></td><td><code>d275860319976524</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.instantiator.sun.SunReflectionFactoryHelper</span></td><td><code>90f776fb5926e412</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.instantiator.sun.SunReflectionFactoryInstantiator</span></td><td><code>074bb66fc5b5204b</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>4acbec8fd09e2dac</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.PlatformDescription</span></td><td><code>68793f192fb32080</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>04e8fe1751223efd</code></td></tr><tr><td><span class="el_class">org.springframework.orm.hibernate5.SpringBeanContainer</span></td><td><code>d2b3a86240cffeca</code></td></tr><tr><td><span class="el_class">org.springframework.orm.hibernate5.SpringBeanContainer.SpringContainedBean</span></td><td><code>bc825205105c3d7a</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.AbstractEntityManagerFactoryBean</span></td><td><code>eec1780f09cda47d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.ManagedEntityManagerFactoryInvocationHandler</span></td><td><code>8d12169c548e1902</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.DefaultJpaDialect</span></td><td><code>25670fe62a1e44d6</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerFactoryAccessor</span></td><td><code>f8fa5cb1c7cbbf24</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerFactoryUtils</span></td><td><code>61861c101011a132</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerHolder</span></td><td><code>108f53e6e6c4576c</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.ExtendedEntityManagerCreator</span></td><td><code>14e9192677ea045d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.ExtendedEntityManagerCreator.ExtendedEntityManagerInvocationHandler</span></td><td><code>93ad98f2776a1906</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager</span></td><td><code>06a685acc965f748</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager.JpaTransactionDefinition</span></td><td><code>a0c6be81e8711a80</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager.JpaTransactionObject</span></td><td><code>30ca4b34160d0bf7</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean</span></td><td><code>1096a8c07481e138</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator</span></td><td><code>c89708773025e837</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator.DeferredQueryInvocationHandler</span></td><td><code>27ba66cd3a766800</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator.SharedEntityManagerInvocationHandler</span></td><td><code>f7cfe8e839f08374</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager</span></td><td><code>1ef6bd7218c83ae8</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo</span></td><td><code>59348efc95105838</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.PersistenceUnitReader</span></td><td><code>ca1edd7d0b4d2b01</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.SpringPersistenceUnitInfo</span></td><td><code>70a3c77975bcb169</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor</span></td><td><code>8ed6630c58be0bb7</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor</span></td><td><code>47caa190cc864498</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.PersistenceElement</span></td><td><code>f501f394882321ed</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.AbstractJpaVendorAdapter</span></td><td><code>f460aca8d6f85347</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.Database</span></td><td><code>b8060bddc560d3f9</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect</span></td><td><code>003c0d28f3b4e847</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect.HibernateConnectionHandle</span></td><td><code>f3e6230476688ba3</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect.SessionTransactionData</span></td><td><code>c9f2ca431abf64b0</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter</span></td><td><code>faf002acee0f7537</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider</span></td><td><code>e773541a4055d62d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.1</span></td><td><code>4f8a52199e763f07</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.annotation.AsyncResult</span></td><td><code>12234b978f2df3a0</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.CustomizableThreadFactory</span></td><td><code>1a75fb0aedcb2f99</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.ExecutorConfigurationSupport</span></td><td><code>bb345c9dbcd8c000</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor</span></td><td><code>0666b7fabff3a515</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.AdaptableJobFactory</span></td><td><code>415466e409374043</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.ResourceLoaderClassLoadHelper</span></td><td><code>b4535255bf9cca98</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SchedulerAccessor</span></td><td><code>afa9ff6af07bad27</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SchedulerFactoryBean</span></td><td><code>a00168e9b81397ba</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SpringBeanJobFactory</span></td><td><code>78b115ea7eace4a1</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.SecurityConfig</span></td><td><code>b35d1ad2856f9a5b</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.expression.AbstractSecurityExpressionHandler</span></td><td><code>15fcdca60d805cee</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.expression.DenyAllPermissionEvaluator</span></td><td><code>9ac3ea64f8c57d13</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.AbstractSecurityInterceptor</span></td><td><code>25b6c6788fd96da0</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.AbstractSecurityInterceptor.NoOpAuthenticationManager</span></td><td><code>641791545ce94f6b</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.NullRunAsManager</span></td><td><code>4b053e7410ca220d</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.vote.AbstractAccessDecisionManager</span></td><td><code>b85a9d0c6e676a71</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.vote.AffirmativeBased</span></td><td><code>d28b53a1a8b70b42</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AbstractAuthenticationToken</span></td><td><code>34bb03a9a6384190</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AnonymousAuthenticationProvider</span></td><td><code>72c64ab3d21edd26</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AuthenticationTrustResolverImpl</span></td><td><code>5ee476057a0df3d3</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.DefaultAuthenticationEventPublisher</span></td><td><code>d100a8e04b279b54</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.ProviderManager</span></td><td><code>79a0586271968af2</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.ProviderManager.NullEventPublisher</span></td><td><code>a8cb04255c2cda63</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.UsernamePasswordAuthenticationToken</span></td><td><code>00bbc662bbfea861</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider</span></td><td><code>a0a0e719fff74515</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.DefaultPostAuthenticationChecks</span></td><td><code>6ceeec497961ba15</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.DefaultPreAuthenticationChecks</span></td><td><code>28eb2872013cd3d2</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.DaoAuthenticationProvider</span></td><td><code>be3a9dbf63743049</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.Customizer</span></td><td><code>2eec2e51b04ae35b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder</span></td><td><code>ee9ecdf5a3376b18</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.BuildState</span></td><td><code>3a4854ed72851c9a</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractSecurityBuilder</span></td><td><code>a4a1d98a1e57d3a6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.SecurityConfigurerAdapter</span></td><td><code>ab8c7b62fc0055cb</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.SecurityConfigurerAdapter.CompositeObjectPostProcessor</span></td><td><code>39593a67437ad5b0</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder</span></td><td><code>25a97edc9dade87e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration</span></td><td><code>ee09c58518dd3ad2</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.DefaultPasswordEncoderAuthenticationManagerBuilder</span></td><td><code>35514c4e82868af8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.EnableGlobalAuthenticationAutowiredConfigurer</span></td><td><code>e859006b06cbe054</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.LazyPasswordEncoder</span></td><td><code>e49f1002863ab142</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.GlobalAuthenticationConfigurerAdapter</span></td><td><code>6feee11b7fbe49b2</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeAuthenticationProviderBeanManagerConfigurer</span></td><td><code>9fd823ed05d08f18</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeAuthenticationProviderBeanManagerConfigurer.InitializeAuthenticationProviderManagerConfigurer</span></td><td><code>da4767a009229b42</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer</span></td><td><code>974434863ee1997c</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer.InitializeUserDetailsManagerConfigurer</span></td><td><code>5aa16218cc3cc95f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor</span></td><td><code>9d3a82259e0b4a59</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration</span></td><td><code>8a3f82321a5742e7</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.AbstractRequestMatcherRegistry</span></td><td><code>c2d543f2d9ce8157</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.FilterOrderRegistration</span></td><td><code>8eaac8f4e154b056</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.FilterOrderRegistration.Step</span></td><td><code>739f53eb4333c812</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity</span></td><td><code>1bf60019af99a265</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity.OrderedFilter</span></td><td><code>58900ce5dfb4fdcd</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity.RequestMatcherConfigurer</span></td><td><code>abd76e11459b5d8e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.WebSecurity</span></td><td><code>ea22a448b687fd71</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.WebSecurity.IgnoredRequestConfigurer</span></td><td><code>0de9cf78dfdd540e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.AutowiredWebSecurityConfigurersIgnoreParents</span></td><td><code>f53783dc6b0792f9</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration</span></td><td><code>aacc1e4722e76655</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.OAuth2ImportSelector</span></td><td><code>cbeaa7f920a43453</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.SpringWebMvcImportSelector</span></td><td><code>0c0633916725899b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration</span></td><td><code>73bf9aa7106816f0</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration</span></td><td><code>4001df2013949f41</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration.AnnotationAwareOrderComparator</span></td><td><code>cd510dc9034aa8eb</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.DefaultPasswordEncoderAuthenticationManagerBuilder</span></td><td><code>a5baea9afa6329b6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.LazyPasswordEncoder</span></td><td><code>1efb6cc9a7d97be8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractAuthenticationFilterConfigurer</span></td><td><code>efe26bc6a410e503</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry</span></td><td><code>1c3e08565526407f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry.UrlMapping</span></td><td><code>4f8b9e66aa3d84a1</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer</span></td><td><code>deb8d6d0ece7939d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractInterceptUrlConfigurer</span></td><td><code>e55b131c6c3bbc00</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractInterceptUrlConfigurer.AbstractInterceptUrlRegistry</span></td><td><code>1880fd5c88f4ba7e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AnonymousConfigurer</span></td><td><code>d8b26aeabc8b3a4b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.CsrfConfigurer</span></td><td><code>817feee59919ee56</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.DefaultLoginPageConfigurer</span></td><td><code>b5c104ac24b777db</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExceptionHandlingConfigurer</span></td><td><code>573af44925a6b9cc</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer</span></td><td><code>fdf9eb1ce0eb969f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer.AuthorizedUrl</span></td><td><code>da46b7403e709394</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer.ExpressionInterceptUrlRegistry</span></td><td><code>f4aa41f093eeba84</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.FormLoginConfigurer</span></td><td><code>1de48b5d58601f03</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer</span></td><td><code>85424343b6647337</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CacheControlConfig</span></td><td><code>0401e722909200f8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ContentSecurityPolicyConfig</span></td><td><code>9d233e54cbe6cc50</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ContentTypeOptionsConfig</span></td><td><code>0bc6264c931ae9dd</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginEmbedderPolicyConfig</span></td><td><code>1cae7ab00627a779</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginOpenerPolicyConfig</span></td><td><code>ccfde242aaf82e53</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginResourcePolicyConfig</span></td><td><code>33522637a4d47307</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.FeaturePolicyConfig</span></td><td><code>bbca8fc622e6eccc</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.FrameOptionsConfig</span></td><td><code>0ed22f5097748194</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.HpkpConfig</span></td><td><code>ca849a2e371bc18d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.HstsConfig</span></td><td><code>d4dc94070dca5e1b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.PermissionsPolicyConfig</span></td><td><code>92d3a304edc9b99f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ReferrerPolicyConfig</span></td><td><code>599842ab22caa37a</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.XXssConfig</span></td><td><code>395bd57ee6f11394</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HttpBasicConfigurer</span></td><td><code>788438abab6128c6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.LogoutConfigurer</span></td><td><code>fe99e57111c5467d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.RequestCacheConfigurer</span></td><td><code>b022794ae23aecdf</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.SecurityContextConfigurer</span></td><td><code>dcfd25ae13bd9d92</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ServletApiConfigurer</span></td><td><code>2b15c273773fa341</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.SessionManagementConfigurer</span></td><td><code>8b1172097a2b1afe</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.crypto.RsaKeyConversionServicePostProcessor</span></td><td><code>b2a98129b4733a7d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.crypto.RsaKeyConversionServicePostProcessor.ResourceKeyConverterAdapter</span></td><td><code>8b087e64f0bf0be9</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.http.SessionCreationPolicy</span></td><td><code>f3fb787ef47e053e</code></td></tr><tr><td><span class="el_class">org.springframework.security.context.DelegatingApplicationListener</span></td><td><code>1a0e6132c86d7ca0</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters</span></td><td><code>455bbf24afc057f1</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters.X509CertificateDecoder</span></td><td><code>f336d81872de7ab1</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters.X509PemDecoder</span></td><td><code>dd40b1ce32b155eb</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.SpringSecurityMessageSource</span></td><td><code>1b01a05d04372734</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.AuthorityUtils</span></td><td><code>107c4ef7643eff92</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.SimpleGrantedAuthority</span></td><td><code>5135fc7250b35847</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.mapping.NullAuthoritiesMapper</span></td><td><code>2d878d73dc89fc44</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.SecurityContextHolder</span></td><td><code>66ec8f039994720e</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.SecurityContextImpl</span></td><td><code>c88f709f159ffd0e</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.ThreadLocalSecurityContextHolderStrategy</span></td><td><code>dc92a4a17ae768a4</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User</span></td><td><code>ca918e32c1db42fb</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User.AuthorityComparator</span></td><td><code>492ee56f4e234e34</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User.UserBuilder</span></td><td><code>f8d89d7dcbad9f6a</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.cache.NullUserCache</span></td><td><code>89baa76c6e998148</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.argon2.Argon2PasswordEncoder</span></td><td><code>a5a5f550feba0627</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder</span></td><td><code>96f0928fa0cccf70</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder.BCryptVersion</span></td><td><code>ca536bcf9344ba49</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.codec.Utf8</span></td><td><code>7f50f25e0e7de32d</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.factory.PasswordEncoderFactories</span></td><td><code>1a04bd3e08877955</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.Base64StringKeyGenerator</span></td><td><code>cde6009fd2dedc35</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.KeyGenerators</span></td><td><code>d34bb8d186b96efc</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.SecureRandomBytesKeyGenerator</span></td><td><code>eef940c92b66b4f4</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.DelegatingPasswordEncoder</span></td><td><code>3dd32c0b205a13a6</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.DelegatingPasswordEncoder.UnmappedIdPasswordEncoder</span></td><td><code>ed48c29d9bf900e7</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Digester</span></td><td><code>f5178b8506468ea2</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.LdapShaPasswordEncoder</span></td><td><code>7bbd1a0fbd63bb57</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Md4PasswordEncoder</span></td><td><code>5f7ca9ff6915450d</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.MessageDigestPasswordEncoder</span></td><td><code>23c798e29f9353b4</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.NoOpPasswordEncoder</span></td><td><code>1eea6d115d68c6fa</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Pbkdf2PasswordEncoder</span></td><td><code>0c72905434bae34a</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Pbkdf2PasswordEncoder.SecretKeyFactoryAlgorithm</span></td><td><code>c58c3e02e55fdfed</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.StandardPasswordEncoder</span></td><td><code>3e72fd65e044e7e1</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.scrypt.SCryptPasswordEncoder</span></td><td><code>01cdcea9bea8ccf8</code></td></tr><tr><td><span class="el_class">org.springframework.security.provisioning.InMemoryUserDetailsManager</span></td><td><code>753d0d0cd6c22785</code></td></tr><tr><td><span class="el_class">org.springframework.security.provisioning.MutableUser</span></td><td><code>1e4d08f451001fef</code></td></tr><tr><td><span class="el_class">org.springframework.security.rsa.crypto.RsaAlgorithm</span></td><td><code>2a7021d1964985ee</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.DefaultRedirectStrategy</span></td><td><code>ffecd281332cf6ea</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.DefaultSecurityFilterChain</span></td><td><code>a30668a2e2a979e2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.FilterChainProxy</span></td><td><code>d684b57961b36627</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.FilterChainProxy.NullFilterChainValidator</span></td><td><code>32cc9f9f02686837</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.PortMapperImpl</span></td><td><code>2b6fddb1a98af717</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.PortResolverImpl</span></td><td><code>417f8b23d6a5d061</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.AccessDeniedHandlerImpl</span></td><td><code>74a826fcdf55ebef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator</span></td><td><code>818b1700ce62e520</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.ExceptionTranslationFilter</span></td><td><code>5b86ea75cb6f5df0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.ExceptionTranslationFilter.DefaultThrowableAnalyzer</span></td><td><code>18c3e4c63159e4a2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.RequestMatcherDelegatingWebInvocationPrivilegeEvaluator</span></td><td><code>39c47d8a4f7e0885</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.AbstractVariableEvaluationContextPostProcessor</span></td><td><code>39a5cb986a7e73b8</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler</span></td><td><code>42d8653e6b3f065c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.ExpressionBasedFilterInvocationSecurityMetadataSource</span></td><td><code>001f59f8b1ec7a1f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.ExpressionBasedFilterInvocationSecurityMetadataSource.RequestVariablesExtractorEvaluationContextPostProcessor</span></td><td><code>149ca24afed4b61b</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.WebExpressionConfigAttribute</span></td><td><code>ee52ca0359796a41</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.WebExpressionVoter</span></td><td><code>e08b01d8551d962f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.intercept.DefaultFilterInvocationSecurityMetadataSource</span></td><td><code>6c7bb45b7654604c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.intercept.FilterSecurityInterceptor</span></td><td><code>430641a917c3d255</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter</span></td><td><code>e0131a9495df2886</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AbstractAuthenticationTargetUrlRequestHandler</span></td><td><code>deeaf3017b154bf9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AnonymousAuthenticationFilter</span></td><td><code>eea1acbc59e3d8d0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.DelegatingAuthenticationEntryPoint</span></td><td><code>d9bb8db9d501010c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.HttpStatusEntryPoint</span></td><td><code>5b0c7544835cf308</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint</span></td><td><code>ad2ce6327e8e1de3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.NullRememberMeServices</span></td><td><code>df5d1167516f8d69</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler</span></td><td><code>7135dcf3d55c2ead</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SimpleUrlAuthenticationFailureHandler</span></td><td><code>0ca74d8c4d478218</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SimpleUrlAuthenticationSuccessHandler</span></td><td><code>e6f62a5756369c34</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter</span></td><td><code>393d4e1308c0f849</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.WebAuthenticationDetailsSource</span></td><td><code>f618168f39fdf2d9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.CompositeLogoutHandler</span></td><td><code>82f576bafb51cad3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.DelegatingLogoutSuccessHandler</span></td><td><code>912c1d56222f0bb0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.HttpStatusReturningLogoutSuccessHandler</span></td><td><code>67387a1308a93fc0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.LogoutFilter</span></td><td><code>17b9a54184649e28</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.LogoutSuccessEventPublishingLogoutHandler</span></td><td><code>bcba7dc777f5494b</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler</span></td><td><code>287d46799da087d9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.SimpleUrlLogoutSuccessHandler</span></td><td><code>4b5b69dff249c445</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.AbstractSessionFixationProtectionStrategy</span></td><td><code>983271efecc92d74</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.AbstractSessionFixationProtectionStrategy.NullEventPublisher</span></td><td><code>40d06c16b14c0950</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.ChangeSessionIdAuthenticationStrategy</span></td><td><code>8a3ccbeee97ee02a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy</span></td><td><code>3f3b5ae6ffe32ef2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.NullAuthenticatedSessionStrategy</span></td><td><code>5b96d8169195f438</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter</span></td><td><code>05d875ca1390ee27</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter</span></td><td><code>f392284ea45ccb08</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationConverter</span></td><td><code>fb9e79b523edd604</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint</span></td><td><code>74d0321e56a7bdbe</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationFilter</span></td><td><code>d53b092b883554fd</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.bind.support.AuthenticationPrincipalArgumentResolver</span></td><td><code>ff858ad46a23bb5c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.HttpSessionSecurityContextRepository</span></td><td><code>195d2250a4e908cf</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.NullSecurityContextRepository</span></td><td><code>e84c50e364f99ee7</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.SecurityContextPersistenceFilter</span></td><td><code>a46cbd62e49d6458</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter</span></td><td><code>a8735e26df1b638d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfAuthenticationStrategy</span></td><td><code>8df5d9d7849480ce</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfFilter</span></td><td><code>dffa6c568c7e1b1a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfFilter.DefaultRequiresCsrfMatcher</span></td><td><code>4b5df127d996f343</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfLogoutHandler</span></td><td><code>d0fc8574f3c36bce</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.HttpSessionCsrfTokenRepository</span></td><td><code>1b0306552d9aa299</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.LazyCsrfTokenRepository</span></td><td><code>66c5c17a00fdd7b1</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.firewall.DefaultRequestRejectedHandler</span></td><td><code>4d012614a2fcee0d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.firewall.StrictHttpFirewall</span></td><td><code>21644a57bbd9e3c5</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.Header</span></td><td><code>676dd8526a1daaac</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.HeaderWriterFilter</span></td><td><code>b2d68bdf515d6b89</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.CacheControlHeadersWriter</span></td><td><code>8ad5734e17360256</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.HstsHeaderWriter</span></td><td><code>1cfa24baae0b0d9d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.HstsHeaderWriter.SecureRequestMatcher</span></td><td><code>2fe2fa0aa9b58e3a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.StaticHeadersWriter</span></td><td><code>3f96e74427ec3223</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.XContentTypeOptionsHeaderWriter</span></td><td><code>015dbfda9e9caef4</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.XXssProtectionHeaderWriter</span></td><td><code>6535d57ded5152d4</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.frameoptions.XFrameOptionsHeaderWriter</span></td><td><code>5882feec8f80da08</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.frameoptions.XFrameOptionsHeaderWriter.XFrameOptionsMode</span></td><td><code>8812fab36fbd5eea</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.AuthenticationPrincipalArgumentResolver</span></td><td><code>f81418e0ac09103a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.CsrfTokenArgumentResolver</span></td><td><code>4b10664a2249c0ef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.CurrentSecurityContextArgumentResolver</span></td><td><code>c27fd2caf1e62b69</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.savedrequest.HttpSessionRequestCache</span></td><td><code>26617d2d86b1ac17</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.savedrequest.RequestCacheAwareFilter</span></td><td><code>80f690ee93b7c6a0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servlet.support.csrf.CsrfRequestDataValueProcessor</span></td><td><code>e7af7a3efd88d781</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servletapi.HttpServlet3RequestFactory</span></td><td><code>28414db295e5e473</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter</span></td><td><code>4c47fd3fc74acb1c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.session.DisableEncodeUrlFilter</span></td><td><code>daae606a55a78752</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.session.SessionManagementFilter</span></td><td><code>bf0bd7e9e7810ecd</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.ThrowableAnalyzer</span></td><td><code>33546dcafeaecac2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.UrlUtils</span></td><td><code>2b59253b45bd73ef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AndRequestMatcher</span></td><td><code>01d237a9dae9b42f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AntPathRequestMatcher</span></td><td><code>335917e406572ef5</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AntPathRequestMatcher.SpringAntMatcher</span></td><td><code>3ae7591d895d5f16</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AnyRequestMatcher</span></td><td><code>bce50cbe907f82af</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.MediaTypeRequestMatcher</span></td><td><code>19a9da44e1b51c56</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.NegatedRequestMatcher</span></td><td><code>6379a5889d6e5f80</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.OrRequestMatcher</span></td><td><code>0ce1b7fab84ebb63</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.RequestHeaderRequestMatcher</span></td><td><code>4b9ee002117708c3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.RequestMatcherEntry</span></td><td><code>487174c463340f0f</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.ClassMode</span></td><td><code>fa61c78e7ef537c7</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.HierarchyMode</span></td><td><code>c91cce08b47612d0</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.MethodMode</span></td><td><code>1315bd0d0a0cc667</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.BootstrapUtils</span></td><td><code>bb206de825078952</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.ContextConfigurationAttributes</span></td><td><code>cb36c238ba15672e</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.MergedContextConfiguration</span></td><td><code>a69c3403786defb9</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContext</span></td><td><code>d3151631d123be07</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextAnnotationUtils</span></td><td><code>b427ee429959397d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextAnnotationUtils.AnnotationDescriptor</span></td><td><code>79149c2c58c75007</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextManager</span></td><td><code>18fb8fc15ae15ac7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextManager.1</span></td><td><code>615a592a7cf035c4</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.ContextCacheUtils</span></td><td><code>800184f804b35b26</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate</span></td><td><code>c0b28d62dc3081ad</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultContextCache</span></td><td><code>988d5ed3ef5ebe26</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultContextCache.LruCache</span></td><td><code>0e30d1acbc6750cd</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestClassEvent</span></td><td><code>2fed854ca1097184</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestExecutionEvent</span></td><td><code>5a953154b6b11ac3</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestMethodEvent</span></td><td><code>c7a60a6085012006</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.ApplicationEventsTestExecutionListener</span></td><td><code>aadf8cd6adfe04ab</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestClassEvent</span></td><td><code>c2c6ca38fa6a1159</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestExecutionEvent</span></td><td><code>d009fe42f7bcb709</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestMethodEvent</span></td><td><code>e1266b16d04be6e6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.EventPublishingTestExecutionListener</span></td><td><code>3d0a732f9582ef54</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.PrepareTestInstanceEvent</span></td><td><code>3d16415d7211bc4a</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.TestContextEvent</span></td><td><code>9274637ea396e786</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.jdbc.Sql.ExecutionPhase</span></td><td><code>ca7f27779e6a7ca6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener</span></td><td><code>e8db63fc4fd5cae7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.junit.jupiter.SpringExtension</span></td><td><code>9948f00265bef378</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractContextLoader</span></td><td><code>4f7b02670207f174</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener</span></td><td><code>85bc21e68ba51c56</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractTestContextBootstrapper</span></td><td><code>1a2a00506835dad9</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractTestExecutionListener</span></td><td><code>268bd3f46b84e8df</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.ActiveProfilesUtils</span></td><td><code>a86b5bddac7035c7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.ApplicationContextInitializerUtils</span></td><td><code>285ea561b1c47c1c</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultActiveProfilesResolver</span></td><td><code>fdaf6ce46d666edb</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultBootstrapContext</span></td><td><code>137c52a9a3e4dc73</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultTestContext</span></td><td><code>edc266493621631d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultTestContextBootstrapper</span></td><td><code>7119cf941443d899</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DependencyInjectionTestExecutionListener</span></td><td><code>1b69c36145a039bd</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener</span></td><td><code>d4b78de02359256d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DirtiesContextTestExecutionListener</span></td><td><code>5eef1440631d1108</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DynamicPropertiesContextCustomizerFactory</span></td><td><code>cf9dcc0b24177d21</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.MergedTestPropertySources</span></td><td><code>d47b3ecaa062d4a3</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.TestPropertySourceUtils</span></td><td><code>cd442976365acac8</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionContextHolder</span></td><td><code>4868fb4706da41a6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionalTestExecutionListener</span></td><td><code>dbb1fc9642473e5f</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionalTestExecutionListener.1</span></td><td><code>4f262542ae8dc566</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.ServletTestExecutionListener</span></td><td><code>7af70707d11c1c6b</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.WebMergedContextConfiguration</span></td><td><code>8fd872186b3404af</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.socket.MockServerContainerContextCustomizerFactory</span></td><td><code>ee49673b1a6a2ae5</code></td></tr><tr><td><span class="el_class">org.springframework.test.util.AopTestUtils</span></td><td><code>18a6245a67f6d6db</code></td></tr><tr><td><span class="el_class">org.springframework.test.util.ReflectionTestUtils</span></td><td><code>76666d677f30b3e7</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.TransactionException</span></td><td><code>0e0c55b2a3c6580b</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.TransactionSystemException</span></td><td><code>e8b5a3c098a8dd5f</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration</span></td><td><code>33b3a691fa752f5c</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.AnnotationTransactionAttributeSource</span></td><td><code>6040b6871df641fd</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.Isolation</span></td><td><code>44f52f5b7e20ae5a</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.JtaTransactionAnnotationParser</span></td><td><code>d8e4d9e8505f5fa6</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.Propagation</span></td><td><code>a30be3c1a7bac1e5</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration</span></td><td><code>2c25f607ca5cdab3</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.SpringTransactionAnnotationParser</span></td><td><code>46d22cbf67579ea2</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.TransactionManagementConfigurationSelector</span></td><td><code>4713b01e52fb0db4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.TransactionManagementConfigurationSelector.1</span></td><td><code>0bdbe8fdd3fb5015</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.event.TransactionalEventListenerFactory</span></td><td><code>c46d715a8fd613ce</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource</span></td><td><code>f85541b6bb600023</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource.1</span></td><td><code>2b7f651f0ab156cd</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor</span></td><td><code>c028fd417f3cfd08</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor.1</span></td><td><code>2cd71a9cc30acf76</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.DefaultTransactionAttribute</span></td><td><code>565e4d5bafab2e4e</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.DelegatingTransactionAttribute</span></td><td><code>8ddb3f9e856b2ad4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.RuleBasedTransactionAttribute</span></td><td><code>8db0e3dbd7807f18</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport</span></td><td><code>0af1043cc8e5fa76</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport.1</span></td><td><code>2b7c9aa6d5b089d0</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport.TransactionInfo</span></td><td><code>fda1bb151fcc689f</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAttributeSourcePointcut</span></td><td><code>dee413e94b1c5ee7</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAttributeSourcePointcut.TransactionAttributeSourceClassFilter</span></td><td><code>c4c9b17babed8eaf</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionInterceptor</span></td><td><code>de44757f7fb2d1a0</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionInterceptor.1</span></td><td><code>c996b445cc163cf4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.AbstractPlatformTransactionManager</span></td><td><code>93c25677c80dfb42</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.AbstractTransactionStatus</span></td><td><code>919272a0b530e5e1</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DefaultTransactionDefinition</span></td><td><code>225aa7e3bd605d29</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DefaultTransactionStatus</span></td><td><code>853b8a9d5f0177c2</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DelegatingTransactionDefinition</span></td><td><code>08a717e441cb058c</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.ResourceHolderSupport</span></td><td><code>26f06839a8746d77</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationManager</span></td><td><code>fd1bcc15c3a4bf31</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationUtils</span></td><td><code>d5f285c9ab97671a</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationUtils.ScopedProxyUnwrapper</span></td><td><code>0de227ec8ead46e8</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionTemplate</span></td><td><code>d40755561bda3c8a</code></td></tr><tr><td><span class="el_class">org.springframework.ui.context.support.ResourceBundleThemeSource</span></td><td><code>655f2b1ed69c258e</code></td></tr><tr><td><span class="el_class">org.springframework.ui.context.support.UiApplicationContextUtils</span></td><td><code>b35e213dafcdf1dd</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher</span></td><td><code>6e27021ca2fe7864</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher.AntPathStringMatcher</span></td><td><code>79f2f7bd537a5358</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher.PathSeparatorPatternCache</span></td><td><code>8a03edb4713c5559</code></td></tr><tr><td><span class="el_class">org.springframework.util.Assert</span></td><td><code>55d74684317185c0</code></td></tr><tr><td><span class="el_class">org.springframework.util.ClassUtils</span></td><td><code>e8196647310d3130</code></td></tr><tr><td><span class="el_class">org.springframework.util.CollectionUtils</span></td><td><code>fa418a4430587240</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrencyThrottleSupport</span></td><td><code>dffacc325af1c7ff</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentLruCache</span></td><td><code>f7b1cb622f3d87b8</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap</span></td><td><code>ef826bab03c14acd</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.1</span></td><td><code>f42c6ede7f2039ff</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Entry</span></td><td><code>1f5aef6fe5e79a77</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.EntryIterator</span></td><td><code>545621dec64ee438</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.EntrySet</span></td><td><code>79945b0847668b40</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.ReferenceManager</span></td><td><code>6b0dc152f39160f7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.ReferenceType</span></td><td><code>7ac30709be5b28b7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Restructure</span></td><td><code>ce13d060d20426ab</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Segment</span></td><td><code>7e7ff79bab261740</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.SoftEntryReference</span></td><td><code>9b237f2dbb04c81b</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Task</span></td><td><code>e4d68ae70c3d0c82</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.TaskOption</span></td><td><code>9b65a8e89236775b</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.WeakEntryReference</span></td><td><code>374d476e0712e161</code></td></tr><tr><td><span class="el_class">org.springframework.util.CustomizableThreadCreator</span></td><td><code>8745b0df97887b1f</code></td></tr><tr><td><span class="el_class">org.springframework.util.DefaultPropertiesPersister</span></td><td><code>a4fe8df07f38409e</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedCaseInsensitiveMap</span></td><td><code>6b354f0354f2581d</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedCaseInsensitiveMap.1</span></td><td><code>37edcb48cdf0bc79</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedMultiValueMap</span></td><td><code>491095ddab4025e4</code></td></tr><tr><td><span class="el_class">org.springframework.util.MethodInvoker</span></td><td><code>b53d6b6c325aa8d1</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeType</span></td><td><code>7835f8e109793629</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeType.SpecificityComparator</span></td><td><code>7bc2e9eed3b574b4</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeTypeUtils</span></td><td><code>83bb925d1de1448a</code></td></tr><tr><td><span class="el_class">org.springframework.util.MultiValueMapAdapter</span></td><td><code>e5d474fed5763a0e</code></td></tr><tr><td><span class="el_class">org.springframework.util.NumberUtils</span></td><td><code>befcb6cf3da1bac2</code></td></tr><tr><td><span class="el_class">org.springframework.util.ObjectUtils</span></td><td><code>bd17bfeffea59cfc</code></td></tr><tr><td><span class="el_class">org.springframework.util.PropertyPlaceholderHelper</span></td><td><code>54c83f5043ae5d2f</code></td></tr><tr><td><span class="el_class">org.springframework.util.ReflectionUtils</span></td><td><code>b31ee30dc98472b1</code></td></tr><tr><td><span class="el_class">org.springframework.util.ReflectionUtils.MethodFilter</span></td><td><code>f0f476a36863eea7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ResourceUtils</span></td><td><code>166ea351e369dd53</code></td></tr><tr><td><span class="el_class">org.springframework.util.StopWatch</span></td><td><code>fd56c269c7ac01c9</code></td></tr><tr><td><span class="el_class">org.springframework.util.StopWatch.TaskInfo</span></td><td><code>04011bdda5133a7e</code></td></tr><tr><td><span class="el_class">org.springframework.util.StreamUtils</span></td><td><code>3166e74d0567b8a4</code></td></tr><tr><td><span class="el_class">org.springframework.util.StringUtils</span></td><td><code>269e3cdc9cb87415</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.ComparableComparator</span></td><td><code>3adfab675eb561d2</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.Comparators</span></td><td><code>8d49fd32b5a823cf</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.InstanceComparator</span></td><td><code>523ecabc291ea01b</code></td></tr><tr><td><span class="el_class">org.springframework.util.function.SingletonSupplier</span></td><td><code>534e4d41b6838d04</code></td></tr><tr><td><span class="el_class">org.springframework.util.unit.DataSize</span></td><td><code>eeb40c74638e0567</code></td></tr><tr><td><span class="el_class">org.springframework.util.xml.SimpleSaxErrorHandler</span></td><td><code>0b279d3116228795</code></td></tr><tr><td><span class="el_class">org.springframework.util.xml.XmlValidationModeDetector</span></td><td><code>309ba9c02cbc8854</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocalValidatorFactoryBean</span></td><td><code>840d38a846a81645</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocalValidatorFactoryBean.1</span></td><td><code>e50bd09becd57f52</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator</span></td><td><code>017c34fb81fe9f65</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.MethodValidationInterceptor</span></td><td><code>b83dcdf888be2530</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.MethodValidationPostProcessor</span></td><td><code>bed909b6c3157066</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory</span></td><td><code>b8fb9d356c9c7384</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.SpringValidatorAdapter</span></td><td><code>153b8005e76bfe37</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.ContentNegotiationManager</span></td><td><code>297135c58b7fbb6b</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.ContentNegotiationManagerFactoryBean</span></td><td><code>f13797b37ae1376f</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.HeaderContentNegotiationStrategy</span></td><td><code>b208cfefe3598927</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.MappingMediaTypeFileExtensionResolver</span></td><td><code>6f5ebc1923260138</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.annotation.RequestMethod</span></td><td><code>47c46d94d8dd27f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.support.ConfigurableWebBindingInitializer</span></td><td><code>07e6e762f810a2b8</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.support.DefaultSessionAttributeStore</span></td><td><code>27fc4bee635bab86</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.WebApplicationContext</span></td><td><code>c43623af34ecaf4d</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.AbstractRequestAttributes</span></td><td><code>5aa1e218565853f0</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.AbstractRequestAttributesScope</span></td><td><code>1d0803f5f832a489</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.RequestContextHolder</span></td><td><code>db950cf084c0beca</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.RequestScope</span></td><td><code>cc4264230a378e7c</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.ServletRequestAttributes</span></td><td><code>fc9056855c8f4c44</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.ServletWebRequest</span></td><td><code>ceb395df5809a4f6</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.SessionScope</span></td><td><code>b091adcc397acdb8</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.GenericWebApplicationContext</span></td><td><code>de58f7e9f2ef08ea</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextAwareProcessor</span></td><td><code>9c2839aaeb635bc6</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextPropertySource</span></td><td><code>fa56a2303b1d23ca</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextResource</span></td><td><code>5e38aeba9994d554</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextResourcePatternResolver</span></td><td><code>3794fe9bfc175d8b</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextScope</span></td><td><code>f1f0817bd8b0cfe3</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.StandardServletEnvironment</span></td><td><code>2ce62470f64bfbbd</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils</span></td><td><code>95a1a82e8bf86f8d</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.RequestObjectFactory</span></td><td><code>f5fafd08bdcd86fc</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.ResponseObjectFactory</span></td><td><code>a14c45d4fd35e712</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.SessionObjectFactory</span></td><td><code>0c99b99163636577</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.WebRequestObjectFactory</span></td><td><code>983cd7bc21f9f25e</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationObjectSupport</span></td><td><code>b48f100360218e55</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.CorsConfiguration</span></td><td><code>01e7cf3c416c908f</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.CorsConfiguration.OriginPattern</span></td><td><code>fa6480cfd349c750</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.DefaultCorsProcessor</span></td><td><code>783de9a0dee8a83a</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.CharacterEncodingFilter</span></td><td><code>660bc257345661d8</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.FormContentFilter</span></td><td><code>eaa518b2f8d60440</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.GenericFilterBean</span></td><td><code>7d07cf22dd68cbc7</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.OncePerRequestFilter</span></td><td><code>a5b08b34e8a2fe90</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.RequestContextFilter</span></td><td><code>f49680e5d008974a</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.ControllerAdviceBean</span></td><td><code>3094816052010c09</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.HandlerMethod</span></td><td><code>0525a02bbe28e953</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.HandlerMethod.HandlerMethodParameter</span></td><td><code>f441721634fe0a92</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.AbstractCookieValueMethodArgumentResolver</span></td><td><code>923573e40a166ac0</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver</span></td><td><code>fc43e4037ad65c05</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ErrorsMethodArgumentResolver</span></td><td><code>bd975596c499abee</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ExpressionValueMethodArgumentResolver</span></td><td><code>01c7af4b7a5d4d0b</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.MapMethodProcessor</span></td><td><code>3fa01b50a488bbaf</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ModelAttributeMethodProcessor</span></td><td><code>26cc2ba8746890a0</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ModelMethodProcessor</span></td><td><code>4f748edc77caca60</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestHeaderMapMethodArgumentResolver</span></td><td><code>efd6190103f3c33f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestHeaderMethodArgumentResolver</span></td><td><code>8d3a825bf2478414</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestParamMapMethodArgumentResolver</span></td><td><code>8d6a06c4f7cd7f1b</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestParamMethodArgumentResolver</span></td><td><code>79bf621c6faccaad</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.SessionStatusMethodArgumentResolver</span></td><td><code>68276e5a8d2bc60f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.CompositeUriComponentsContributor</span></td><td><code>d3ff082557c13bbf</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.HandlerMethodArgumentResolverComposite</span></td><td><code>f20a188847237d9f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite</span></td><td><code>3c2ad544678e1652</code></td></tr><tr><td><span class="el_class">org.springframework.web.multipart.support.StandardServletMultipartResolver</span></td><td><code>a91e78780ed063ef</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.DispatcherServlet</span></td><td><code>ce52c5ca052db70e</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.FrameworkServlet</span></td><td><code>d9e35b40d026afe1</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.HandlerMapping</span></td><td><code>7bffeb199148c4a4</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.HttpServletBean</span></td><td><code>7b3e4cd062483a2a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.View</span></td><td><code>7a0b6ca7e3d78910</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.AsyncSupportConfigurer</span></td><td><code>46e32da48cd8a820</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer</span></td><td><code>b3e1e8bae0ff4876</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.CorsRegistry</span></td><td><code>f721d23c55c07899</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer</span></td><td><code>a0cf42338c3e3b99</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration</span></td><td><code>132c9816215df137</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.InterceptorRegistration</span></td><td><code>7f13c1369ce212d6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.InterceptorRegistry</span></td><td><code>dd090df2e3d9a4a8</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.PathMatchConfigurer</span></td><td><code>24a8014985753615</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration</span></td><td><code>aef2164d12aa64dc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry</span></td><td><code>c563c54aacd8a1c4</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ViewControllerRegistry</span></td><td><code>949ce58dff7b8acc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ViewResolverRegistry</span></td><td><code>12e8363ec389daac</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport</span></td><td><code>f05b3653ea061f23</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurer</span></td><td><code>bbdcc3244ea12799</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurerComposite</span></td><td><code>fa58ef1a08603332</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.function.support.HandlerFunctionAdapter</span></td><td><code>2801df59c3e42d1b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.function.support.RouterFunctionMapping</span></td><td><code>822dbfe852e6ea4b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping</span></td><td><code>dea8de8356b6f514</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver</span></td><td><code>8f5d108ad0c451f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMapping</span></td><td><code>6a12d969aafa7ad5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver</span></td><td><code>2f4725a1cc0b9ca2</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping</span></td><td><code>e2460492e5b359fd</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.EmptyHandler</span></td><td><code>53dc402d0e250d82</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistration</span></td><td><code>d9373e3e3d085cb7</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistry</span></td><td><code>a008adefae61d8bc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractUrlHandlerMapping</span></td><td><code>c659f1fe31932f78</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping</span></td><td><code>694a57dd973d310a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor</span></td><td><code>c0174852f1d85eda</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.HandlerExceptionResolverComposite</span></td><td><code>cdd0b732bcd3bbc6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.SimpleUrlHandlerMapping</span></td><td><code>aff35857d8d38efa</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.WebRequestHandlerInterceptorAdapter</span></td><td><code>56385ee4245b4e3a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver</span></td><td><code>4528fb8a0e4b3c56</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter</span></td><td><code>6a9f519c656e1114</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter</span></td><td><code>c6951e5c3ab415f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver</span></td><td><code>8b5c7602a77571f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.AbstractMediaTypeExpression</span></td><td><code>26ebf7f87cdf223a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.AbstractRequestCondition</span></td><td><code>a735869ac0b2a872</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ConsumesRequestCondition</span></td><td><code>9dbc05aff94578f0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.HeadersRequestCondition</span></td><td><code>b23e0b398ade4e5b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ParamsRequestCondition</span></td><td><code>71b3d466f2e702b0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.PathPatternsRequestCondition</span></td><td><code>20a2aa73499bd0c5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.PatternsRequestCondition</span></td><td><code>35e4fdf3bb5fc2bc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ProducesRequestCondition</span></td><td><code>771c1240c136e999</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ProducesRequestCondition.ProduceMediaTypeExpression</span></td><td><code>781b8d18899cf237</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.RequestConditionHolder</span></td><td><code>4c852eaf2a8bcb4f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.RequestMethodsRequestCondition</span></td><td><code>06206c1e36c58c23</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter</span></td><td><code>54abd3e810439726</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo</span></td><td><code>69986b73b9f8ee75</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo.BuilderConfiguration</span></td><td><code>49120b9b49eac605</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo.DefaultBuilder</span></td><td><code>ceee0a8fdf935889</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping</span></td><td><code>2b5fa4872d06f59a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMethodMappingNamingStrategy</span></td><td><code>70a900ee7d0c7282</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMappingJacksonResponseBodyAdvice</span></td><td><code>322792167ba40dc9</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver</span></td><td><code>d6c3cf69856df703</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor</span></td><td><code>e7f14b3806f0cf89</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.1</span></td><td><code>9e4845391fdc2f25</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AsyncTaskMethodReturnValueHandler</span></td><td><code>275f3d41b768c525</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.CallableMethodReturnValueHandler</span></td><td><code>fe56a99a0f73ec33</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ContinuationHandlerMethodArgumentResolver</span></td><td><code>5405085f3ffede3c</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.DeferredResultMethodReturnValueHandler</span></td><td><code>29edc928be8237a0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver</span></td><td><code>9f5bd45648a7b7ed</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.HttpEntityMethodProcessor</span></td><td><code>cb10e567f51d2fef</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.HttpHeadersReturnValueHandler</span></td><td><code>d7589740f2b450ca</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.JsonViewRequestBodyAdvice</span></td><td><code>0b95b8c78db6c901</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.JsonViewResponseBodyAdvice</span></td><td><code>e469745b848ba587</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.MatrixVariableMapMethodArgumentResolver</span></td><td><code>2e6ba5ffc1a3b720</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.MatrixVariableMethodArgumentResolver</span></td><td><code>a1de1b2e60fd9736</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ModelAndViewMethodReturnValueHandler</span></td><td><code>2a46f0a63fca0ef9</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PathVariableMapMethodArgumentResolver</span></td><td><code>1e069e673d0e7ee2</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PathVariableMethodArgumentResolver</span></td><td><code>e5b0ead05a9cec01</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PrincipalMethodArgumentResolver</span></td><td><code>5501e70a19cc3a69</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ReactiveTypeHandler</span></td><td><code>1a0aba222313a681</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RedirectAttributesMethodArgumentResolver</span></td><td><code>585866dd7f309c0b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestAttributeMethodArgumentResolver</span></td><td><code>89a458ddb5a0b2ce</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestBodyAdviceAdapter</span></td><td><code>ddc0027562084800</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter</span></td><td><code>1a379a05a8591e22</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping</span></td><td><code>e31d9c99c8d29cde</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestPartMethodArgumentResolver</span></td><td><code>8a6437cd0dc80da5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyAdviceChain</span></td><td><code>0c2ef934bb00fb6f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor</span></td><td><code>17f8f1dbc875d623</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ResponseBodyEmitterReturnValueHandler</span></td><td><code>1c49a2cb88759b73</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletCookieValueMethodArgumentResolver</span></td><td><code>dcb416e0b62e7557</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletModelAttributeMethodProcessor</span></td><td><code>13d8c9d9cf5bcfa5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletRequestMethodArgumentResolver</span></td><td><code>c05416d0baf57c67</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletResponseMethodArgumentResolver</span></td><td><code>91001c82f73b7407</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.SessionAttributeMethodArgumentResolver</span></td><td><code>e43e6d347ffe4717</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.StreamingResponseBodyReturnValueHandler</span></td><td><code>7fc05cc59902f93a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.UriComponentsBuilderMethodArgumentResolver</span></td><td><code>79c2baaf4c2f2b42</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ViewMethodReturnValueHandler</span></td><td><code>fdf18a63a6da6689</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ViewNameMethodReturnValueHandler</span></td><td><code>702820853af059d7</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver</span></td><td><code>557ead58a901ff9a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.AbstractResourceResolver</span></td><td><code>47595e58209b1405</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.DefaultResourceResolverChain</span></td><td><code>08dca4d94c44db8a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.DefaultResourceTransformerChain</span></td><td><code>c325e44e8aa5f8f6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.PathResourceResolver</span></td><td><code>1f4363e58b91d529</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceHttpRequestHandler</span></td><td><code>13dae4e719e95299</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceUrlProvider</span></td><td><code>b2b2318caf99e66b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceUrlProviderExposingInterceptor</span></td><td><code>017db71f77fc0756</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.AbstractFlashMapManager</span></td><td><code>0c43f3587b65531f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.SessionFlashMapManager</span></td><td><code>e14258d2a31f6cad</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.WebContentGenerator</span></td><td><code>8afd2dd1ef795590</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.theme.AbstractThemeResolver</span></td><td><code>3b5e4f30131e5e68</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.theme.FixedThemeResolver</span></td><td><code>c60c16566f6a5edb</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver</span></td><td><code>2ffdd065d6ec7b5b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver.1</span></td><td><code>1f3534be63aa383b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver.2</span></td><td><code>0cb6aec4bd92e1d6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.BeanNameViewResolver</span></td><td><code>a7a2e09773356b90</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ContentNegotiatingViewResolver</span></td><td><code>f8c78479a8b486ac</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ContentNegotiatingViewResolver.1</span></td><td><code>72400c4c2a8ac136</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator</span></td><td><code>c35a5d18e1ad4112</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.InternalResourceViewResolver</span></td><td><code>820f92d1d4359435</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.UrlBasedViewResolver</span></td><td><code>2b80370abd042fdc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ViewResolverComposite</span></td><td><code>a9689b4efd269ddb</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.UrlPathHelper</span></td><td><code>5af6ef8a18add33e</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.UrlPathHelper.1</span></td><td><code>cea875fd29996cab</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.InternalPathPatternParser</span></td><td><code>8d9a2bf126559776</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.LiteralPathElement</span></td><td><code>ea07e8bc392402f7</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathElement</span></td><td><code>0b52ddc7eb6033e4</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPattern</span></td><td><code>af87baa1f708dc08</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPatternParser</span></td><td><code>97db9ab9e7fe2b1f</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPatternParser.1</span></td><td><code>3f1c3e482762bf79</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.SeparatorPathElement</span></td><td><code>9c76b1c8c8d1e792</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.WildcardTheRestPathElement</span></td><td><code>d40ec2979adff1a0</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory</span></td><td><code>1a0a6c89f13307f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory.1</span></td><td><code>1f70f5722c85dba6</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory.2</span></td><td><code>7c14ffc42e74c3c2</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.Container</span></td><td><code>2a07a02d50675e15</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.ContainerState</span></td><td><code>dfc3fa8da8f9f9d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.FailureDetectingExternalResource</span></td><td><code>6ce2497b553c55d8</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.GenericContainer</span></td><td><code>97e0746e4140c180</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.JdbcDatabaseContainer</span></td><td><code>29eaf8ed2348ba43</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.PortForwardingContainer</span></td><td><code>a3731629001fb79c</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.PostgreSQLContainer</span></td><td><code>3bbe157a78fe8105</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.BaseConsumer</span></td><td><code>a4b36a30cd9032ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.FrameConsumerResultCallback</span></td><td><code>90ea0e6c77c838c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.FrameConsumerResultCallback.LineConsumer</span></td><td><code>fc78c19125a715a9</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame</span></td><td><code>fbeb4840c20b4d3f</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame.1</span></td><td><code>43434f0e72480db9</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame.OutputType</span></td><td><code>f68fe47412e0a697</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.WaitingConsumer</span></td><td><code>47c0558f9d54ad5e</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.IsRunningStartupCheckStrategy</span></td><td><code>28771a0f9ffaf6f4</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.StartupCheckStrategy</span></td><td><code>0a7352cae13d7fc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.StartupCheckStrategy.StartupStatus</span></td><td><code>69509b6f05718a6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.AbstractWaitStrategy</span></td><td><code>97024d4669c2c997</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.1</span></td><td><code>55cdfa0a43dede04</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.HostPortWaitStrategy</span></td><td><code>219306b2b9762d16</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy</span></td><td><code>bc7326709924b794</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.Wait</span></td><td><code>bf3d7ce1e177c543</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.AuthDelegatingDockerClientConfig</span></td><td><code>7946325f90a3f902</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientConfigUtils</span></td><td><code>de7879cea6d96c1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientProviderStrategy</span></td><td><code>b9c1280fefe25f16</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientProviderStrategy.1</span></td><td><code>a2b915ef81ba7aa8</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerDesktopClientProviderStrategy</span></td><td><code>b1a19fdcecea1b6f</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerMachineClientProviderStrategy</span></td><td><code>3eade60d427ff762</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.EnvironmentAndSystemPropertyClientProviderStrategy</span></td><td><code>03f5a1f8dbc5a311</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.HeadersAddingDockerHttpClient</span></td><td><code>b5b47d28cde2a8f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.NpipeSocketClientProviderStrategy</span></td><td><code>be507560a31bf5f3</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.RootlessDockerClientProviderStrategy</span></td><td><code>7d75143a75247a38</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TestcontainersHostPropertyClientProviderStrategy</span></td><td><code>0734fa161b3b0207</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TransportConfig</span></td><td><code>b6461df2e9c6fee6</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TransportConfig.TransportConfigBuilder</span></td><td><code>412f546d12bcd5e7</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.UnixSocketClientProviderStrategy</span></td><td><code>209c9dd7869a16ff</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.AbstractImagePullPolicy</span></td><td><code>ce8e1df5f102eec8</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.DefaultPullPolicy</span></td><td><code>5e64973ceffef27a</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.ImageData</span></td><td><code>b809cc389bab8779</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.ImageData.ImageDataBuilder</span></td><td><code>f690def02b490e45</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.LocalImagesCache</span></td><td><code>59972c51d3ee6ed2</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.PullPolicy</span></td><td><code>e5d3170e0a08b838</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.RemoteDockerImage</span></td><td><code>7f922677431f381e</code></td></tr><tr><td><span class="el_class">org.testcontainers.jdbc.ContainerDatabaseDriver</span></td><td><code>997f3c8626f2a579</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.FilesystemFriendlyNameGenerator</span></td><td><code>e1c09fd0a7a8df5e</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersExtension</span></td><td><code>67a7e3ec630872d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersExtension.StoreAdapter</span></td><td><code>c0ffe23689f4a28e</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersTestDescription</span></td><td><code>5009764b3ceb4544</code></td></tr><tr><td><span class="el_class">org.testcontainers.lifecycle.Startables</span></td><td><code>951d24c179273be7</code></td></tr><tr><td><span class="el_class">org.testcontainers.lifecycle.Startables.1</span></td><td><code>28d22a39b70545ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Base64Variant</span></td><td><code>aa0b4fb31b027401</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Base64Variants</span></td><td><code>576238afee9b4164</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonEncoding</span></td><td><code>825b61e78be616bc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonFactory</span></td><td><code>135e17d90ddd4df6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonFactory.Feature</span></td><td><code>81dce2466efa6327</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonGenerator</span></td><td><code>4150d1d2337d9632</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonGenerator.Feature</span></td><td><code>46d5560dd4971751</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser</span></td><td><code>bc012733eaab2cd7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser.Feature</span></td><td><code>4b68418976825bea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser.NumberType</span></td><td><code>ef1b4571895f5cec</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonStreamContext</span></td><td><code>432f077997f82d75</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonToken</span></td><td><code>0af5ea600acb1126</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.ObjectCodec</span></td><td><code>b5423ffd2df4d4d8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.TreeCodec</span></td><td><code>9ab3d4f31146860b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Version</span></td><td><code>9189790ff8fb2b49</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.GeneratorBase</span></td><td><code>7564d428d842dc35</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.ParserBase</span></td><td><code>daabee842ab9c479</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.ParserMinimalBase</span></td><td><code>1c232e53c614bcad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.CharTypes</span></td><td><code>547e537996634227</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.IOContext</span></td><td><code>8850aacab7e742fe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.JsonStringEncoder</span></td><td><code>c6ce3c338299e958</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.NumberInput</span></td><td><code>e9af2388cdf8873a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.SegmentedStringWriter</span></td><td><code>d4b9c2bcd378e679</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.SerializedString</span></td><td><code>335fc673ab29c7b2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper</span></td><td><code>178126a36b8ec64d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonGeneratorImpl</span></td><td><code>9e1e368276e31db5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonReadContext</span></td><td><code>71299dc3ff5ebb1b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonWriteContext</span></td><td><code>1c9c5d021d46e029</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.UTF8JsonGenerator</span></td><td><code>250dae3d7a219220</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.UTF8StreamJsonParser</span></td><td><code>be56d44c7b13841e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.WriterBasedJsonGenerator</span></td><td><code>6bbe3ced8b62f2c6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer</span></td><td><code>85f8f61cf7f03b43</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.TableInfo</span></td><td><code>824b4d47df6424bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer</span></td><td><code>11779992c7da0795</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer.TableInfo</span></td><td><code>d8f3a9141a9553e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.type.ResolvedType</span></td><td><code>25959cb4818312a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.type.TypeReference</span></td><td><code>1f43f2caf6e3fd9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.BufferRecycler</span></td><td><code>e30e8b10d3f1e862</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.ByteArrayBuilder</span></td><td><code>4b554592f27e459c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultIndenter</span></td><td><code>9701287383d17a19</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter</span></td><td><code>3c35cd2021d99380</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter</span></td><td><code>948a63fb8f58a005</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter</span></td><td><code>b1f25bfa69289acc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.InternCache</span></td><td><code>18df14c9399f6da9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.TextBuffer</span></td><td><code>b5fbff0351c354af</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.AnnotationIntrospector</span></td><td><code>9bedb33a0dc58e7a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.BeanDescription</span></td><td><code>438b9b6162f6341d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.BeanProperty.Std</span></td><td><code>e0d1a3989065dd03</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DatabindContext</span></td><td><code>e9d344b515eb9ede</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationConfig</span></td><td><code>1adb2bdf8c7b35ae</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationContext</span></td><td><code>03ca0a5cc2f1dff0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationFeature</span></td><td><code>d558d68127b0cbc6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JavaType</span></td><td><code>cd6376798e8eb51d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonDeserializer</span></td><td><code>a3b6bad878ef50d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonNode</span></td><td><code>24a4603e2fe7532b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonSerializable.Base</span></td><td><code>fdbebdb822048c1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonSerializer</span></td><td><code>40f46aad6fa7cf05</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.KeyDeserializer</span></td><td><code>03954341c9542946</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.MapperFeature</span></td><td><code>9b01f8b72bbb5e7c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.MappingJsonFactory</span></td><td><code>1264b5ae948e8874</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.Module</span></td><td><code>e0ae4d64fd61dc30</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ObjectMapper</span></td><td><code>e318c3ff42c7bd64</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ObjectMapper.1</span></td><td><code>a0043cc6ab7e18b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.PropertyMetadata</span></td><td><code>026300cf8aa2fc7a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.PropertyName</span></td><td><code>fd2239a90b1dafd4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializationConfig</span></td><td><code>034bccbfc5ea2dd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializationFeature</span></td><td><code>5a68beae378dcd8f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializerProvider</span></td><td><code>c79605cdd9e8c52c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.BaseSettings</span></td><td><code>a692a5d6faec2230</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ConfigOverrides</span></td><td><code>46e4739b22247f59</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ContextAttributes</span></td><td><code>a2a8aa2f8961760b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl</span></td><td><code>b92e4530d24495a7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.DeserializerFactoryConfig</span></td><td><code>8c20e9a98392126a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.MapperConfig</span></td><td><code>586bf13db4c46109</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.MapperConfigBase</span></td><td><code>edca169077abdf74</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.SerializerFactoryConfig</span></td><td><code>20974162303fc9e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BasicDeserializerFactory</span></td><td><code>9dd8c3b3b25b645b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializer</span></td><td><code>7cb8513f4cc24000</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializer.1</span></td><td><code>b2852f818002d5de</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerBase</span></td><td><code>22f6aaef1d146f4e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerBuilder</span></td><td><code>f859b89b2143a155</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerFactory</span></td><td><code>1de18ccd8c54a766</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerModifier</span></td><td><code>f75128f29ae6c4be</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.CreatorProperty</span></td><td><code>c6851fe6430b3572</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext</span></td><td><code>278e78ed31a0ec85</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.Impl</span></td><td><code>5308b3cf9184befd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DeserializerCache</span></td><td><code>e83034312bb71a9a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DeserializerFactory</span></td><td><code>ec395e5c8ecb066c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.SettableBeanProperty</span></td><td><code>3a4ef0a5bef0f9fe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.ValueInstantiator</span></td><td><code>923fefd9ad3a601c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.BeanPropertyMap</span></td><td><code>1469ae097ab2d20f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.CreatorCollector</span></td><td><code>ede3e0f51c948f91</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.CreatorCollector.StdTypeConstructor</span></td><td><code>c61208d060771582</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.FailingDeserializer</span></td><td><code>eced00b86fb88533</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.FieldProperty</span></td><td><code>6fd60d5c9d94a211</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.InnerClassProperty</span></td><td><code>41867919ffdaae02</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.MethodProperty</span></td><td><code>d9450d0aee8a5738</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator</span></td><td><code>157b7d5c78d0d944</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.SetterlessProperty</span></td><td><code>07864ec8330f19f1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer</span></td><td><code>5fe824173bfcf1a6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer</span></td><td><code>8d0122097cc05534</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase</span></td><td><code>a0c73aa1c65456e3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers</span></td><td><code>982609bb4c5b071d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateBasedDeserializer</span></td><td><code>081b95412e1d2383</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateDeserializer</span></td><td><code>8d0a2e8b2de8c047</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DelegatingDeserializer</span></td><td><code>7acb4f9ea28e0ae4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.EnumDeserializer</span></td><td><code>5969c694449f583c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.FactoryBasedEnumDeserializer</span></td><td><code>e415a792dbfd38a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.FromStringDeserializer</span></td><td><code>f62de2d61980b2d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.JdkDeserializers</span></td><td><code>417df484df8ec350</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.JsonNodeDeserializer</span></td><td><code>5f554df38c13ac20</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.MapDeserializer</span></td><td><code>37a3b1f7a2eead0f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers</span></td><td><code>7d07130e050ef59c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BooleanDeserializer</span></td><td><code>9417c8c91462b434</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.IntegerDeserializer</span></td><td><code>5e0190f0296c667f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.LongDeserializer</span></td><td><code>223e0a83985f30e6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.NumberDeserializer</span></td><td><code>037ef05a938c72b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.PrimitiveOrWrapperDeserializer</span></td><td><code>222ed763ed04b29c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer</span></td><td><code>da1ac4420d63d175</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdDeserializer</span></td><td><code>03f9c471b75023f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer</span></td><td><code>7be6cb339549d9d1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringFactoryKeyDeserializer</span></td><td><code>63e6e7082224aec7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringKD</span></td><td><code>a89df118488e97d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers</span></td><td><code>71556ca978990d8c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdScalarDeserializer</span></td><td><code>90f1cdd26ce1258b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdValueInstantiator</span></td><td><code>fcc80331475a10b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringArrayDeserializer</span></td><td><code>d8cbc3fb9294c02b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringCollectionDeserializer</span></td><td><code>be5e634a23edafd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringDeserializer</span></td><td><code>9a32ddc7d57ffc63</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer</span></td><td><code>ac66c192161dbd6e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.Vanilla</span></td><td><code>721e9b894ffbd854</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.Java7Support</span></td><td><code>90c0dd6b3fe0c29c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.Java7SupportImpl</span></td><td><code>d700da1745598171</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.OptionalHandlerFactory</span></td><td><code>b883d6b4b44b583c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.Annotated</span></td><td><code>9abead95dc4d1013</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedClass</span></td><td><code>e57faaa544c6bf9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedConstructor</span></td><td><code>e32232a39615fe55</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedField</span></td><td><code>e1c582b78a07471e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMember</span></td><td><code>ad621546c3ddbacc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMethod</span></td><td><code>fbfa146386fe480c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMethodMap</span></td><td><code>079433d67bb415d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedParameter</span></td><td><code>f700a079823d57b3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedWithParams</span></td><td><code>3ef7ba226de52c58</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotationMap</span></td><td><code>2e9f8ba110fdbf1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BasicBeanDescription</span></td><td><code>a1004be6b85c0d54</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BasicClassIntrospector</span></td><td><code>5d1a86e62e939695</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BeanPropertyDefinition</span></td><td><code>19067cc09e14377b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.ClassIntrospector</span></td><td><code>a55d62e0336ef322</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase</span></td><td><code>4f854089f2a66ebd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector</span></td><td><code>f3878eaa8fcf2813</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.MemberKey</span></td><td><code>2b6dd82967bf10fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector</span></td><td><code>e69dbe8ff491207a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder</span></td><td><code>f532077226ce3b2d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.1</span></td><td><code>76ffc9c2f2bd4333</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.10</span></td><td><code>d91abcdea423b2fa</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.2</span></td><td><code>43e81646728fc8d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.3</span></td><td><code>4b27e7451b68f064</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.4</span></td><td><code>db44bc256c7f04d1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.5</span></td><td><code>9eda59eb66458bc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.6</span></td><td><code>bd014af9f1e2736a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.7</span></td><td><code>38b60974d21391b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.8</span></td><td><code>24b1a00926dcbcf9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.9</span></td><td><code>62bc37c180617899</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.Linked</span></td><td><code>24a964d377486140</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.MemberIterator</span></td><td><code>5e4dc2aaf87feb78</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.SimpleMixInResolver</span></td><td><code>4feb92e29c80b4e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.TypeResolutionContext.Basic</span></td><td><code>15a95b81b216aca4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std</span></td><td><code>bb8625b804fff43f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.jsontype.SubtypeResolver</span></td><td><code>788370d5d17cb28f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.jsontype.impl.StdSubtypeResolver</span></td><td><code>e1b1d63ab9c92046</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.module.SimpleModule</span></td><td><code>e7d309e00a929028</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ArrayNode</span></td><td><code>fc327ccbfd1fe984</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.BaseJsonNode</span></td><td><code>9c046c4551599eca</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.BooleanNode</span></td><td><code>346ea58998916762</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ContainerNode</span></td><td><code>0e3562125bd7e868</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.IntNode</span></td><td><code>2c33c5a5a6bd2d24</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.JsonNodeFactory</span></td><td><code>c58f1e28df370362</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.JsonNodeType</span></td><td><code>6419260f6c4b85df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.LongNode</span></td><td><code>ea03a1aa721888c8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor</span></td><td><code>caa196fc471ce5bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor.ArrayCursor</span></td><td><code>bfed6e210ddd14ea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor.ObjectCursor</span></td><td><code>148b46bdb81c0d18</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NullNode</span></td><td><code>174a734008c7d8df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NumericNode</span></td><td><code>760017ba928cf6a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ObjectNode</span></td><td><code>8fb1ac43975c27a1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TextNode</span></td><td><code>4bc1ef8be12d003c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TreeTraversingParser</span></td><td><code>5efac5601837f93a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TreeTraversingParser.1</span></td><td><code>3f9f55882167e8ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ValueNode</span></td><td><code>793e5c092d9ff8bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.AnyGetterWriter</span></td><td><code>78ccbc796b0be0a9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BasicSerializerFactory</span></td><td><code>c90b1f1c5c0f55fc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BasicSerializerFactory.1</span></td><td><code>b8e0975251287c10</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanPropertyWriter</span></td><td><code>b959d94ad90528b4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializer</span></td><td><code>e371a4a56c310847</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializerBuilder</span></td><td><code>06453097da74e52a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializerFactory</span></td><td><code>617c339bee2ec39a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.ContainerSerializer</span></td><td><code>0280004f2e5e7644</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.DefaultSerializerProvider</span></td><td><code>426b8a57cd485bdb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.Impl</span></td><td><code>f9a7b19c1fd3c068</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyBuilder</span></td><td><code>f19a0606752e6d34</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyBuilder.1</span></td><td><code>6de85d3a0631f907</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyWriter</span></td><td><code>a361acc7a80a7efb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.SerializerCache</span></td><td><code>f3c58998b3749ea1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.SerializerFactory</span></td><td><code>0c8cdb6e7f052d58</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.FailingSerializer</span></td><td><code>8f790a2ffda84975</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer</span></td><td><code>43716384c5f56c6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap</span></td><td><code>9cd2e9120f31a887</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Double</span></td><td><code>d4fbf5b32b13fcd0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Empty</span></td><td><code>7cf856f8acb34769</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.SerializerAndMapResult</span></td><td><code>a3fd9ce53b0afa3b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Single</span></td><td><code>c74f486f49a8b361</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.ReadOnlyClassToSerializerMap</span></td><td><code>df260091a1a8f6c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.ReadOnlyClassToSerializerMap.Bucket</span></td><td><code>a5ae612d225acaa7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.StringArraySerializer</span></td><td><code>b2454de3ece491d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.UnknownSerializer</span></td><td><code>42b654bd131d523e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ArraySerializerBase</span></td><td><code>4bf7c3da45248cd6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.AsArraySerializerBase</span></td><td><code>156a1ca317999d23</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.BeanSerializerBase</span></td><td><code>f5275aa72ab219bc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.BooleanSerializer</span></td><td><code>070c8eaebc8f698c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ByteArraySerializer</span></td><td><code>c7dfd499437bf49c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.CalendarSerializer</span></td><td><code>9094d1dc0aaa2a6b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.DateSerializer</span></td><td><code>a4a225881cd45da1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase</span></td><td><code>ba38b085c025de00</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.JsonValueSerializer</span></td><td><code>a87518e8a0d77f2d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.MapSerializer</span></td><td><code>4ae4edcb70294d6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NonTypedScalarSerializerBase</span></td><td><code>11918f2a6ec02cec</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NullSerializer</span></td><td><code>d16cd1ec2abf81f5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializer</span></td><td><code>e346a5263bf844d7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers</span></td><td><code>53ac7767cd767d0d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.1</span></td><td><code>3344fc3dd7f6d6bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base</span></td><td><code>2cdc2f9a07b44ed0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.DoubleSerializer</span></td><td><code>825dbc59a2f77212</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer</span></td><td><code>b96833440b427568</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntLikeSerializer</span></td><td><code>6ca08db060bbb764</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer</span></td><td><code>f669e88bdfc2530e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.LongSerializer</span></td><td><code>58c847dc1e934c47</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.ShortSerializer</span></td><td><code>64335a13086d0150</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ObjectArraySerializer</span></td><td><code>87e3a26a8e78991c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.SerializableSerializer</span></td><td><code>20361cb71038ff41</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers</span></td><td><code>44e33a1e41767a2a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer</span></td><td><code>fd8994b75744b571</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.CharArraySerializer</span></td><td><code>eff5646161b71708</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.DoubleArraySerializer</span></td><td><code>9176b75644d4c0b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.FloatArraySerializer</span></td><td><code>bfe22ac144616cbe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.IntArraySerializer</span></td><td><code>502dbc11517f69d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.LongArraySerializer</span></td><td><code>8dbff856c85a9280</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.ShortArraySerializer</span></td><td><code>84e7fcf58ecd9760</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.TypedPrimitiveArraySerializer</span></td><td><code>4ec50d1ca0564da1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdJdkSerializers</span></td><td><code>a74b19684264d0b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializer</span></td><td><code>ac5275da9265ee2f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers</span></td><td><code>f6ef01620c249c5f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers.Dynamic</span></td><td><code>8866795a7ac13e33</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers.StringKeySerializer</span></td><td><code>45a840ab5907a6e2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdScalarSerializer</span></td><td><code>bc1ee8e531e69bbe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdSerializer</span></td><td><code>5c3fdd54d91acc89</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StringSerializer</span></td><td><code>529c33431432bf8d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ToStringSerializer</span></td><td><code>a1dc7b91226ac0ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.UUIDSerializer</span></td><td><code>14254ed8e4c9043e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ArrayType</span></td><td><code>7c1a3a9cd1dcb97e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ClassStack</span></td><td><code>675b04b67d6af33e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.CollectionLikeType</span></td><td><code>fd718f0c692d7a4d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.CollectionType</span></td><td><code>7cb688d15dbec9df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.MapLikeType</span></td><td><code>c7c66dff87341dbd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.MapType</span></td><td><code>6304f661ba11f80d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ResolvedRecursiveType</span></td><td><code>7bb3117494ff1413</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.SimpleType</span></td><td><code>e4a44219186be68d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBase</span></td><td><code>a8f29eb44582f0f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings</span></td><td><code>50c33474b843488d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings.AsKey</span></td><td><code>a075813f1bc09e73</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings.TypeParamStash</span></td><td><code>456a91904038cb6e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeFactory</span></td><td><code>28ce70415428d5e4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeParser</span></td><td><code>02a918bcb07f367b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ArrayBuilders</span></td><td><code>f0c8d8f46190de6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ArrayIterator</span></td><td><code>e94c148ef0ce54ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.BeanUtil</span></td><td><code>fc234109ebbb588b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil</span></td><td><code>6e5e45c71f441b34</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil.Ctor</span></td><td><code>6cb5f59462ee3ffa</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil.EmptyIterator</span></td><td><code>daa6329c87cc8ea3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.CompactStringObjectMap</span></td><td><code>c46bbb3ef7af5988</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.EnumResolver</span></td><td><code>79d217f7c9daf752</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.LRUMap</span></td><td><code>2df0e2fa690435cb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.LinkedNode</span></td><td><code>c50e2cbe0034d268</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ObjectBuffer</span></td><td><code>725f285dc9c9b48f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.RootNameLookup</span></td><td><code>f975ab9bd8e64abc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.StdDateFormat</span></td><td><code>dd83d17f83a57198</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer</span></td><td><code>520ac622709c3126</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer.Parser</span></td><td><code>7786a8e643b497f6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer.Segment</span></td><td><code>e0e2f4b7cabbea14</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TypeKey</span></td><td><code>2be823c16e78493e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.AbstractDockerCmdExecFactory</span></td><td><code>70502ed6e408bd82</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerClientConfig</span></td><td><code>ce3b5b005c2d6856</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerClientConfig.Builder</span></td><td><code>c348377d79496c8e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerCmdExecFactory</span></td><td><code>6efd7c63f8452821</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerCmdExecFactory.DefaultWebTarget</span></td><td><code>bb343584af36b96c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder</span></td><td><code>52ce1f1cc5acba64</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.1</span></td><td><code>f022ef8a222f32ed</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.2</span></td><td><code>5155d8707bbe223c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder</span></td><td><code>f95003fdcdd13675</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder.1</span></td><td><code>f00dbf45fa32946f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder.1.1</span></td><td><code>9c2bf400291b8f80</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientConfig</span></td><td><code>eca24e0c3ede17f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientConfigDelegate</span></td><td><code>6ab0380db5899401</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientImpl</span></td><td><code>707ad651132dedb3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerConfigFile</span></td><td><code>26b694d5aac41644</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerConfigFile.1</span></td><td><code>8864a4bfbec833a5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile</span></td><td><code>346f1b08f6c847f0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile.Endpoints</span></td><td><code>8f1b71f0af25d36a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile.Endpoints.Docker</span></td><td><code>404b999f39f0ea52</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerObjectDeserializer</span></td><td><code>204951dec752a77e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.FramedInputStreamConsumer</span></td><td><code>03eb09544d55c81d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.MediaType</span></td><td><code>31683c01ae634bf4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser</span></td><td><code>3ce4b4f9f91e6a81</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser.HostnameReposName</span></td><td><code>1c084ea3df5f4e3d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser.ReposTag</span></td><td><code>4f33740b5d9fd702</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.RemoteApiVersion</span></td><td><code>987b19a06a9de957</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.RemoteApiVersion.1</span></td><td><code>92f4f8bb10083405</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrAsyncDockerCmd</span></td><td><code>1af08feacefbbe12</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrDockerCmd</span></td><td><code>424a1eca295646da</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.CreateContainerCmdImpl</span></td><td><code>13f5c71d64680bce</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InfoCmdImpl</span></td><td><code>64fcd72587ba1a95</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InspectContainerCmdImpl</span></td><td><code>55ae28380427b878</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InspectImageCmdImpl</span></td><td><code>628ea28d423df234</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.ListImagesCmdImpl</span></td><td><code>8919cc9661c80a6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.LogContainerCmdImpl</span></td><td><code>c14637198fbae90c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.StartContainerCmdImpl</span></td><td><code>3a653d708a80a148</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.VersionCmdImpl</span></td><td><code>d63f90967af99330</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrAsyncDockerCmdExec</span></td><td><code>bb91d2324d3d9353</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrAsyncDockerCmdExec.1</span></td><td><code>de891ed1fb7b7f4f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrDockerCmdExec</span></td><td><code>d59d137aeac3d0e7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrSyncDockerCmdExec</span></td><td><code>568e2f98d4cbe08e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.CreateContainerCmdExec</span></td><td><code>202e23141ba1651a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.CreateContainerCmdExec.1</span></td><td><code>bf36f8eb452790c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InfoCmdExec</span></td><td><code>807017657f073403</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InfoCmdExec.1</span></td><td><code>79fab6d458c1b253</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectContainerCmdExec</span></td><td><code>8d1d61170f749ad2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectContainerCmdExec.1</span></td><td><code>b941c1e72db80ea4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectImageCmdExec</span></td><td><code>8a167854fae6694f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectImageCmdExec.1</span></td><td><code>106fef8821fb754e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.ListImagesCmdExec</span></td><td><code>1f3056faab307468</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.ListImagesCmdExec.1</span></td><td><code>8f9a88f2f1ec6cef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.LogContainerCmdExec</span></td><td><code>70445195734fa2c3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec</span></td><td><code>1b49deae2c1fcd3a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.VersionCmdExec</span></td><td><code>472d8f0826248a11</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.VersionCmdExec.1</span></td><td><code>8a8410a63c9d2f97</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.util.FiltersBuilder</span></td><td><code>abc8337dd25cd974</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher</span></td><td><code>b6a60948c235f116</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Any</span></td><td><code>70e3757bf994c640</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Ascii</span></td><td><code>58b2d3466b5a260d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.BreakingWhitespace</span></td><td><code>9eaebfdf271440fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Digit</span></td><td><code>10afeebd2d9c26eb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.FastMatcher</span></td><td><code>4a85fdbf23fc3f8b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Invisible</span></td><td><code>9ffc8d25d781e118</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaDigit</span></td><td><code>de68ab358c70790e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaIsoControl</span></td><td><code>7f96aca9ce262ec8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLetter</span></td><td><code>c1932969ef35aff9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLetterOrDigit</span></td><td><code>9110f54f7242e45d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLowerCase</span></td><td><code>a3028222583d6f98</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaUpperCase</span></td><td><code>df29a3ab960dd6d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.NamedFastMatcher</span></td><td><code>f7e0c49468e200e3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.None</span></td><td><code>bfa65d521895a90c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.RangesMatcher</span></td><td><code>d600fe03363750cf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.SingleWidth</span></td><td><code>13a39e683c66f10f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Whitespace</span></td><td><code>284f7c7482591188</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner</span></td><td><code>b4e8c7950e5ecb2c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner.1</span></td><td><code>a6acce3bac50e321</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner.MapJoiner</span></td><td><code>72e779a2e40fc052</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects</span></td><td><code>103a0bf41511cead</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects.ToStringHelper</span></td><td><code>0776a02f31e4b320</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects.ToStringHelper.ValueHolder</span></td><td><code>ffc38823055db6e5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Preconditions</span></td><td><code>9bf0ff7d402c0e1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Strings</span></td><td><code>38c49f7911a0e5c7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractIndexedListIterator</span></td><td><code>b28f32ad7208003b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap</span></td><td><code>43a2c7dac09b48fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.2</span></td><td><code>cb919fc2c6b4779f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap</span></td><td><code>8ed0bf55b87b8f1c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap.AsMapEntries</span></td><td><code>8f22800a23c3e2c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap.AsMapIterator</span></td><td><code>f8afbf24f39e3431</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.Itr</span></td><td><code>effba7a0d17d38ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.KeySet</span></td><td><code>838fc33e94f4c5e0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection</span></td><td><code>e02a559911d30a90</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection.WrappedIterator</span></td><td><code>eab433111eb2b436</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedSet</span></td><td><code>fff32c47d57d50ff</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapEntry</span></td><td><code>c138be488823ebd7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap</span></td><td><code>5761160bc76339d4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap.Entries</span></td><td><code>a866a62a9cb0c7b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap.EntrySet</span></td><td><code>b10663f128825dd2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractSetMultimap</span></td><td><code>90d7e1b5ca2d4166</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.CollectPreconditions</span></td><td><code>d937d0b60a30b999</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Collections2</span></td><td><code>699086b46b4457bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.HashMultimap</span></td><td><code>42fc37f00a87b4a2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Hashing</span></td><td><code>58aab16e3d4db2ab</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableAsList</span></td><td><code>4371c2a1743cef75</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection</span></td><td><code>ef1d43c7b880263f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection.ArrayBasedBuilder</span></td><td><code>1ddd700c6118a645</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection.Builder</span></td><td><code>ee01dd1f4feeb125</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableEntry</span></td><td><code>15234c8bfd3d63cd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableList</span></td><td><code>702e32f18253b8c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableList.Builder</span></td><td><code>015f09c0316a8350</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMap</span></td><td><code>cc7d0867be439259</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMap.Builder</span></td><td><code>7772dc7c64639148</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntry</span></td><td><code>cff8bc42f1c10c45</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntry.NonTerminalImmutableMapEntry</span></td><td><code>eadbcb921c32b3f6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntrySet</span></td><td><code>f4eee8c718a0116f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntrySet.RegularEntrySet</span></td><td><code>292366d12cafefc1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableSet</span></td><td><code>3d1b7454ac3eb20e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators</span></td><td><code>3ba9bfae8c6ed571</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.1</span></td><td><code>f8b67cbc9298f89a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.11</span></td><td><code>08e13bdf1e9bb28f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.12</span></td><td><code>bff72b90d70a0028</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.2</span></td><td><code>db0a9a98ef97b082</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Lists</span></td><td><code>6254660a51db0db7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps</span></td><td><code>07cb62eed18327d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.EntrySet</span></td><td><code>1a8304dc93b960c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.KeySet</span></td><td><code>82d54b306b9255c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.ViewCachingAbstractMap</span></td><td><code>079c22de1775e1f0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder</span></td><td><code>921d97fa14d6ff57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.1</span></td><td><code>913e4b6c297b7435</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.HashSetSupplier</span></td><td><code>34da5fd819281c51</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys</span></td><td><code>be808d8f5b2ba52d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys.3</span></td><td><code>673867f71ef627f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.SetMultimapBuilder</span></td><td><code>fe4ad6359fe460b4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps</span></td><td><code>935ff648a304062a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps.CustomSetMultimap</span></td><td><code>d2d3717e57d6009c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps.Entries</span></td><td><code>fa9a262c4db333c2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ObjectArrays</span></td><td><code>b3567d5aacd7ad15</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Platform</span></td><td><code>2f4a4c249dd73bfc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableAsList</span></td><td><code>cbfe37ca45235097</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableList</span></td><td><code>273ab3108409ccbc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableMap</span></td><td><code>8115ca34a2d111e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Sets</span></td><td><code>5ffcb93d1d8e6fca</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Sets.ImprovedAbstractSet</span></td><td><code>8dfae2e185d96b6f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.SingletonImmutableList</span></td><td><code>b239808ef56a9bfc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.UnmodifiableIterator</span></td><td><code>0c235cf8f6a9ed0d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.UnmodifiableListIterator</span></td><td><code>fc0541dffd88178f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.Escaper</span></td><td><code>acddefbd97fceba6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.Escaper.1</span></td><td><code>1535c9ee0a557106</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.UnicodeEscaper</span></td><td><code>3c65f5a54cfdb533</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractByteHasher</span></td><td><code>0ee6741c60a6dd26</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractHasher</span></td><td><code>96fed41bc2891101</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractStreamingHashFunction</span></td><td><code>21d206f3541c69db</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.HashCode</span></td><td><code>932ef175f4a71a0e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.HashCode.BytesHashCode</span></td><td><code>91af25ef9e3b91b2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.Hashing</span></td><td><code>bad11efa2f49fe60</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.Hashing.Sha256Holder</span></td><td><code>82109373e29c0a5b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.MessageDigestHashFunction</span></td><td><code>9b89ea8f678a17a4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.MessageDigestHashFunction.MessageDigestHasher</span></td><td><code>2b5885c055fdfedf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding</span></td><td><code>d3f822b651f75a57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Alphabet</span></td><td><code>fab0496e3c1e1fe0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Base16Encoding</span></td><td><code>44b421919392620f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Base64Encoding</span></td><td><code>0a0f96bb4784d66a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.StandardBaseEncoding</span></td><td><code>22243b7583d6fa97</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.IntMath</span></td><td><code>ea2c00c48a5835cd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.IntMath.1</span></td><td><code>e7316d55a1520fd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.MathPreconditions</span></td><td><code>a1aa6833ffcf0086</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.net.PercentEscaper</span></td><td><code>c738af7c2cc7ca3c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.net.UrlEscapers</span></td><td><code>f2a520b5f6e28c57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.primitives.Ints</span></td><td><code>a6914dbe41974ae4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.BooleanUtils</span></td><td><code>1648efa923ead44e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.CharSequenceUtils</span></td><td><code>a15e5e24062152ea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.JavaVersion</span></td><td><code>ce3d94312bd1a634</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.StringUtils</span></td><td><code>32d5a1be119f7f5d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.SystemUtils</span></td><td><code>6e517caf7c9497f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.math.NumberUtils</span></td><td><code>122122934d7d72e6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.Awaitility</span></td><td><code>93c715e89b7ac51d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.Durations</span></td><td><code>fb4ddad4a42a3f9e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.constraint.AtMostWaitConstraint</span></td><td><code>239404c6f8ce724a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AbstractHamcrestCondition</span></td><td><code>ac696904fcc8e56a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AbstractHamcrestCondition.1</span></td><td><code>e315b095ac2bc240</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AssertionCondition</span></td><td><code>cc31c588be733dc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AssertionCondition.1</span></td><td><code>bf3f7bbea75c9025</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.CallableHamcrestCondition</span></td><td><code>6f2924b1847144d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionAwaiter</span></td><td><code>3ec6e57c8324101b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionAwaiter.ConditionPoller</span></td><td><code>5c7a3089def5fae7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationHandler</span></td><td><code>17513de75bb2f142</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationHandler.StopWatch</span></td><td><code>99593ffc0802a671</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationResult</span></td><td><code>4c4d57a36c64b58b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionFactory</span></td><td><code>2ae8f51db7968a99</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionFactory.1</span></td><td><code>26acc69740c85d00</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionSettings</span></td><td><code>4f936923f77aa927</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.DurationFactory</span></td><td><code>a0e4f8314838e0bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.DurationFactory.1</span></td><td><code>60b68977c080f530</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.EvaluationCleanup</span></td><td><code>2e54c005bf9c09a0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ExecutorLifecycle</span></td><td><code>65592537ed9c6cb7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ForeverDuration</span></td><td><code>27dddf3cb711b9b8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.HamcrestToStringFilter</span></td><td><code>3210a3dbd9cf369d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.InternalExecutorServiceFactory</span></td><td><code>0f9609f2b71e3c29</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.LambdaErrorMessageGenerator</span></td><td><code>eb003c1d44915e55</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.OriginalDefaultUncaughtExceptionHandler</span></td><td><code>52352465033cd40e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.PredicateExceptionIgnorer</span></td><td><code>bea791afc2c612f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.SameThreadExecutorService</span></td><td><code>40c79f6d52519522</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.Uninterruptibles</span></td><td><code>c82014fe16390476</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.pollinterval.FixedPollInterval</span></td><td><code>58acf1dcb8b74cb3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.BaseDescription</span></td><td><code>80c0c0c2e658b73a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.BaseMatcher</span></td><td><code>18c67195d4fe533a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.StringDescription</span></td><td><code>840f34f7a40af643</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.TypeSafeMatcher</span></td><td><code>d952c5d0d5be9626</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.internal.ReflectiveTypeFinder</span></td><td><code>fc36330042cb6d2e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidExitUtil</span></td><td><code>1fa8e01068f269f5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidExitValueException</span></td><td><code>a3fa02fc5d1154c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidResultException</span></td><td><code>90a8190a0ed95ab1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers</span></td><td><code>91e921b81c7bdd96</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.1</span></td><td><code>db1819591edfd871</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.2</span></td><td><code>d80e66da31387b88</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.3</span></td><td><code>56591a7a63f02ee4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.4</span></td><td><code>aa5e1a6bb41149c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessAttributes</span></td><td><code>2fd8386846ebfce5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessExecutor</span></td><td><code>f01f42a84fb814b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessExecutor.1</span></td><td><code>b9a704667eaa604f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessOutput</span></td><td><code>87ec6c775c73888d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessResult</span></td><td><code>daa08b97fa2de7d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.WaitForProcess</span></td><td><code>c871277286c4649d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.close.StandardProcessCloser</span></td><td><code>faf3f02f9a5a94d9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.listener.CompositeProcessListener</span></td><td><code>3a067e65a1129989</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.listener.ProcessListener</span></td><td><code>5c2a2281f5cb5898</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stop.DestroyProcessStopper</span></td><td><code>265e0c3d736cedbb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.NullOutputStream</span></td><td><code>066560ae74ae3c4e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.PumpStreamHandler</span></td><td><code>2b7ad3aff9a70797</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.StreamPumper</span></td><td><code>cf0fee949ab952a2</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.AuthConfigUtil</span></td><td><code>53ba9d508e5be93f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Base58</span></td><td><code>daa98cab571594b7</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ClasspathScanner</span></td><td><code>2d614aa8953b9fe0</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ComparableVersion</span></td><td><code>b4b6bb9894600f9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ConfigurationFileImageNameSubstitutor</span></td><td><code>d2ba05f34c224f1a</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DefaultImageNameSubstitutor</span></td><td><code>768169cfc15a76f9</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DockerImageName</span></td><td><code>0b9e1bef667824b3</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DockerLoggerFactory</span></td><td><code>87aa28f80cab2370</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DynamicPollInterval</span></td><td><code>fedec28544138aa2</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ImageNameSubstitutor</span></td><td><code>1b29beacd50d78a5</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ImageNameSubstitutor.LogWrappedImageNameSubstitutor</span></td><td><code>4f46c95ed8a00da7</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.LazyFuture</span></td><td><code>e5556bb368de962d</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.PrefixingImageNameSubstitutor</span></td><td><code>2980b20650a78508</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RegistryAuthLocator</span></td><td><code>f8a6181fb6eb2101</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ResourceReaper</span></td><td><code>83e4a1cc3d3b8766</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ResourceReaper.FilterRegistry</span></td><td><code>b040260aa53b1e4f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RyukContainer</span></td><td><code>afe1d6c05abebbef</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RyukResourceReaper</span></td><td><code>b710f111425d9132</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.TestcontainersConfiguration</span></td><td><code>c3089ee6cb4da896</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning</span></td><td><code>4d1dfe1d76b24e6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning.AnyVersion</span></td><td><code>655abd2d3ffee801</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning.TagVersioning</span></td><td><code>26e62a50471b07d1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions</span></td><td><code>8364eadf3c4569e6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.FlowStyle</span></td><td><code>668c8cabc9a25bc4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.LineBreak</span></td><td><code>41f901c9a18cfa48</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.NonPrintableStyle</span></td><td><code>2fd906186950e393</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.ScalarStyle</span></td><td><code>975e9c1543471735</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.LoaderOptions</span></td><td><code>b6242df5d9b287cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.TypeDescription</span></td><td><code>8cb16def691c9ad7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.Yaml</span></td><td><code>620ed8ba116ec790</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentEventsCollector</span></td><td><code>c100c5a933f843ef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentEventsCollector.1</span></td><td><code>e1e0950937a6a4fb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentType</span></td><td><code>8e308dbc02013542</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.composer.Composer</span></td><td><code>ec7b2cf056873a92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.AbstractConstruct</span></td><td><code>82a1d0a21f9a4e79</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.BaseConstructor</span></td><td><code>ad90d4865a1e0de7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor</span></td><td><code>f9b58a14e567528c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructMapping</span></td><td><code>2f492f917f9d53c8</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructScalar</span></td><td><code>ea618a69ff1e59d9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructSequence</span></td><td><code>818d0c066f3ac764</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructYamlObject</span></td><td><code>0b538fd088e22364</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor</span></td><td><code>f4d7821f8383bd49</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructUndefined</span></td><td><code>dcc771efcc1a1b43</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlBinary</span></td><td><code>7c51a3be889e94ff</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlBool</span></td><td><code>54305e860dc97355</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlFloat</span></td><td><code>590cb4f6915351b7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlInt</span></td><td><code>fb81b6cbe53284cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlMap</span></td><td><code>966808e55fcb0e92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlNull</span></td><td><code>bf5402d7f4e0a2e6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlOmap</span></td><td><code>585d04d46edf7ab9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlPairs</span></td><td><code>0b9f052c0c647969</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlSeq</span></td><td><code>47924237d06c5726</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlSet</span></td><td><code>fcec40b3ff928de0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlStr</span></td><td><code>5df133ce94e1844f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlTimestamp</span></td><td><code>082be8143a3d29e7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.error.Mark</span></td><td><code>b07c9bbefa14a2b4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.CollectionEndEvent</span></td><td><code>36c3684323be31b9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.CollectionStartEvent</span></td><td><code>3460027667bfd451</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.DocumentEndEvent</span></td><td><code>8a9c064a71b94ea3</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.DocumentStartEvent</span></td><td><code>9dddf7cf5bdc6a21</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.Event</span></td><td><code>6e57d0aa1274413a</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.Event.ID</span></td><td><code>1e65d9d6198bc0c4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.ImplicitTuple</span></td><td><code>a8ee2ab49f21bc72</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.MappingEndEvent</span></td><td><code>64b8da44a8c061e2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.MappingStartEvent</span></td><td><code>2970ab5bddd39612</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.NodeEvent</span></td><td><code>519a90bc3a477fc2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.ScalarEvent</span></td><td><code>d0d864dda3403b9e</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.SequenceEndEvent</span></td><td><code>6856db124d1d2b9c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.SequenceStartEvent</span></td><td><code>30eef42c60f959c0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.StreamEndEvent</span></td><td><code>85d4b2cb75fe4d05</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.StreamStartEvent</span></td><td><code>e63fae697b88ebef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.PercentEscaper</span></td><td><code>8c0249063fdd1b14</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.UnicodeEscaper</span></td><td><code>e78bb0151ae65ccc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.UnicodeEscaper.2</span></td><td><code>74d5f761782253f6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.introspector.BeanAccess</span></td><td><code>b086d8cd4f22e3e9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.introspector.PropertyUtils</span></td><td><code>460a2028819a3c83</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.CollectionNode</span></td><td><code>4d51145dc5eeaa92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.MappingNode</span></td><td><code>3484477010fb1651</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.Node</span></td><td><code>345fd8efe4749008</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.NodeId</span></td><td><code>e4e077a276716d47</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.NodeTuple</span></td><td><code>805d7726304d15b0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.ScalarNode</span></td><td><code>2cddbd767ae96912</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.SequenceNode</span></td><td><code>fc15f422db15f78c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.Tag</span></td><td><code>b5f9c4e7a2c25d29</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl</span></td><td><code>49f5c07da85ebd0f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingFirstKey</span></td><td><code>9f9c964fc3c1567c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingKey</span></td><td><code>598da81fa648fcd7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingValue</span></td><td><code>c702f8db76ae83c1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockNode</span></td><td><code>ec34184d316d5c5f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceEntryKey</span></td><td><code>8d2a7e26cec09e71</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceEntryValue</span></td><td><code>8fdb63a27af76d52</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceFirstEntry</span></td><td><code>21fc698d8fb4b8cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseDocumentEnd</span></td><td><code>ef1e09a231a69181</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseDocumentStart</span></td><td><code>9c1f65b67d3f7a91</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseImplicitDocumentStart</span></td><td><code>905cf041089e7642</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseStreamStart</span></td><td><code>f1473df9bb0eb562</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.VersionTagsTuple</span></td><td><code>69e9acbd18520cf7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.reader.StreamReader</span></td><td><code>d97ac2d6d90c443f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.reader.UnicodeReader</span></td><td><code>fe5efbb833bb2669</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.BaseRepresenter</span></td><td><code>83ae874fa4af46a4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.BaseRepresenter.1</span></td><td><code>ec5156a9e12ffd8c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.Representer</span></td><td><code>39d04cfcb298de99</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.Representer.RepresentJavaBean</span></td><td><code>2856b4cee00b9c84</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter</span></td><td><code>e76c3890f2290fb2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentArray</span></td><td><code>e94bb6d6165c9b50</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentBoolean</span></td><td><code>85b27ae88da38397</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentByteArray</span></td><td><code>15aaa09f0f7adaeb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentDate</span></td><td><code>e3c7acc972efb839</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentEnum</span></td><td><code>d24bdee03e25f4e9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentIterator</span></td><td><code>4ccd2102a75fc96e</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentList</span></td><td><code>9a62b6b415988727</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentMap</span></td><td><code>233b56476fada63f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNull</span></td><td><code>cd8fc012cd90bca7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNumber</span></td><td><code>366978c1df8efd56</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentPrimitiveArray</span></td><td><code>d773c11b5ba9f66b</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentSet</span></td><td><code>e68e25b41c4faacb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentString</span></td><td><code>ec971d0f9cc63f28</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentUuid</span></td><td><code>89687bc81876365d</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.Resolver</span></td><td><code>8ebc55808fe79266</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.Resolver.1</span></td><td><code>793048873cf2a0d6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.ResolverTuple</span></td><td><code>9426921f99c76174</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.Constant</span></td><td><code>603b2b248b9db7e3</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.ScannerImpl</span></td><td><code>7020a104843958ef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.SimpleKey</span></td><td><code>278ae40878c7a122</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.serializer.NumberAnchorGenerator</span></td><td><code>3507b90bf0ca42b1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockEndToken</span></td><td><code>cef2158e97318ff1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockEntryToken</span></td><td><code>f5dd637c6a9f39af</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockMappingStartToken</span></td><td><code>bb5d345c3cc844ee</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockSequenceStartToken</span></td><td><code>994152e0327bbba0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.KeyToken</span></td><td><code>e71e6341a4c4642c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.ScalarToken</span></td><td><code>a9212349356c7542</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.StreamEndToken</span></td><td><code>332ec98b1999c6b0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.StreamStartToken</span></td><td><code>32b528f0a32eb6b7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.Token</span></td><td><code>ceeadfd0a99d3427</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.Token.ID</span></td><td><code>4bc408d8fe88e821</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.ValueToken</span></td><td><code>2f3dc04fcc98e29b</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.ArrayStack</span></td><td><code>71718ca4e4d6aae0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.PlatformFeatureDetector</span></td><td><code>143ae74510513ad6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.UriEncoder</span></td><td><code>9f77c10e554829ec</code></td></tr><tr><td><span class="el_class">reactor.adapter.JdkFlowAdapter</span></td><td><code>762ef5b853da076a</code></td></tr><tr><td><span class="el_class">reactor.adapter.JdkFlowAdapter.PublisherAsFlowPublisher</span></td><td><code>854a562acee1e14a</code></td></tr><tr><td><span class="el_class">reactor.core.Scannable</span></td><td><code>ae9e38b679940f95</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.BlockingMonoSubscriber</span></td><td><code>985ece20d6e031c6</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.BlockingSingleSubscriber</span></td><td><code>3b03b1dd3b7a47e2</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Flux</span></td><td><code>e4ef1720154ad233</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.FluxEmpty</span></td><td><code>d30929dce1723c4c</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Hooks</span></td><td><code>7ee85d0ffe2e8ef3</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Mono</span></td><td><code>a0923c31987968fc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoDefer</span></td><td><code>d96f7828daaadd83</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoEmpty</span></td><td><code>6d43f50a09b2b2cc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen</span></td><td><code>6ae517fbd49e8e3d</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen.WhenCoordinator</span></td><td><code>cdf6716b8e0e1a98</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen.WhenInner</span></td><td><code>7b9cdd8fd5eac032</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators</span></td><td><code>192b9128419ad2ac</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.1</span></td><td><code>719fbec9315d64bc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.CancelledSubscription</span></td><td><code>284e4d11ee8d6a70</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.EmptySubscription</span></td><td><code>b94f73c0db61245d</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.MonoSubscriber</span></td><td><code>6e1429b4402b4209</code></td></tr><tr><td><span class="el_class">reactor.core.scheduler.Schedulers</span></td><td><code>f5dcfadd6134c209</code></td></tr><tr><td><span class="el_class">reactor.core.scheduler.Schedulers.1</span></td><td><code>f65965d8b474d993</code></td></tr><tr><td><span class="el_class">reactor.netty.http.HttpResources</span></td><td><code>571e4dafd7c6c44b</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider</span></td><td><code>1cf5cd5feef60e17</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider.Builder</span></td><td><code>d3190874b5219ede</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider.ConnectionPoolSpec</span></td><td><code>de16b20f6e43894b</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.DefaultLoopResources</span></td><td><code>625dc738cf289101</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.DefaultPooledConnectionProvider</span></td><td><code>c6ed9bf32ec1563e</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.LoopResources</span></td><td><code>e24596a51ed74178</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.PooledConnectionProvider</span></td><td><code>5610e783d2bb21e5</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.PooledConnectionProvider.PoolFactory</span></td><td><code>e86319751391dbad</code></td></tr><tr><td><span class="el_class">reactor.netty.tcp.TcpResources</span></td><td><code>bd0b9b9b61389f46</code></td></tr><tr><td><span class="el_class">reactor.netty.transport.NameResolverProvider</span></td><td><code>1340e4bab32b5437</code></td></tr><tr><td><span class="el_class">reactor.netty.transport.NameResolverProvider.Build</span></td><td><code>b66055ae397003e8</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers</span></td><td><code>dab55664952e2876</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers.Slf4JLogger</span></td><td><code>4488b640db0d4cc7</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers.Slf4JLoggerFactory</span></td><td><code>61b1358a7d0bdd23</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature</span></td><td><code>daf2694f8c2d9ecf</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.Raw</span></td><td><code>612d1fdcbc91e3d1</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.RawECDSA</span></td><td><code>a6aa09e6c512aa51</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.SHA1</span></td><td><code>b0b781b4f0e3faec</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECKeyFactory</span></td><td><code>7957ef10d6acbcc4</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECKeyPairGenerator</span></td><td><code>647a786be4f307d4</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECPublicKeyImpl</span></td><td><code>5e1a025fa4afaeb6</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC</span></td><td><code>047b876ac98a1133</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.1</span></td><td><code>f831e2713965eef1</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.ProviderService</span></td><td><code>d7855095f52a725d</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.ProviderServiceA</span></td><td><code>84b6e3e9f56e578d</code></td></tr><tr><td><span class="el_class">sun.util.resources.cldr.provider.CLDRLocaleDataMetaInfo</span></td><td><code>9ed83010eeaa402e</code></td></tr><tr><td><span class="el_class">sun.util.resources.provider.NonBaseLocaleDataMetaInfo</span></td><td><code>3286ba296d343b25</code></td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/jacoco.csv b/job/jacoco/jacoco.csv
    new file mode 100644
    index 000000000..2f4c64b12
    --- /dev/null
    +++ b/job/jacoco/jacoco.csv
    @@ -0,0 +1,19 @@
    +GROUP,PACKAGE,CLASS,INSTRUCTION_MISSED,INSTRUCTION_COVERED,BRANCH_MISSED,BRANCH_COVERED,LINE_MISSED,LINE_COVERED,COMPLEXITY_MISSED,COMPLEXITY_COVERED,METHOD_MISSED,METHOD_COVERED
    +job,gov.cms.ab2d.job.util,JobUtil,3,86,3,25,1,14,4,15,1,4
    +job,gov.cms.ab2d.job.service,JobOutputServiceImpl,0,41,0,0,0,7,0,5,0,5
    +job,gov.cms.ab2d.job.service,InvalidJobAccessException,0,4,0,0,0,2,0,1,0,1
    +job,gov.cms.ab2d.job.service,JobOutputMissingException,0,4,0,0,0,2,0,1,0,1
    +job,gov.cms.ab2d.job.service,JobServiceImpl,18,402,1,23,3,91,2,26,1,15
    +job,gov.cms.ab2d.job.service,InvalidJobStateTransition,0,4,0,0,0,2,0,1,0,1
    +job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    +job,gov.cms.ab2d.job.model,JobStatus,3,57,0,0,1,11,1,3,1,3
    +job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},15,7,2,0,4,1,2,1,1,1
    +job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},0,9,0,0,0,2,0,2,0,2
    +job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    +job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    +job,gov.cms.ab2d.job.model,Job,23,275,7,17,1,38,8,55,2,49
    +job,gov.cms.ab2d.job.model,JobStartedBy,0,21,0,0,0,4,0,1,0,1
    +job,gov.cms.ab2d.job.model,JobOutput,38,92,9,5,1,12,10,19,3,19
    +job,gov.cms.ab2d.job.dto,StaleJob,95,9,20,0,2,1,15,1,5,1
    +job,gov.cms.ab2d.job.dto,JobPollResult,252,24,48,0,6,2,39,2,15,2
    +job,gov.cms.ab2d.job.dto,StartJobDTO,296,51,70,0,1,9,39,9,4,9
    diff --git a/job/jacoco/jacoco.xml b/job/jacoco/jacoco.xml
    new file mode 100644
    index 000000000..0c8e2d325
    --- /dev/null
    +++ b/job/jacoco/jacoco.xml
    @@ -0,0 +1 @@
    +<?xml version="1.0" encoding="UTF-8" standalone="yes"?><!DOCTYPE report PUBLIC "-//JACOCO//DTD Report 1.1//EN" "report.dtd"><report name="job"><sessioninfo id="Ben-NAVA-MacBook.local-1ed3c022" start="1737642280157" dump="1737642412404"/><package name="gov/cms/ab2d/job/util"><class name="gov/cms/ab2d/job/util/JobUtil" sourcefilename="JobUtil.java"><method name="&lt;init&gt;" desc="()V" line="12"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="isJobDone" desc="(Lgov/cms/ab2d/job/model/Job;I)Z" line="23"><counter type="INSTRUCTION" missed="0" covered="63"/><counter type="BRANCH" missed="2" covered="20"/><counter type="LINE" missed="0" covered="13"/><counter type="COMPLEXITY" missed="2" covered="10"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$isJobDone$1" desc="(ILgov/cms/ab2d/job/model/JobOutput;)Z" line="46"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$isJobDone$0" desc="(Lgov/cms/ab2d/job/model/JobOutput;)Z" line="45"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="BRANCH" missed="1" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="1" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="11"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobUtil.java"><line nr="11" mi="0" ci="4" mb="0" cb="0"/><line nr="12" mi="3" ci="0" mb="0" cb="0"/><line nr="23" mi="0" ci="13" mb="0" cb="8"/><line nr="24" mi="0" ci="2" mb="0" cb="0"/><line nr="28" mi="0" ci="8" mb="0" cb="4"/><line nr="29" mi="0" ci="2" mb="0" cb="0"/><line nr="35" mi="0" ci="8" mb="1" cb="3"/><line nr="36" mi="0" ci="2" mb="0" cb="0"/><line nr="40" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="5" mb="1" cb="3"/><line nr="42" mi="0" ci="2" mb="0" cb="0"/><line nr="44" mi="0" ci="3" mb="0" cb="0"/><line nr="45" mi="0" ci="14" mb="1" cb="3"/><line nr="46" mi="0" ci="14" mb="0" cb="2"/><line nr="48" mi="0" ci="6" mb="0" cb="2"/><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></package><package name="gov/cms/ab2d/job/repository"><class name="gov/cms/ab2d/job/repository/JobOutputRepository" sourcefilename="JobOutputRepository.java"/><class name="gov/cms/ab2d/job/repository/JobRepository" sourcefilename="JobRepository.java"/><sourcefile name="JobOutputRepository.java"/><sourcefile name="JobRepository.java"/></package><package name="gov/cms/ab2d/job/service"><class name="gov/cms/ab2d/job/service/JobOutputServiceImpl" sourcefilename="JobOutputServiceImpl.java"><method name="updateJobOutput" desc="(Lgov/cms/ab2d/job/model/JobOutput;)Lgov/cms/ab2d/job/model/JobOutput;" line="21"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="findByFilePathAndJob" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/model/JobOutput;" line="25"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;init&gt;" desc="(Lgov/cms/ab2d/job/repository/JobOutputRepository;)V" line="12"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$findByFilePathAndJob$0" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/Job;)Ljava/lang/RuntimeException;" line="26"><counter type="INSTRUCTION" missed="0" covered="14"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="13"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="41"/><counter type="LINE" missed="0" covered="7"/><counter type="COMPLEXITY" missed="0" covered="5"/><counter type="METHOD" missed="0" covered="5"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobOutputService" sourcefilename="JobOutputService.java"/><class name="gov/cms/ab2d/job/service/InvalidJobAccessException" sourcefilename="InvalidJobAccessException.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobOutputMissingException" sourcefilename="JobOutputMissingException.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobServiceImpl" sourcefilename="JobServiceImpl.java"><method name="&lt;init&gt;" desc="(Lgov/cms/ab2d/job/repository/JobRepository;Lgov/cms/ab2d/job/service/JobOutputService;Lgov/cms/ab2d/eventclient/clients/SQSEventClient;Ljava/lang/String;)V" line="47"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="createJob" desc="(Lgov/cms/ab2d/job/dto/StartJobDTO;)Lgov/cms/ab2d/job/model/Job;" line="56"><counter type="INSTRUCTION" missed="0" covered="92"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="20"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="cancelJob" desc="(Ljava/lang/String;Ljava/lang/String;)V" line="84"><counter type="INSTRUCTION" missed="0" covered="40"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="9"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getAuthorizedJobByJobUuid" desc="(Ljava/lang/String;Ljava/lang/String;)Lgov/cms/ab2d/job/model/Job;" line="97"><counter type="INSTRUCTION" missed="0" covered="19"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="5"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobByJobUuid" desc="(Ljava/lang/String;)Lgov/cms/ab2d/job/model/Job;" line="110"><counter type="INSTRUCTION" missed="0" covered="19"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="5"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="updateJob" desc="(Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/model/Job;" line="122"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceForJob" desc="(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/springframework/core/io/Resource;" line="127"><counter type="INSTRUCTION" missed="0" covered="96"/><counter type="BRANCH" missed="0" covered="12"/><counter type="LINE" missed="0" covered="23"/><counter type="COMPLEXITY" missed="0" covered="7"/><counter type="METHOD" missed="0" covered="1"/></method><method name="incrementDownload" desc="(Ljava/io/File;Ljava/lang/String;)V" line="166"><counter type="INSTRUCTION" missed="0" covered="27"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="activeJobs" desc="(Ljava/lang/String;)I" line="178"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getActiveJobIds" desc="(Ljava/lang/String;)Ljava/util/List;" line="186"><counter type="INSTRUCTION" missed="14" covered="0"/><counter type="LINE" missed="3" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="poll" desc="(ZLjava/lang/String;Ljava/lang/String;I)Lgov/cms/ab2d/job/dto/JobPollResult;" line="193"><counter type="INSTRUCTION" missed="4" covered="37"/><counter type="BRANCH" missed="1" covered="1"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="checkForExpiration" desc="(Ljava/util/List;I)Ljava/util/List;" line="203"><counter type="INSTRUCTION" missed="0" covered="12"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="clientHasNeverCompletedJob" desc="(Ljava/lang/String;)Z" line="210"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$checkForExpiration$1" desc="(Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/dto/StaleJob;" line="205"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$checkForExpiration$0" desc="(ILgov/cms/ab2d/job/model/Job;)Z" line="204"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="33"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="18" covered="402"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="91"/><counter type="COMPLEXITY" missed="2" covered="26"/><counter type="METHOD" missed="1" covered="15"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobService" sourcefilename="JobService.java"/><class name="gov/cms/ab2d/job/service/InvalidJobStateTransition" sourcefilename="InvalidJobStateTransition.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="InvalidJobStateTransition.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="InvalidJobAccessException.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutputServiceImpl.java"><line nr="12" mi="0" ci="6" mb="0" cb="0"/><line nr="13" mi="0" ci="4" mb="0" cb="0"/><line nr="21" mi="0" ci="6" mb="0" cb="0"/><line nr="25" mi="0" ci="11" mb="0" cb="0"/><line nr="26" mi="0" ci="6" mb="0" cb="0"/><line nr="27" mi="0" ci="4" mb="0" cb="0"/><line nr="28" mi="0" ci="4" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="41"/><counter type="LINE" missed="0" covered="7"/><counter type="COMPLEXITY" missed="0" covered="5"/><counter type="METHOD" missed="0" covered="5"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobServiceImpl.java"><line nr="33" mi="0" ci="4" mb="0" cb="0"/><line nr="47" mi="0" ci="2" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="49" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="0" ci="3" mb="0" cb="0"/><line nr="51" mi="0" ci="3" mb="0" cb="0"/><line nr="52" mi="0" ci="1" mb="0" cb="0"/><line nr="56" mi="0" ci="4" mb="0" cb="0"/><line nr="57" mi="0" ci="4" mb="0" cb="0"/><line nr="58" mi="0" ci="4" mb="0" cb="0"/><line nr="59" mi="0" ci="4" mb="0" cb="0"/><line nr="60" mi="0" ci="3" mb="0" cb="0"/><line nr="61" mi="0" ci="3" mb="0" cb="0"/><line nr="62" mi="0" ci="4" mb="0" cb="0"/><line nr="63" mi="0" ci="4" mb="0" cb="0"/><line nr="64" mi="0" ci="4" mb="0" cb="0"/><line nr="65" mi="0" ci="4" mb="0" cb="0"/><line nr="66" mi="0" ci="4" mb="0" cb="0"/><line nr="67" mi="0" ci="4" mb="0" cb="0"/><line nr="69" mi="0" ci="7" mb="0" cb="0"/><line nr="72" mi="0" ci="5" mb="0" cb="2"/><line nr="73" mi="0" ci="9" mb="0" cb="0"/><line nr="74" mi="0" ci="7" mb="0" cb="0"/><line nr="75" mi="0" ci="5" mb="0" cb="0"/><line nr="77" mi="0" ci="4" mb="0" cb="0"/><line nr="78" mi="0" ci="3" mb="0" cb="0"/><line nr="79" mi="0" ci="6" mb="0" cb="0"/><line nr="84" mi="0" ci="5" mb="0" cb="0"/><line nr="86" mi="0" ci="4" mb="0" cb="0"/><line nr="87" mi="0" ci="4" mb="0" cb="2"/><line nr="88" mi="0" ci="5" mb="0" cb="0"/><line nr="89" mi="0" ci="7" mb="0" cb="0"/><line nr="91" mi="0" ci="7" mb="0" cb="0"/><line nr="92" mi="0" ci="4" mb="0" cb="0"/><line nr="93" mi="0" ci="3" mb="0" cb="0"/><line nr="94" mi="0" ci="1" mb="0" cb="0"/><line nr="97" mi="0" ci="4" mb="0" cb="0"/><line nr="99" mi="0" ci="5" mb="0" cb="2"/><line nr="100" mi="0" ci="3" mb="0" cb="0"/><line nr="102" mi="0" ci="5" mb="0" cb="0"/><line nr="105" mi="0" ci="2" mb="0" cb="0"/><line nr="110" mi="0" ci="5" mb="0" cb="0"/><line nr="112" mi="0" ci="2" mb="0" cb="2"/><line nr="113" mi="0" ci="4" mb="0" cb="0"/><line nr="114" mi="0" ci="6" mb="0" cb="0"/><line nr="117" mi="0" ci="2" mb="0" cb="0"/><line nr="122" mi="0" ci="6" mb="0" cb="0"/><line nr="127" mi="0" ci="5" mb="0" cb="0"/><line nr="130" mi="0" ci="2" mb="0" cb="0"/><line nr="131" mi="0" ci="2" mb="0" cb="0"/><line nr="132" mi="0" ci="11" mb="0" cb="2"/><line nr="133" mi="0" ci="5" mb="0" cb="2"/><line nr="134" mi="0" ci="2" mb="0" cb="0"/><line nr="135" mi="0" ci="2" mb="0" cb="0"/><line nr="136" mi="0" ci="1" mb="0" cb="0"/><line nr="138" mi="0" ci="1" mb="0" cb="0"/><line nr="140" mi="0" ci="2" mb="0" cb="2"/><line nr="141" mi="0" ci="4" mb="0" cb="0"/><line nr="142" mi="0" ci="6" mb="0" cb="0"/><line nr="145" mi="0" ci="15" mb="0" cb="0"/><line nr="146" mi="0" ci="6" mb="0" cb="0"/><line nr="147" mi="0" ci="4" mb="0" cb="2"/><line nr="148" mi="0" ci="5" mb="0" cb="0"/><line nr="150" mi="0" ci="3" mb="0" cb="2"/><line nr="152" mi="0" ci="5" mb="0" cb="2"/><line nr="153" mi="0" ci="3" mb="0" cb="0"/><line nr="155" mi="0" ci="2" mb="0" cb="0"/><line nr="157" mi="0" ci="3" mb="0" cb="0"/><line nr="158" mi="0" ci="5" mb="0" cb="0"/><line nr="161" mi="0" ci="2" mb="0" cb="0"/><line nr="166" mi="0" ci="5" mb="0" cb="0"/><line nr="167" mi="0" ci="7" mb="0" cb="0"/><line nr="171" mi="0" ci="6" mb="0" cb="0"/><line nr="172" mi="0" ci="3" mb="0" cb="0"/><line nr="173" mi="0" ci="5" mb="0" cb="0"/><line nr="174" mi="0" ci="1" mb="0" cb="0"/><line nr="178" mi="0" ci="5" mb="0" cb="0"/><line nr="179" mi="0" ci="3" mb="0" cb="0"/><line nr="186" mi="7" ci="0" mb="0" cb="0"/><line nr="187" mi="3" ci="0" mb="0" cb="0"/><line nr="188" mi="4" ci="0" mb="0" cb="0"/><line nr="193" mi="4" ci="7" mb="1" cb="1"/><line nr="194" mi="0" ci="3" mb="0" cb="0"/><line nr="195" mi="0" ci="5" mb="0" cb="0"/><line nr="196" mi="0" ci="6" mb="0" cb="0"/><line nr="197" mi="0" ci="12" mb="0" cb="0"/><line nr="198" mi="0" ci="4" mb="0" cb="0"/><line nr="203" mi="0" ci="8" mb="0" cb="0"/><line nr="204" mi="0" ci="6" mb="0" cb="0"/><line nr="205" mi="0" ci="9" mb="0" cb="0"/><line nr="206" mi="0" ci="1" mb="0" cb="0"/><line nr="210" mi="0" ci="8" mb="0" cb="0"/><line nr="211" mi="0" ci="1" mb="0" cb="0"/><line nr="212" mi="0" ci="6" mb="0" cb="2"/><counter type="INSTRUCTION" missed="18" covered="402"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="91"/><counter type="COMPLEXITY" missed="2" covered="26"/><counter type="METHOD" missed="1" covered="15"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutputMissingException.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobService.java"/><sourcefile name="JobOutputService.java"/><counter type="INSTRUCTION" missed="18" covered="455"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="104"/><counter type="COMPLEXITY" missed="2" covered="34"/><counter type="METHOD" missed="1" covered="23"/><counter type="CLASS" missed="0" covered="5"/></package><package name="gov/cms/ab2d/job/model"><class name="gov/cms/ab2d/job/model/JobStatus$5" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="41"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="44"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="52"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isCancellable" desc="()Z" line="48"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isFinished" desc="()Z" line="50"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;clinit&gt;" desc="()V" line="9"><counter type="INSTRUCTION" missed="0" covered="43"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="3" covered="57"/><counter type="LINE" missed="1" covered="11"/><counter type="COMPLEXITY" missed="1" covered="3"/><counter type="METHOD" missed="1" covered="3"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$4" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="30"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="34"><counter type="INSTRUCTION" missed="15" covered="0"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="4" covered="0"/><counter type="COMPLEXITY" missed="2" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="15" covered="7"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="4" covered="1"/><counter type="COMPLEXITY" missed="2" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$3" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="24"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="27"><counter type="INSTRUCTION" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="2"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$2" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="18"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="21"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$1" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="12"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="15"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/Job" sourcefilename="Job.java"><method name="&lt;init&gt;" desc="()V" line="29"><counter type="INSTRUCTION" missed="0" covered="14"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="addJobOutput" desc="(Lgov/cms/ab2d/job/model/JobOutput;)V" line="97"><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hasJobBeenCancelled" desc="()Z" line="102"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="pollAndUpdateTime" desc="(I)V" line="106"><counter type="INSTRUCTION" missed="0" covered="13"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(I)Z" line="113"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="pollingTooMuch" desc="(I)Z" line="117"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="BRANCH" missed="1" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="1" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="buildJobStatusChangeEvent" desc="(Lgov/cms/ab2d/job/model/JobStatus;Ljava/lang/String;)Lgov/cms/ab2d/eventclient/events/JobStatusChangeEvent;" line="121"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="buildFileEvent" desc="(Ljava/io/File;Lgov/cms/ab2d/eventclient/events/FileEvent$FileStatus;)Lgov/cms/ab2d/eventclient/events/FileEvent;" line="126"><counter type="INSTRUCTION" missed="10" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getId" desc="()Ljava/lang/Long;" line="34"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobUuid" desc="()Ljava/lang/String;" line="38"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="41"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobOutputs" desc="()Ljava/util/List;" line="49"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getCreatedAt" desc="()Ljava/time/OffsetDateTime;" line="53"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getCompletedAt" desc="()Ljava/time/OffsetDateTime;" line="56"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getRequestUrl" desc="()Ljava/lang/String;" line="58"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStatus" desc="()Lgov/cms/ab2d/job/model/JobStatus;" line="62"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStatusMessage" desc="()Ljava/lang/String;" line="63"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOutputFormat" desc="()Ljava/lang/String;" line="64"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getProgress" desc="()Ljava/lang/Integer;" line="65"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFhirVersion" desc="()Lgov/cms/ab2d/fhir/FhirVersion;" line="68"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getLastPollTime" desc="()Ljava/time/OffsetDateTime;" line="71"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSince" desc="()Ljava/time/OffsetDateTime;" line="74"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUntil" desc="()Ljava/time/OffsetDateTime;" line="77"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getExpiresAt" desc="()Ljava/time/OffsetDateTime;" line="80"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceTypes" desc="()Ljava/lang/String;" line="83"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStartedBy" desc="()Lgov/cms/ab2d/job/model/JobStartedBy;" line="88"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSinceSource" desc="()Lgov/cms/ab2d/common/model/SinceSource;" line="91"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getContractNumber" desc="()Ljava/lang/String;" line="94"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setId" desc="(Ljava/lang/Long;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setJobUuid" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setOrganization" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setJobOutputs" desc="(Ljava/util/List;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setCreatedAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setCompletedAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setRequestUrl" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStatus" desc="(Lgov/cms/ab2d/job/model/JobStatus;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStatusMessage" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setOutputFormat" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setProgress" desc="(Ljava/lang/Integer;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFhirVersion" desc="(Lgov/cms/ab2d/fhir/FhirVersion;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setLastPollTime" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setSince" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setUntil" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setExpiresAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setResourceTypes" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStartedBy" desc="(Lgov/cms/ab2d/job/model/JobStartedBy;)V" line="27"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setSinceSource" desc="(Lgov/cms/ab2d/common/model/SinceSource;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setContractNumber" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="28"><counter type="INSTRUCTION" missed="9" covered="29"/><counter type="BRANCH" missed="6" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="5" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="28"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hashCode" desc="()I" line="28"><counter type="INSTRUCTION" missed="0" covered="20"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="23" covered="275"/><counter type="BRANCH" missed="7" covered="17"/><counter type="LINE" missed="1" covered="38"/><counter type="COMPLEXITY" missed="8" covered="55"/><counter type="METHOD" missed="2" covered="49"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStartedBy" sourcefilename="JobStartedBy.java"><method name="&lt;clinit&gt;" desc="()V" line="3"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobOutput" sourcefilename="JobOutput.java"><method name="&lt;init&gt;" desc="()V" line="20"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getId" desc="()Ljava/lang/Long;" line="25"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJob" desc="()Lgov/cms/ab2d/job/model/Job;" line="30"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFilePath" desc="()Ljava/lang/String;" line="34"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFhirResourceType" desc="()Ljava/lang/String;" line="36"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getError" desc="()Ljava/lang/Boolean;" line="39"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getDownloaded" desc="()I" line="42"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getChecksum" desc="()Ljava/lang/String;" line="45"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFileLength" desc="()Ljava/lang/Long;" line="48"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getLastDownloadAt" desc="()Ljava/time/OffsetDateTime;" line="50"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setId" desc="(Ljava/lang/Long;)V" line="18"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setJob" desc="(Lgov/cms/ab2d/job/model/Job;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFilePath" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFhirResourceType" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setError" desc="(Ljava/lang/Boolean;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setDownloaded" desc="(I)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setChecksum" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFileLength" desc="(Ljava/lang/Long;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setLastDownloadAt" desc="(Ljava/time/OffsetDateTime;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="19"><counter type="INSTRUCTION" missed="11" covered="27"/><counter type="BRANCH" missed="7" covered="5"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="6" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="19"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hashCode" desc="()I" line="19"><counter type="INSTRUCTION" missed="20" covered="0"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="2" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="38" covered="92"/><counter type="BRANCH" missed="9" covered="5"/><counter type="LINE" missed="1" covered="12"/><counter type="COMPLEXITY" missed="10" covered="19"/><counter type="METHOD" missed="3" covered="19"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobStartedBy.java"><line nr="3" mi="0" ci="3" mb="0" cb="0"/><line nr="4" mi="0" ci="6" mb="0" cb="0"/><line nr="5" mi="0" ci="6" mb="0" cb="0"/><line nr="6" mi="0" ci="6" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="Job.java"><line nr="27" mi="4" ci="76" mb="0" cb="0"/><line nr="28" mi="9" ci="52" mb="6" cb="8"/><line nr="29" mi="0" ci="2" mb="0" cb="0"/><line nr="34" mi="0" ci="3" mb="0" cb="0"/><line nr="38" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="3" mb="0" cb="0"/><line nr="43" mi="0" ci="5" mb="0" cb="0"/><line nr="49" mi="0" ci="3" mb="0" cb="0"/><line nr="53" mi="0" ci="3" mb="0" cb="0"/><line nr="56" mi="0" ci="3" mb="0" cb="0"/><line nr="58" mi="0" ci="3" mb="0" cb="0"/><line nr="62" mi="0" ci="3" mb="0" cb="0"/><line nr="63" mi="0" ci="3" mb="0" cb="0"/><line nr="64" mi="0" ci="3" mb="0" cb="0"/><line nr="65" mi="0" ci="3" mb="0" cb="0"/><line nr="67" mi="0" ci="3" mb="0" cb="0"/><line nr="68" mi="0" ci="3" mb="0" cb="0"/><line nr="71" mi="0" ci="3" mb="0" cb="0"/><line nr="74" mi="0" ci="3" mb="0" cb="0"/><line nr="77" mi="0" ci="3" mb="0" cb="0"/><line nr="80" mi="0" ci="3" mb="0" cb="0"/><line nr="83" mi="0" ci="3" mb="0" cb="0"/><line nr="86" mi="0" ci="4" mb="0" cb="0"/><line nr="88" mi="0" ci="3" mb="0" cb="0"/><line nr="91" mi="0" ci="3" mb="0" cb="0"/><line nr="94" mi="0" ci="3" mb="0" cb="0"/><line nr="97" mi="0" ci="5" mb="0" cb="0"/><line nr="98" mi="0" ci="3" mb="0" cb="0"/><line nr="99" mi="0" ci="1" mb="0" cb="0"/><line nr="102" mi="0" ci="8" mb="0" cb="2"/><line nr="106" mi="0" ci="4" mb="0" cb="2"/><line nr="107" mi="0" ci="5" mb="0" cb="0"/><line nr="109" mi="0" ci="3" mb="0" cb="0"/><line nr="110" mi="0" ci="1" mb="0" cb="0"/><line nr="113" mi="0" ci="7" mb="0" cb="0"/><line nr="117" mi="0" ci="15" mb="1" cb="3"/><line nr="121" mi="0" ci="9" mb="0" cb="2"/><line nr="122" mi="0" ci="12" mb="0" cb="0"/><line nr="126" mi="10" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="23" covered="275"/><counter type="BRANCH" missed="7" covered="17"/><counter type="LINE" missed="1" covered="38"/><counter type="COMPLEXITY" missed="8" covered="55"/><counter type="METHOD" missed="2" covered="49"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutput.java"><line nr="18" mi="4" ci="32" mb="0" cb="0"/><line nr="19" mi="31" ci="30" mb="9" cb="5"/><line nr="20" mi="0" ci="2" mb="0" cb="0"/><line nr="25" mi="0" ci="3" mb="0" cb="0"/><line nr="30" mi="0" ci="3" mb="0" cb="0"/><line nr="34" mi="0" ci="3" mb="0" cb="0"/><line nr="36" mi="0" ci="3" mb="0" cb="0"/><line nr="39" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="4" mb="0" cb="0"/><line nr="42" mi="0" ci="3" mb="0" cb="0"/><line nr="45" mi="0" ci="3" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="38" covered="92"/><counter type="BRANCH" missed="9" covered="5"/><counter type="LINE" missed="1" covered="12"/><counter type="COMPLEXITY" missed="10" covered="19"/><counter type="METHOD" missed="3" covered="19"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobStatus.java"><line nr="9" mi="0" ci="3" mb="0" cb="0"/><line nr="12" mi="0" ci="15" mb="0" cb="0"/><line nr="15" mi="2" ci="0" mb="0" cb="0"/><line nr="18" mi="0" ci="15" mb="0" cb="0"/><line nr="21" mi="2" ci="0" mb="0" cb="0"/><line nr="24" mi="0" ci="15" mb="0" cb="0"/><line nr="27" mi="0" ci="2" mb="0" cb="0"/><line nr="30" mi="0" ci="15" mb="0" cb="0"/><line nr="34" mi="2" ci="0" mb="2" cb="0"/><line nr="35" mi="2" ci="0" mb="0" cb="0"/><line nr="37" mi="6" ci="0" mb="0" cb="0"/><line nr="38" mi="5" ci="0" mb="0" cb="0"/><line nr="41" mi="0" ci="15" mb="0" cb="0"/><line nr="44" mi="2" ci="0" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="3" ci="0" mb="0" cb="0"/><line nr="52" mi="0" ci="4" mb="0" cb="0"/><line nr="53" mi="0" ci="3" mb="0" cb="0"/><line nr="54" mi="0" ci="3" mb="0" cb="0"/><line nr="55" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="24" covered="94"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="8" covered="12"/><counter type="COMPLEXITY" missed="6" covered="9"/><counter type="METHOD" missed="5" covered="9"/><counter type="CLASS" missed="0" covered="6"/></sourcefile><counter type="INSTRUCTION" missed="85" covered="482"/><counter type="BRANCH" missed="18" covered="22"/><counter type="LINE" missed="10" covered="66"/><counter type="COMPLEXITY" missed="24" covered="84"/><counter type="METHOD" missed="10" covered="78"/><counter type="CLASS" missed="0" covered="9"/></package><package name="gov/cms/ab2d/job/dto"><class name="gov/cms/ab2d/job/dto/StaleJob" sourcefilename="StaleJob.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;Ljava/lang/String;)V" line="7"><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobUuid" desc="()Ljava/lang/String;" line="10"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="12"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="7"><counter type="INSTRUCTION" missed="49" covered="0"/><counter type="BRANCH" missed="16" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="9" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="7"><counter type="INSTRUCTION" missed="34" covered="0"/><counter type="BRANCH" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="3" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="7"><counter type="INSTRUCTION" missed="6" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="95" covered="9"/><counter type="BRANCH" missed="20" covered="0"/><counter type="LINE" missed="2" covered="1"/><counter type="COMPLEXITY" missed="15" covered="1"/><counter type="METHOD" missed="5" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/dto/JobPollResult" sourcefilename="JobPollResult.java"><method name="getRequestUrl" desc="()Ljava/lang/String;" line="14"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getStatus" desc="()Lgov/cms/ab2d/job/model/JobStatus;" line="15"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getProgress" desc="()I" line="16"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getTransactionTime" desc="()Ljava/lang/String;" line="17"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getExpiresAt" desc="()Ljava/time/OffsetDateTime;" line="18"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getJobOutputs" desc="()Ljava/util/List;" line="19"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setRequestUrl" desc="(Ljava/lang/String;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setStatus" desc="(Lgov/cms/ab2d/job/model/JobStatus;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setProgress" desc="(I)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setTransactionTime" desc="(Ljava/lang/String;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setExpiresAt" desc="(Ljava/time/OffsetDateTime;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setJobOutputs" desc="(Ljava/util/List;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="11"><counter type="INSTRUCTION" missed="113" covered="0"/><counter type="BRANCH" missed="38" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="20" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="11"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="11"><counter type="INSTRUCTION" missed="83" covered="0"/><counter type="BRANCH" missed="10" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="6" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="11"><counter type="INSTRUCTION" missed="14" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;init&gt;" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/JobStatus;ILjava/lang/String;Ljava/time/OffsetDateTime;Ljava/util/List;)V" line="12"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="252" covered="24"/><counter type="BRANCH" missed="48" covered="0"/><counter type="LINE" missed="6" covered="2"/><counter type="COMPLEXITY" missed="39" covered="2"/><counter type="METHOD" missed="15" covered="2"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/dto/StartJobDTO" sourcefilename="StartJobDTO.java"><method name="getContractNumber" desc="()Ljava/lang/String;" line="19"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="21"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceTypes" desc="()Ljava/lang/String;" line="23"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUrl" desc="()Ljava/lang/String;" line="25"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOutputFormat" desc="()Ljava/lang/String;" line="27"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSince" desc="()Ljava/time/OffsetDateTime;" line="28"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUntil" desc="()Ljava/time/OffsetDateTime;" line="29"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getVersion" desc="()Lgov/cms/ab2d/fhir/FhirVersion;" line="31"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="15"><counter type="INSTRUCTION" missed="157" covered="0"/><counter type="BRANCH" missed="54" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="28" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="15"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="15"><counter type="INSTRUCTION" missed="118" covered="0"/><counter type="BRANCH" missed="16" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="9" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="15"><counter type="INSTRUCTION" missed="18" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;init&gt;" desc="(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/time/OffsetDateTime;Ljava/time/OffsetDateTime;Lgov/cms/ab2d/fhir/FhirVersion;)V" line="16"><counter type="INSTRUCTION" missed="0" covered="27"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="296" covered="51"/><counter type="BRANCH" missed="70" covered="0"/><counter type="LINE" missed="1" covered="9"/><counter type="COMPLEXITY" missed="39" covered="9"/><counter type="METHOD" missed="4" covered="9"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobPollResult.java"><line nr="11" mi="237" ci="0" mb="48" cb="0"/><line nr="12" mi="0" ci="21" mb="0" cb="0"/><line nr="14" mi="3" ci="0" mb="0" cb="0"/><line nr="15" mi="0" ci="3" mb="0" cb="0"/><line nr="16" mi="3" ci="0" mb="0" cb="0"/><line nr="17" mi="3" ci="0" mb="0" cb="0"/><line nr="18" mi="3" ci="0" mb="0" cb="0"/><line nr="19" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="252" covered="24"/><counter type="BRANCH" missed="48" covered="0"/><counter type="LINE" missed="6" covered="2"/><counter type="COMPLEXITY" missed="39" covered="2"/><counter type="METHOD" missed="15" covered="2"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="StaleJob.java"><line nr="7" mi="89" ci="9" mb="20" cb="0"/><line nr="10" mi="3" ci="0" mb="0" cb="0"/><line nr="12" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="95" covered="9"/><counter type="BRANCH" missed="20" covered="0"/><counter type="LINE" missed="2" covered="1"/><counter type="COMPLEXITY" missed="15" covered="1"/><counter type="METHOD" missed="5" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="StartJobDTO.java"><line nr="15" mi="296" ci="0" mb="70" cb="0"/><line nr="16" mi="0" ci="27" mb="0" cb="0"/><line nr="19" mi="0" ci="3" mb="0" cb="0"/><line nr="21" mi="0" ci="3" mb="0" cb="0"/><line nr="23" mi="0" ci="3" mb="0" cb="0"/><line nr="25" mi="0" ci="3" mb="0" cb="0"/><line nr="27" mi="0" ci="3" mb="0" cb="0"/><line nr="28" mi="0" ci="3" mb="0" cb="0"/><line nr="29" mi="0" ci="3" mb="0" cb="0"/><line nr="31" mi="0" ci="3" mb="0" cb="0"/><counter type="INSTRUCTION" missed="296" covered="51"/><counter type="BRANCH" missed="70" covered="0"/><counter type="LINE" missed="1" covered="9"/><counter type="COMPLEXITY" missed="39" covered="9"/><counter type="METHOD" missed="4" covered="9"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><counter type="INSTRUCTION" missed="643" covered="84"/><counter type="BRANCH" missed="138" covered="0"/><counter type="LINE" missed="9" covered="12"/><counter type="COMPLEXITY" missed="93" covered="12"/><counter type="METHOD" missed="24" covered="12"/><counter type="CLASS" missed="0" covered="3"/></package><counter type="INSTRUCTION" missed="749" covered="1107"/><counter type="BRANCH" missed="160" covered="70"/><counter type="LINE" missed="23" covered="196"/><counter type="COMPLEXITY" missed="123" covered="145"/><counter type="METHOD" missed="36" covered="117"/><counter type="CLASS" missed="0" covered="18"/></report>
    \ No newline at end of file
    
    From f34fd69cf209594b30f66cbb7a9f27430f90612b Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 13:29:44 -0700
    Subject: [PATCH 15/23] Refactor to calculate checksum and file length before
     encryption + updated tests
    
    ---
     .../controller/common/FileDownloadCommon.java |  4 +-
     .../api/controller/common/StatusCommon.java   |  4 +-
     .../common/FileDownloadCommonTest.java        |  7 ++-
     .../controller/common/StatusCommonTest.java   | 37 ++++++++++++++-
     .../ab2d/common/util/GzipCompressUtils.java   | 18 +++++---
     .../common/util/GzipCompressUtilsTest.java    | 17 ++++---
     .../java/gov/cms/ab2d/e2etest/APIClient.java  | 16 ++++---
     .../java/gov/cms/ab2d/e2etest/TestRunner.java | 34 ++++++++++----
     .../processor/ContractProcessorImpl.java      | 42 ++++++++---------
     .../ab2d/worker/processor/StreamOutput.java   | 23 +++++++---
     .../worker/processor/StreamOutputTest.java    | 45 +++++++++++++------
     11 files changed, 166 insertions(+), 81 deletions(-)
    
    diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java
    index 9975ecebb..70a543643 100644
    --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java
    +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java
    @@ -66,7 +66,7 @@ public ResponseEntity<String> downloadFile(String jobUuid, String filename, Http
                 final String fileDownloadName = getDownloadFilename(downloadResource, requestedEncoding);
                 response.setHeader("Content-Disposition", "inline; swaggerDownload=\"attachment\"; filename=\"" + fileDownloadName + "\"");
     
    -            // write to response stream, compressing or decompressing file contents as needed
    +            // write to response stream, compressing or decompressing file contents depending on 'Accept-Encoding' header
                 if (requestedEncoding == fileEncoding) {
                     IOUtils.copy(in, out);
                 } else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) {
    @@ -122,7 +122,7 @@ static Encoding getRequestedEncoding(HttpServletRequest request) {
             if (values != null) {
                 while (values.hasMoreElements()) {
                     val header = values.nextElement();
    -                if (header.equalsIgnoreCase(Constants.GZIP_ENCODING)) {
    +                if (header.trim().equalsIgnoreCase(Constants.GZIP_ENCODING)) {
                         return GZIP_COMPRESSED;
                     }
                 }
    diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    index 3266eef19..162e15c27 100644
    --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    @@ -150,12 +150,12 @@ protected ResponseEntity<OpenAPIConfig.OperationOutcome> getCanceledResponse(Job
             return new ResponseEntity<OpenAPIConfig.OperationOutcome>(outcome, responseHeaders, HttpStatus.NOT_FOUND);
         }
     
    -    private String getUrlPath(String jobUuid, String filePath, HttpServletRequest request, String apiPrefix) {
    +    protected String getUrlPath(String jobUuid, String filePath, HttpServletRequest request, String apiPrefix) {
             val filePathWithoutGzExtension = removeGzFileExtension(filePath);
             return Common.getUrl(apiPrefix + FHIR_PREFIX + "/Job/" + jobUuid + "/file/" + filePathWithoutGzExtension, request);
         }
     
    -    // job output files are now stored in gzip format - remove '.gz' extension from file download URL for backwards compatibility
    +    // job output files are now stored in gzip format - remove '.gz' extension before building file download URL for backwards compatibility
         private String removeGzFileExtension(String filePath) {
             val index = filePath.lastIndexOf(".gz");
             return (index == -1)
    diff --git a/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java b/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java
    index 9f3019796..6da7725ce 100644
    --- a/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java
    +++ b/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java
    @@ -1,8 +1,5 @@
     package gov.cms.ab2d.api.controller.common;
     
    -import gov.cms.ab2d.api.remote.JobClient;
    -import gov.cms.ab2d.common.service.PdpClientService;
    -import gov.cms.ab2d.eventclient.clients.SQSEventClient;
     import org.junit.jupiter.api.Test;
     import org.junit.jupiter.api.extension.ExtendWith;
     import org.mockito.Mock;
    @@ -10,7 +7,6 @@
     import org.springframework.core.io.Resource;
     
     import javax.servlet.http.HttpServletRequest;
    -import javax.servlet.http.HttpServletResponse;
     import java.io.File;
     import java.io.IOException;
     
    @@ -74,6 +70,9 @@ void test_accept_encoding_values() {
     
             when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("test", "gzip")));
             assertEquals(GZIP_COMPRESSED, FileDownloadCommon.getRequestedEncoding(request));
    +
    +        when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("gzip ", "deflate ", "br ")));
    +        assertEquals(GZIP_COMPRESSED, FileDownloadCommon.getRequestedEncoding(request));
         }
     
     }
    diff --git a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    index 7c9e7be59..01f658b44 100644
    --- a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    +++ b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    @@ -1,7 +1,6 @@
     package gov.cms.ab2d.api.controller.common;
     
    -import static org.junit.Assert.assertNotNull;
    -import static org.junit.Assert.assertThrows;
    +import static org.junit.Assert.*;
     import static org.mockito.ArgumentMatchers.any;
     import static org.mockito.ArgumentMatchers.anyBoolean;
     import static org.mockito.ArgumentMatchers.anyInt;
    @@ -12,6 +11,8 @@
     
     import org.junit.jupiter.api.BeforeEach;
     import org.junit.jupiter.api.Test;
    +import org.junit.jupiter.params.ParameterizedTest;
    +import org.junit.jupiter.params.provider.ValueSource;
     import org.springframework.mock.web.MockHttpServletRequest;
     
     import gov.cms.ab2d.api.controller.JobProcessingException;
    @@ -23,6 +24,8 @@
     import gov.cms.ab2d.eventclient.clients.SQSEventClient;
     import gov.cms.ab2d.job.dto.JobPollResult;
     import gov.cms.ab2d.job.model.JobStatus;
    +import org.springframework.web.context.request.RequestContextHolder;
    +import org.springframework.web.context.request.ServletRequestAttributes;
     
     class StatusCommonTest {
     
    @@ -49,6 +52,10 @@ void beforeEach() {
         statusCommon = new StatusCommon(pdpClientService, jobClient, eventLogger, 0);
     
         req = new MockHttpServletRequest();
    +    RequestContextHolder.setRequestAttributes(new ServletRequestAttributes(req));
    +    req.setScheme("http");
    +    req.setServerName("localhost");
    +    req.setServerPort(8080);
       }
     
       @Test
    @@ -127,4 +134,30 @@ void testGetJobCanceledResponse() {
         );
       }
     
    +  @ParameterizedTest
    +  @ValueSource(strings = {
    +        "Z0000_0001.ndjson.gz",
    +        "Z0000_0001.ndjson"
    +  })
    +  void testGetUrlPathData(String file) {
    +    assertEquals(
    +            "http://localhost:8080/v1/fhir/Job/1234/file/Z0000_0001.ndjson",
    +            statusCommon.getUrlPath("1234", file, req, "v1")
    +    );
    +  }
    +
    +  @ParameterizedTest
    +  @ValueSource(strings = {
    +          "Z0000_0001_error.ndjson.gz",
    +          "Z0000_0001_error.ndjson"
    +  })
    +  void testGetUrlPathError(String file) {
    +    assertEquals(
    +            "http://localhost:8080/v1/fhir/Job/1234/file/Z0000_0001_error.ndjson",
    +            statusCommon.getUrlPath("1234", file, req, "v1")
    +    );
    +  }
    +
    +
    +
     }
    diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    index ac7ec3894..5abeab9b6 100644
    --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    @@ -1,5 +1,7 @@
     package gov.cms.ab2d.common.util;
     
    +import lombok.Getter;
    +import lombok.RequiredArgsConstructor;
     import lombok.experimental.UtilityClass;
     import lombok.extern.slf4j.Slf4j;
     import lombok.val;
    @@ -9,6 +11,7 @@
     import java.io.*;
     import java.nio.file.Files;
     import java.nio.file.Path;
    +import java.util.Optional;
     
     @UtilityClass
     @Slf4j
    @@ -59,6 +62,7 @@ public static void decompress(final Path compressedFile, Path destination) throw
          * @param fileFilter function to determine whether a file should be compressed
          * @return false if an error occurred while compressing one or more files (unlikely), true otherwise
          */
    +    /*
         public static boolean compressJobOutputFiles(
                 String jobId,
                 String baseDir,
    @@ -75,16 +79,17 @@ public static boolean compressJobOutputFiles(
             }
             return success;
         }
    +    */
     
         /**
    -     * Compress a file and optionally delete file after compressing
    +     * Compress a file (outputting to the same directory) and optionally delete file after compressing
          * @param file file to compress
          * @param deleteFile if true, delete file after compressing
    -     * @return true if file was compressed successfully, false otherwise
    +     * @return the output file if file was compressed successfully, null otherwise
          */
    -    static boolean compressFile(File file, boolean deleteFile) {
    +    public static File compressFile(File file, boolean deleteFile) {
             if (file == null || !file.exists() || !file.isFile()) {
    -            return false;
    +            return null;
             }
             // append ".gz" to the input filename
             val compressedOutputFile = new File(file.getParent(), file.getName() + ".gz");
    @@ -92,7 +97,7 @@ static boolean compressFile(File file, boolean deleteFile) {
                 GzipCompressUtils.compress(file.toPath(), compressedOutputFile.toPath());
             } catch (IOException e) {
                 log.error("Unable to compress file: {}", file.getAbsoluteFile());
    -            return false;
    +            return null;
             }
             if (deleteFile) {
                 try {
    @@ -101,7 +106,6 @@ static boolean compressFile(File file, boolean deleteFile) {
                     log.error("Unable to delete file: {}", file.getAbsolutePath());
                 }
             }
    -
    -        return true;
    +        return compressedOutputFile;
         }
     }
    \ No newline at end of file
    diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    index 74d587d1e..11b301fab 100644
    --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    @@ -96,7 +96,7 @@ void testDecompressOutputStream() throws Exception {
         void testCompressFile_fileIsDeleted(@TempDir File tempDir) throws IOException {
             File file = copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile();
             assertTrue(file.exists());
    -        assertTrue(GzipCompressUtils.compressFile(file, true));
    +        assertNotNull(GzipCompressUtils.compressFile(file, true));
     
             assertTrue(new File(file.getParent(), file.getName() + ".gz").exists());
             assertFalse(file.exists());
    @@ -106,7 +106,7 @@ void testCompressFile_fileIsDeleted(@TempDir File tempDir) throws IOException {
         void testCompressFile_fileIsNotDeleted(@TempDir File tempDir) throws IOException {
             File file = copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile();
             assertTrue(file.exists());
    -        assertTrue(GzipCompressUtils.compressFile(file, false));
    +        assertNotNull(GzipCompressUtils.compressFile(file, false));
     
             assertTrue(new File(file.getParent(), file.getName() + ".gz").exists());
             assertTrue(file.exists());
    @@ -114,14 +114,15 @@ void testCompressFile_fileIsNotDeleted(@TempDir File tempDir) throws IOException
     
         @Test
         void testCompressFile_fileNotFound(@TempDir File tempDir) {
    -        assertFalse(GzipCompressUtils.compressFile(new File("not-a-real-file"), true));
    +        assertNull(GzipCompressUtils.compressFile(new File("not-a-real-file"), true));
         }
     
         @Test
         void testCompressFile_fileIsADirectory(@TempDir File tempDir)  {
    -        assertFalse(GzipCompressUtils.compressFile(tempDir, true));
    +        assertNull(GzipCompressUtils.compressFile(tempDir, true));
         }
     
    +    /*
         @Test
         void testCompressJobOutputFiles(@TempDir File tempDir) throws IOException {
             String jobId = "job1234";
    @@ -157,12 +158,14 @@ void testCompressJobOutputFiles_badInputs(@TempDir File tempDir) throws IOExcept
             assertFalse(GzipCompressUtils.compressJobOutputFiles("non-existent-job-id", tempDir.getAbsolutePath(), null));
             assertFalse(GzipCompressUtils.compressJobOutputFiles(UNCOMPRESSED_FILE.toFile().getName(), tempDir.getAbsolutePath(), null));
         }
    +     */
    +
     
         @Test
         void compressFile_invalidInputs(@TempDir File tempDir) {
    -        assertFalse(GzipCompressUtils.compressFile(null, true));
    -        assertFalse(GzipCompressUtils.compressFile(new File("does-not-exist.ndjson"), true));
    -        assertFalse(GzipCompressUtils.compressFile(tempDir, true));
    +        assertNull(GzipCompressUtils.compressFile(null, true));
    +        assertNull(GzipCompressUtils.compressFile(new File("does-not-exist.ndjson"), true));
    +        assertNull(GzipCompressUtils.compressFile(tempDir, true));
         }
     
         Path newTestFile(String suffix) throws IOException {
    diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/APIClient.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/APIClient.java
    index 742b8d28a..a0dfc088f 100644
    --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/APIClient.java
    +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/APIClient.java
    @@ -195,15 +195,21 @@ public HttpResponse<String> cancelJobRequest(String jobId, FhirVersion version)
         }
     
         public HttpResponse<InputStream> fileDownloadRequest(String url) throws IOException, InterruptedException {
    -        HttpRequest fileDownloadRequest = HttpRequest.newBuilder()
    +        return fileDownloadRequest(url, "gzip, deflate, br");
    +    }
    +
    +    // create file download request with 'Accept-Encoding' header - set to null to omit header in request
    +    public HttpResponse<InputStream> fileDownloadRequest(String url, String acceptEncoding) throws IOException, InterruptedException {
    +        HttpRequest.Builder fileDownloadRequest = HttpRequest.newBuilder()
                     .uri(URI.create(url))
                     .timeout(Duration.ofSeconds(defaultTimeout))
                     .header("Authorization", "Bearer " + jwtStr)
    -                .header("Accept-Encoding", "gzip, deflate, br")
    -                .GET()
    -                .build();
    +                .GET();
     
    -        return httpClient.send(fileDownloadRequest, HttpResponse.BodyHandlers.ofInputStream());
    +        if (acceptEncoding != null) {
    +            fileDownloadRequest.header("Accept-Encoding", acceptEncoding);
    +        }
    +        return httpClient.send(fileDownloadRequest.build(), HttpResponse.BodyHandlers.ofInputStream());
         }
     
         public HttpResponse<String> healthCheck() throws IOException, InterruptedException {
    diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    index c0aa750e9..dd93e858e 100644
    --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    @@ -23,15 +23,7 @@
     import java.time.Instant;
     import java.time.OffsetDateTime;
     import java.time.temporal.ChronoUnit;
    -import java.util.ArrayList;
    -import java.util.Arrays;
    -import java.util.Date;
    -import java.util.HashMap;
    -import java.util.HashSet;
    -import java.util.List;
    -import java.util.Map;
    -import java.util.Set;
    -import java.util.UUID;
    +import java.util.*;
     import java.util.stream.Stream;
     import java.util.zip.GZIPInputStream;
     import javax.crypto.SecretKey;
    @@ -496,6 +488,30 @@ private void downloadFile(Pair<String, JSONArray> downloadDetails, OffsetDateTim
             verifyJsonFromfileDownload(downloadString, downloadDetails.getSecond(), since, version);
         }
     
    +    private void downloadFileWithoutAcceptEncoding(Pair<String, JSONArray> downloadDetails, OffsetDateTime since, FhirVersion version) throws IOException, InterruptedException, JSONException {
    +        // set acceptEncoding=null to omit 'Accept-Encoding' header
    +        HttpResponse<InputStream> downloadResponse = apiClient.fileDownloadRequest(downloadDetails.getFirst(), null);
    +
    +        assertEquals(200, downloadResponse.statusCode());
    +
    +
    +        boolean responseContainsGzipEncoding = false;
    +        Map<String, List<String>> headerMap = downloadResponse.headers().map();
    +        if (headerMap.containsKey("content-encoding")) {
    +            List<String> values = headerMap.get("content-encoding");
    +            for (String value : values) {
    +                if (value.equalsIgnoreCase("gzip")) {
    +                    responseContainsGzipEncoding = true;
    +                }
    +            }
    +        }
    +
    +        assertFalse(responseContainsGzipEncoding, "Response header 'content-encoding' should not contain 'gzip'");
    +
    +        String downloadString = IOUtils.toString(downloadResponse.body(), Charset.defaultCharset());
    +        verifyJsonFromfileDownload(downloadString, downloadDetails.getSecond(), since, version);
    +    }
    +
         private Pair<String, JSONArray> performStatusRequests(List<String> contentLocationList, boolean isContract,
                                                               String contractNumber, FhirVersion version) throws JSONException, IOException, InterruptedException {
             HttpResponse<String> statusResponse = apiClient.statusRequest(contentLocationList.iterator().next());
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    index 17ba29ece..9ff9c2803 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    @@ -43,9 +43,7 @@
     import org.springframework.stereotype.Service;
     
     
    -import static gov.cms.ab2d.aggregator.FileOutputType.DATA_COMPRESSED;
    -import static gov.cms.ab2d.aggregator.FileOutputType.ERROR;
    -import static gov.cms.ab2d.aggregator.FileOutputType.ERROR_COMPRESSED;
    +import static gov.cms.ab2d.aggregator.FileOutputType.*;
     import static gov.cms.ab2d.common.util.Constants.CONTRACT_LOG;
     import static gov.cms.ab2d.fhir.BundleUtils.EOB;
     import static net.logstash.logback.argument.StructuredArguments.keyValue;
    @@ -171,17 +169,10 @@ public List<JobOutput> process(Job job) {
                     Thread.sleep(1000);
                 }
     
    -            // Compress job output files (DATA and ERROR)
    -            GzipCompressUtils.compressJobOutputFiles(
    -                    job.getJobUuid(),
    -                    searchConfig.getEfsMount(),
    -                    this::shouldCompressFile
    -            );
    -
                 // Retrieve all the job output info
                 log.info("Number of outputs: " + jobOutputs.size());
    -            jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA_COMPRESSED));
    -            jobOutputs.addAll(getOutputs(job.getJobUuid(), ERROR_COMPRESSED));
    +            jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA));
    +            jobOutputs.addAll(getOutputs(job.getJobUuid(), ERROR));
     
             } catch (InterruptedException | IOException ex) {
                 log.error("interrupted while processing job for contract");
    @@ -190,27 +181,25 @@ public List<JobOutput> process(Job job) {
             return jobOutputs;
         }
     
    -    private boolean shouldCompressFile(File file) {
    -        val type = FileOutputType.getFileType(file);
    -        return type == FileOutputType.DATA || type == FileOutputType.ERROR;
    -    }
    -
         /**
    -     * Look through the job output file and create JobOutput objects with them
    +     * Look through and compress the job output files and create JobOutput objects with them
          *
          * @param jobId - the job id
          * @param type  - the file type
          * @return the list of outputs
          */
         List<JobOutput> getOutputs(String jobId, FileOutputType type) {
    +        final String fileLocation = searchConfig.getEfsMount() + "/" + jobId;
             List<JobOutput> jobOutputs = new ArrayList<>();
    -        List<StreamOutput> dataOutputs = FileUtils.listFiles(searchConfig.getEfsMount() + "/" + jobId, type).stream()
    -                .map(file -> new StreamOutput(file, type))
    +        List<StreamOutput> dataOutputs = FileUtils.listFiles(fileLocation, type).stream()
    +                .map(file -> new StreamOutput(file))
                     .toList();
    -        dataOutputs.stream().map(output -> createJobOutput(output, type)).forEach(jobOutputs::add);
    +        dataOutputs.stream().map(this::createJobOutput).forEach(jobOutputs::add);
             return jobOutputs;
         }
     
    +
    +
         /**
          * Load beneficiaries and create an EOB request for each patient. Patients are loaded a page at a time. The page size is
          * configurable. At the end of loading all requests, the number of requests loaded is compared to the expected
    @@ -486,17 +475,22 @@ private void checkErrorThreshold(ContractData contractData) {
          * From a file, return the JobOutput object
          *
          * @param streamOutput - the output file from the job
    -     * @param type         - file output type
          * @return - the job output object
          */
         @Trace(dispatcher = true)
    -    private JobOutput createJobOutput(StreamOutput streamOutput, FileOutputType type) {
    +    private JobOutput createJobOutput(StreamOutput streamOutput) {
             JobOutput jobOutput = new JobOutput();
             jobOutput.setFilePath(streamOutput.getFilePath());
             jobOutput.setFhirResourceType(EOB);
    -        jobOutput.setError(type == ERROR);
             jobOutput.setChecksum(streamOutput.getChecksum());
             jobOutput.setFileLength(streamOutput.getFileLength());
    +        if (streamOutput.getType() == ERROR || streamOutput.getType() == ERROR_COMPRESSED) {
    +            jobOutput.setError(true);
    +        }
    +        else {
    +            jobOutput.setError(false);
    +        }
    +
             return jobOutput;
         }
     
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    index ead883960..b5f4a7d8e 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    @@ -2,8 +2,10 @@
     
     
     import gov.cms.ab2d.aggregator.FileOutputType;
    +import gov.cms.ab2d.common.util.GzipCompressUtils;
     import lombok.AllArgsConstructor;
     import lombok.Getter;
    +import lombok.val;
     import org.apache.commons.codec.binary.Hex;
     import org.apache.commons.codec.digest.DigestUtils;
     
    @@ -17,7 +19,6 @@
      * to identify the file
      */
     @Getter
    -@AllArgsConstructor
     public class StreamOutput {
     
         private final String filePath;
    @@ -25,11 +26,21 @@ public class StreamOutput {
         private final long fileLength;
         private final FileOutputType type;
     
    -    public StreamOutput(File file, FileOutputType type) {
    -        this.filePath = file.getName();
    -        this.type = type;
    -        this.fileLength = file.length();
    -        this.checksum = generateChecksum(file);
    +    public StreamOutput(final File uncompressedFile) {
    +        // calculate checksum and file length before compressing file
    +        this.fileLength = uncompressedFile.length();
    +        this.checksum = generateChecksum(uncompressedFile);
    +
    +        // compress file and if successful, delete original file
    +        val compressedFile = GzipCompressUtils.compressFile(uncompressedFile, true);
    +        if (compressedFile != null) {
    +            this.filePath = compressedFile.getName();
    +            this.type = FileOutputType.getFileType(compressedFile);
    +        }
    +        else {
    +            this.filePath = uncompressedFile.getName();
    +            this.type = FileOutputType.getFileType(uncompressedFile);
    +        }
         }
     
         public static String generateChecksum(File file) {
    diff --git a/worker/src/test/java/gov/cms/ab2d/worker/processor/StreamOutputTest.java b/worker/src/test/java/gov/cms/ab2d/worker/processor/StreamOutputTest.java
    index a98cc8e82..29b6e9dbe 100644
    --- a/worker/src/test/java/gov/cms/ab2d/worker/processor/StreamOutputTest.java
    +++ b/worker/src/test/java/gov/cms/ab2d/worker/processor/StreamOutputTest.java
    @@ -8,28 +8,47 @@
     import java.io.UncheckedIOException;
     import java.nio.file.Files;
     import java.nio.file.Path;
    +import java.util.stream.Stream;
     
    -import static gov.cms.ab2d.aggregator.FileOutputType.DATA;
    -import static gov.cms.ab2d.aggregator.FileOutputType.ERROR;
    +import static gov.cms.ab2d.aggregator.FileOutputType.*;
     import static org.junit.jupiter.api.Assertions.*;
     
     class StreamOutputTest {
         @Test
    -    void testStreamOutput(@TempDir File tmpDir) throws IOException {
    +    void testStreamOutputData(@TempDir File tmpDir) throws IOException {
             Path tmpFile = Path.of(tmpDir.getAbsolutePath(), "test.ndjson");
             Files.writeString(tmpFile, "abc");
     
    -        StreamOutput output = new StreamOutput(tmpFile.toFile(), DATA);
    +        final String checksumOriginal = StreamOutput.generateChecksum(tmpFile.toFile());
    +        StreamOutput output = new StreamOutput(tmpFile.toFile());
    +
    +        // StreamOutput#getChecksum should return checksum of the original, uncompressed file NOT the compressed file
    +        assertEquals("ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", checksumOriginal);
             assertEquals("ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", output.getChecksum());
    +
             assertEquals(3, output.getFileLength());
    -        assertEquals(tmpFile.toFile().getName(), output.getFilePath());
    -        assertEquals(DATA, output.getType());
    -
    -        Path tmpFile2 = Path.of(tmpDir.getAbsolutePath(), "test2.ndjson");
    -        StreamOutput output2 = new StreamOutput("test2.ndjson", output.getChecksum(), 6, ERROR);
    -        assertEquals(6, output2.getFileLength());
    -        assertEquals("test2.ndjson", output2.getFilePath());
    -        assertEquals(ERROR, output2.getType());
    -        assertThrows(UncheckedIOException.class, () -> StreamOutput.generateChecksum(tmpFile2.toFile()));
    +        assertEquals("test.ndjson.gz", output.getFilePath());
    +        assertEquals(DATA_COMPRESSED, output.getType());
    +        assertFalse(tmpFile.toFile().exists(), "Original DATA file should be deleted");
    +    }
    +
    +    @Test
    +    void testStreamOutputError(@TempDir File tmpDir) throws Exception {
    +        Path tmpFile = Path.of(tmpDir.getAbsolutePath(), "test_error.ndjson");
    +        Files.writeString(tmpFile, "abcdef");
    +
    +        final String checksumOriginal = StreamOutput.generateChecksum(tmpFile.toFile());
    +        StreamOutput output = new StreamOutput(tmpFile.toFile());
    +
    +        // StreamOutput#getChecksum should return checksum of the original, uncompressed file NOT the compressed file
    +        assertEquals("bef57ec7f53a6d40beb640a780a639c83bc29ac8a9816f1fc6c5c6dcd93c4721", checksumOriginal);
    +        assertEquals("bef57ec7f53a6d40beb640a780a639c83bc29ac8a9816f1fc6c5c6dcd93c4721", output.getChecksum());
    +
    +        assertEquals(6, output.getFileLength());
    +        assertEquals("test_error.ndjson.gz", output.getFilePath());
    +        assertEquals(ERROR_COMPRESSED, output.getType());
    +        assertFalse(tmpFile.toFile().exists(), "Original ERROR file should be deleted");
    +
         }
    +
     }
    \ No newline at end of file
    
    From 72c358f19b35c0973c86cdbf70c78e10e6f6276c Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 13:36:09 -0700
    Subject: [PATCH 16/23] Fix unused imports, styling
    
    ---
     .../java/gov/cms/ab2d/common/util/GzipCompressUtils.java     | 3 ---
     .../gov/cms/ab2d/worker/processor/ContractProcessorImpl.java | 5 +----
     .../java/gov/cms/ab2d/worker/processor/StreamOutput.java     | 4 +---
     3 files changed, 2 insertions(+), 10 deletions(-)
    
    diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    index 5abeab9b6..d8e87fa83 100644
    --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    @@ -1,7 +1,5 @@
     package gov.cms.ab2d.common.util;
     
    -import lombok.Getter;
    -import lombok.RequiredArgsConstructor;
     import lombok.experimental.UtilityClass;
     import lombok.extern.slf4j.Slf4j;
     import lombok.val;
    @@ -11,7 +9,6 @@
     import java.io.*;
     import java.nio.file.Files;
     import java.nio.file.Path;
    -import java.util.Optional;
     
     @UtilityClass
     @Slf4j
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    index 9ff9c2803..b175834d1 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    @@ -7,7 +7,6 @@
     import gov.cms.ab2d.aggregator.FileOutputType;
     import gov.cms.ab2d.aggregator.FileUtils;
     import gov.cms.ab2d.aggregator.JobHelper;
    -import gov.cms.ab2d.common.util.GzipCompressUtils;
     import gov.cms.ab2d.contracts.model.ContractDTO;
     import gov.cms.ab2d.coverage.model.CoveragePagingRequest;
     import gov.cms.ab2d.coverage.model.CoveragePagingResult;
    @@ -35,7 +34,6 @@
     import java.util.concurrent.Future;
     
     import lombok.extern.slf4j.Slf4j;
    -import lombok.val;
     import org.apache.commons.lang3.exception.ExceptionUtils;
     import org.springframework.beans.factory.annotation.Qualifier;
     import org.springframework.beans.factory.annotation.Value;
    @@ -486,8 +484,7 @@ private JobOutput createJobOutput(StreamOutput streamOutput) {
             jobOutput.setFileLength(streamOutput.getFileLength());
             if (streamOutput.getType() == ERROR || streamOutput.getType() == ERROR_COMPRESSED) {
                 jobOutput.setError(true);
    -        }
    -        else {
    +        } else {
                 jobOutput.setError(false);
             }
     
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    index b5f4a7d8e..103bd0ef5 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    @@ -3,7 +3,6 @@
     
     import gov.cms.ab2d.aggregator.FileOutputType;
     import gov.cms.ab2d.common.util.GzipCompressUtils;
    -import lombok.AllArgsConstructor;
     import lombok.Getter;
     import lombok.val;
     import org.apache.commons.codec.binary.Hex;
    @@ -36,8 +35,7 @@ public StreamOutput(final File uncompressedFile) {
             if (compressedFile != null) {
                 this.filePath = compressedFile.getName();
                 this.type = FileOutputType.getFileType(compressedFile);
    -        }
    -        else {
    +        } else {
                 this.filePath = uncompressedFile.getName();
                 this.type = FileOutputType.getFileType(uncompressedFile);
             }
    
    From 8d0314b5fb2aa1de4ce1c079c32a47e8929e2eae Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 15:47:35 -0700
    Subject: [PATCH 17/23] Remove jacoco resources
    
    ---
     .../gov.cms.ab2d.job.dto/JobPollResult.html   |    1 -
     .../JobPollResult.java.html                   |   21 -
     job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html |    1 -
     .../gov.cms.ab2d.job.dto/StaleJob.java.html   |   14 -
     .../gov.cms.ab2d.job.dto/StartJobDTO.html     |    1 -
     .../StartJobDTO.java.html                     |   33 -
     job/jacoco/gov.cms.ab2d.job.dto/index.html    |    1 -
     .../gov.cms.ab2d.job.dto/index.source.html    |    1 -
     job/jacoco/gov.cms.ab2d.job.model/Job.html    |    1 -
     .../gov.cms.ab2d.job.model/Job.java.html      |  129 --
     .../gov.cms.ab2d.job.model/JobOutput.html     |    1 -
     .../JobOutput.java.html                       |   52 -
     .../gov.cms.ab2d.job.model/JobStartedBy.html  |    1 -
     .../JobStartedBy.java.html                    |    8 -
     .../gov.cms.ab2d.job.model/JobStatus$1.html   |    1 -
     .../gov.cms.ab2d.job.model/JobStatus$2.html   |    1 -
     .../gov.cms.ab2d.job.model/JobStatus$3.html   |    1 -
     .../gov.cms.ab2d.job.model/JobStatus$4.html   |    1 -
     .../gov.cms.ab2d.job.model/JobStatus$5.html   |    1 -
     .../gov.cms.ab2d.job.model/JobStatus.html     |    1 -
     .../JobStatus.java.html                       |   59 -
     job/jacoco/gov.cms.ab2d.job.model/index.html  |    1 -
     .../gov.cms.ab2d.job.model/index.source.html  |    1 -
     .../InvalidJobAccessException.html            |    1 -
     .../InvalidJobAccessException.java.html       |    9 -
     .../InvalidJobStateTransition.html            |    1 -
     .../InvalidJobStateTransition.java.html       |    9 -
     .../JobOutputMissingException.html            |    1 -
     .../JobOutputMissingException.java.html       |    9 -
     .../JobOutputServiceImpl.html                 |    1 -
     .../JobOutputServiceImpl.java.html            |   32 -
     .../JobServiceImpl.html                       |    1 -
     .../JobServiceImpl.java.html                  |  215 ---
     .../gov.cms.ab2d.job.service/index.html       |    1 -
     .../index.source.html                         |    1 -
     job/jacoco/gov.cms.ab2d.job.util/JobUtil.html |    1 -
     .../gov.cms.ab2d.job.util/JobUtil.java.html   |   51 -
     job/jacoco/gov.cms.ab2d.job.util/index.html   |    1 -
     .../gov.cms.ab2d.job.util/index.source.html   |    1 -
     job/jacoco/index.html                         |    1 -
     job/jacoco/jacoco-resources/branchfc.gif      |  Bin 91 -> 0 bytes
     job/jacoco/jacoco-resources/branchnc.gif      |  Bin 91 -> 0 bytes
     job/jacoco/jacoco-resources/branchpc.gif      |  Bin 91 -> 0 bytes
     job/jacoco/jacoco-resources/bundle.gif        |  Bin 709 -> 0 bytes
     job/jacoco/jacoco-resources/class.gif         |  Bin 586 -> 0 bytes
     job/jacoco/jacoco-resources/down.gif          |  Bin 67 -> 0 bytes
     job/jacoco/jacoco-resources/greenbar.gif      |  Bin 91 -> 0 bytes
     job/jacoco/jacoco-resources/group.gif         |  Bin 351 -> 0 bytes
     job/jacoco/jacoco-resources/method.gif        |  Bin 193 -> 0 bytes
     job/jacoco/jacoco-resources/package.gif       |  Bin 227 -> 0 bytes
     job/jacoco/jacoco-resources/prettify.css      |   13 -
     job/jacoco/jacoco-resources/prettify.js       | 1510 -----------------
     job/jacoco/jacoco-resources/redbar.gif        |  Bin 91 -> 0 bytes
     job/jacoco/jacoco-resources/report.css        |  243 ---
     job/jacoco/jacoco-resources/report.gif        |  Bin 363 -> 0 bytes
     job/jacoco/jacoco-resources/session.gif       |  Bin 213 -> 0 bytes
     job/jacoco/jacoco-resources/sort.gif          |  Bin 58 -> 0 bytes
     job/jacoco/jacoco-resources/sort.js           |  148 --
     job/jacoco/jacoco-resources/source.gif        |  Bin 354 -> 0 bytes
     job/jacoco/jacoco-resources/up.gif            |  Bin 67 -> 0 bytes
     job/jacoco/jacoco-sessions.html               |    1 -
     job/jacoco/jacoco.csv                         |   19 -
     job/jacoco/jacoco.xml                         |    1 -
     63 files changed, 2603 deletions(-)
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/index.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.dto/index.source.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/Job.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/Job.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobOutput.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/index.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.model/index.source.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/index.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.service/index.source.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.util/JobUtil.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.util/index.html
     delete mode 100644 job/jacoco/gov.cms.ab2d.job.util/index.source.html
     delete mode 100644 job/jacoco/index.html
     delete mode 100644 job/jacoco/jacoco-resources/branchfc.gif
     delete mode 100644 job/jacoco/jacoco-resources/branchnc.gif
     delete mode 100644 job/jacoco/jacoco-resources/branchpc.gif
     delete mode 100644 job/jacoco/jacoco-resources/bundle.gif
     delete mode 100644 job/jacoco/jacoco-resources/class.gif
     delete mode 100644 job/jacoco/jacoco-resources/down.gif
     delete mode 100644 job/jacoco/jacoco-resources/greenbar.gif
     delete mode 100644 job/jacoco/jacoco-resources/group.gif
     delete mode 100644 job/jacoco/jacoco-resources/method.gif
     delete mode 100644 job/jacoco/jacoco-resources/package.gif
     delete mode 100644 job/jacoco/jacoco-resources/prettify.css
     delete mode 100644 job/jacoco/jacoco-resources/prettify.js
     delete mode 100644 job/jacoco/jacoco-resources/redbar.gif
     delete mode 100644 job/jacoco/jacoco-resources/report.css
     delete mode 100644 job/jacoco/jacoco-resources/report.gif
     delete mode 100644 job/jacoco/jacoco-resources/session.gif
     delete mode 100644 job/jacoco/jacoco-resources/sort.gif
     delete mode 100644 job/jacoco/jacoco-resources/sort.js
     delete mode 100644 job/jacoco/jacoco-resources/source.gif
     delete mode 100644 job/jacoco/jacoco-resources/up.gif
     delete mode 100644 job/jacoco/jacoco-sessions.html
     delete mode 100644 job/jacoco/jacoco.csv
     delete mode 100644 job/jacoco/jacoco.xml
    
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html
    deleted file mode 100644
    index bc2b5f755..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobPollResult</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_class">JobPollResult</span></div><h1>JobPollResult</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">252 of 276</td><td class="ctr2">8%</td><td class="bar">48 of 48</td><td class="ctr2">0%</td><td class="ctr1">39</td><td class="ctr2">41</td><td class="ctr1">6</td><td class="ctr2">8</td><td class="ctr1">15</td><td class="ctr2">17</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobPollResult.java.html#L11" class="el_method">equals(Object)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="113" alt="113"/></td><td class="ctr2" id="c2">0%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="38" alt="38"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">20</td><td class="ctr2" id="g0">20</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a8"><a href="JobPollResult.java.html#L11" class="el_method">hashCode()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="88" height="10" title="83" alt="83"/></td><td class="ctr2" id="c3">0%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="31" height="10" title="10" alt="10"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">6</td><td class="ctr2" id="g1">6</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a16"><a href="JobPollResult.java.html#L11" class="el_method">toString()</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="14" alt="14"/></td><td class="ctr2" id="c4">0%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a13"><a href="JobPollResult.java.html#L11" class="el_method">setRequestUrl(String)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c5">0%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a14"><a href="JobPollResult.java.html#L11" class="el_method">setStatus(JobStatus)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c6">0%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">1</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">1</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">1</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a12"><a href="JobPollResult.java.html#L11" class="el_method">setProgress(int)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c7">0%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">1</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">1</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">1</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a15"><a href="JobPollResult.java.html#L11" class="el_method">setTransactionTime(String)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c8">0%</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">1</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">1</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">1</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a10"><a href="JobPollResult.java.html#L11" class="el_method">setExpiresAt(OffsetDateTime)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c9">0%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">1</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">1</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">1</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a11"><a href="JobPollResult.java.html#L11" class="el_method">setJobOutputs(List)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="4" alt="4"/></td><td class="ctr2" id="c10">0%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">1</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h8">1</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j8">1</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a5"><a href="JobPollResult.java.html#L14" class="el_method">getRequestUrl()</a></td><td class="bar" id="b9"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c11">0%</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f9">1</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h9">1</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">1</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a4"><a href="JobPollResult.java.html#L16" class="el_method">getProgress()</a></td><td class="bar" id="b10"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c12">0%</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">1</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">1</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">1</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a7"><a href="JobPollResult.java.html#L17" class="el_method">getTransactionTime()</a></td><td class="bar" id="b11"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c13">0%</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">1</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">1</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">1</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a2"><a href="JobPollResult.java.html#L18" class="el_method">getExpiresAt()</a></td><td class="bar" id="b12"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c14">0%</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">1</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">1</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">1</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a3"><a href="JobPollResult.java.html#L19" class="el_method">getJobOutputs()</a></td><td class="bar" id="b13"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c15">0%</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">1</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">1</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">1</td><td class="ctr2" id="k13">1</td></tr><tr><td id="a0"><a href="JobPollResult.java.html#L11" class="el_method">canEqual(Object)</a></td><td class="bar" id="b14"><img src="../jacoco-resources/redbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c16">0%</td><td class="bar" id="d14"/><td class="ctr2" id="e14">n/a</td><td class="ctr1" id="f14">1</td><td class="ctr2" id="g14">1</td><td class="ctr1" id="h14">1</td><td class="ctr2" id="i14">1</td><td class="ctr1" id="j14">1</td><td class="ctr2" id="k14">1</td></tr><tr><td id="a9"><a href="JobPollResult.java.html#L12" class="el_method">JobPollResult(String, JobStatus, int, String, OffsetDateTime, List)</a></td><td class="bar" id="b15"><img src="../jacoco-resources/greenbar.gif" width="22" height="10" title="21" alt="21"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d15"/><td class="ctr2" id="e15">n/a</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g15">1</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i15">1</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k15">1</td></tr><tr><td id="a6"><a href="JobPollResult.java.html#L15" class="el_method">getStatus()</a></td><td class="bar" id="b16"><img src="../jacoco-resources/greenbar.gif" width="3" height="10" title="3" alt="3"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d16"/><td class="ctr2" id="e16">n/a</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g16">1</td><td class="ctr1" id="h16">0</td><td class="ctr2" id="i16">1</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k16">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html b/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html
    deleted file mode 100644
    index f7ebe52e9..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/JobPollResult.java.html
    +++ /dev/null
    @@ -1,21 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobPollResult.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_source">JobPollResult.java</span></div><h1>JobPollResult.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.dto;
    -
    -import gov.cms.ab2d.job.model.JobOutput;
    -import gov.cms.ab2d.job.model.JobStatus;
    -import lombok.AllArgsConstructor;
    -import lombok.Data;
    -
    -import java.time.OffsetDateTime;
    -import java.util.List;
    -
    -<span class="nc bnc" id="L11" title="All 48 branches missed.">@Data</span>
    -<span class="fc" id="L12">@AllArgsConstructor</span>
    -public class JobPollResult {
    -<span class="nc" id="L14">    private String requestUrl;</span>
    -<span class="fc" id="L15">    private JobStatus status;</span>
    -<span class="nc" id="L16">    private int progress;</span>
    -<span class="nc" id="L17">    private String transactionTime;</span>
    -<span class="nc" id="L18">    private OffsetDateTime expiresAt;</span>
    -<span class="nc" id="L19">    private List&lt;JobOutput&gt; jobOutputs;</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html
    deleted file mode 100644
    index 8ea0cfc19..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>StaleJob</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_class">StaleJob</span></div><h1>StaleJob</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">95 of 104</td><td class="ctr2">8%</td><td class="bar">20 of 20</td><td class="ctr2">0%</td><td class="ctr1">15</td><td class="ctr2">16</td><td class="ctr1">2</td><td class="ctr2">3</td><td class="ctr1">5</td><td class="ctr2">6</td></tr></tfoot><tbody><tr><td id="a0"><a href="StaleJob.java.html#L7" class="el_method">equals(Object)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="49" alt="49"/></td><td class="ctr2" id="c1">0%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="16" alt="16"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">9</td><td class="ctr2" id="g0">9</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a3"><a href="StaleJob.java.html#L7" class="el_method">hashCode()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="83" height="10" title="34" alt="34"/></td><td class="ctr2" id="c2">0%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="30" height="10" title="4" alt="4"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">3</td><td class="ctr2" id="g1">3</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a5"><a href="StaleJob.java.html#L7" class="el_method">toString()</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="6" alt="6"/></td><td class="ctr2" id="c3">0%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a1"><a href="StaleJob.java.html#L10" class="el_method">getJobUuid()</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="7" height="10" title="3" alt="3"/></td><td class="ctr2" id="c4">0%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a2"><a href="StaleJob.java.html#L12" class="el_method">getOrganization()</a></td><td class="bar" id="b4"><img src="../jacoco-resources/redbar.gif" width="7" height="10" title="3" alt="3"/></td><td class="ctr2" id="c5">0%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">1</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">1</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">1</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a4"><a href="StaleJob.java.html#L7" class="el_method">StaleJob(String, String)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="22" height="10" title="9" alt="9"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html b/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html
    deleted file mode 100644
    index 3b73f30d1..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/StaleJob.java.html
    +++ /dev/null
    @@ -1,14 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>StaleJob.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_source">StaleJob.java</span></div><h1>StaleJob.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.dto;
    -
    -import lombok.Value;
    -
    -import javax.validation.constraints.NotNull;
    -
    -<span class="pc bnc" id="L7" title="All 20 branches missed.">@Value</span>
    -public class StaleJob {
    -    @NotNull
    -<span class="nc" id="L10">    String jobUuid;</span>
    -    @NotNull
    -<span class="nc" id="L12">    String organization;</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html
    deleted file mode 100644
    index dc7d1a7ad..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>StartJobDTO</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_class">StartJobDTO</span></div><h1>StartJobDTO</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">296 of 347</td><td class="ctr2">14%</td><td class="bar">70 of 70</td><td class="ctr2">0%</td><td class="ctr1">39</td><td class="ctr2">48</td><td class="ctr1">1</td><td class="ctr2">10</td><td class="ctr1">4</td><td class="ctr2">13</td></tr></tfoot><tbody><tr><td id="a1"><a href="StartJobDTO.java.html#L15" class="el_method">equals(Object)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="157" alt="157"/></td><td class="ctr2" id="c9">0%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="54" alt="54"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">28</td><td class="ctr2" id="g0">28</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a10"><a href="StartJobDTO.java.html#L15" class="el_method">hashCode()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="90" height="10" title="118" alt="118"/></td><td class="ctr2" id="c10">0%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="35" height="10" title="16" alt="16"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">9</td><td class="ctr2" id="g1">9</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a12"><a href="StartJobDTO.java.html#L15" class="el_method">toString()</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="13" height="10" title="18" alt="18"/></td><td class="ctr2" id="c11">0%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a0"><a href="StartJobDTO.java.html#L15" class="el_method">canEqual(Object)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c12">0%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a11"><a href="StartJobDTO.java.html#L16" class="el_method">StartJobDTO(String, String, String, String, String, OffsetDateTime, OffsetDateTime, FhirVersion)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="27" alt="27"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a2"><a href="StartJobDTO.java.html#L19" class="el_method">getContractNumber()</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a3"><a href="StartJobDTO.java.html#L21" class="el_method">getOrganization()</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a5"><a href="StartJobDTO.java.html#L23" class="el_method">getResourceTypes()</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a8"><a href="StartJobDTO.java.html#L25" class="el_method">getUrl()</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a4"><a href="StartJobDTO.java.html#L27" class="el_method">getOutputFormat()</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a6"><a href="StartJobDTO.java.html#L28" class="el_method">getSince()</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a7"><a href="StartJobDTO.java.html#L29" class="el_method">getUntil()</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c7">100%</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a9"><a href="StartJobDTO.java.html#L31" class="el_method">getVersion()</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="3" alt="3"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html b/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html
    deleted file mode 100644
    index d40dceda1..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/StartJobDTO.java.html
    +++ /dev/null
    @@ -1,33 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>StartJobDTO.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.dto</a> &gt; <span class="el_source">StartJobDTO.java</span></div><h1>StartJobDTO.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.dto;
    -
    -import gov.cms.ab2d.fhir.FhirVersion;
    -import lombok.AllArgsConstructor;
    -import lombok.Data;
    -
    -import javax.validation.constraints.NotNull;
    -import java.time.OffsetDateTime;
    -
    -/**
    - * StartJobDTO is a fully verified and validated request to start a job.
    - *
    - * This means the caller has the permission to run against this contract and that the contract is attested.
    - */
    -<span class="nc bnc" id="L15" title="All 70 branches missed.">@Data</span>
    -<span class="fc" id="L16">@AllArgsConstructor</span>
    -public class StartJobDTO {
    -    @NotNull
    -<span class="fc" id="L19">    private final String contractNumber;</span>
    -    @NotNull
    -<span class="fc" id="L21">    private final String organization;</span>
    -    @NotNull
    -<span class="fc" id="L23">    private final String resourceTypes;</span>
    -    @NotNull
    -<span class="fc" id="L25">    private final String url;</span>
    -    @NotNull
    -<span class="fc" id="L27">    private final String outputFormat;</span>
    -<span class="fc" id="L28">    private final OffsetDateTime since;</span>
    -<span class="fc" id="L29">    private final OffsetDateTime until;</span>
    -    @NotNull
    -<span class="fc" id="L31">    private final FhirVersion version;</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/index.html b/job/jacoco/gov.cms.ab2d.job.dto/index.html
    deleted file mode 100644
    index 9566da34b..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/index.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.dto</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.dto</span></div><h1>gov.cms.ab2d.job.dto</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">643 of 727</td><td class="ctr2">11%</td><td class="bar">138 of 138</td><td class="ctr2">0%</td><td class="ctr1">93</td><td class="ctr2">105</td><td class="ctr1">9</td><td class="ctr2">21</td><td class="ctr1">24</td><td class="ctr2">36</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a2"><a href="StartJobDTO.html" class="el_class">StartJobDTO</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="102" height="10" title="296" alt="296"/><img src="../jacoco-resources/greenbar.gif" width="17" height="10" title="51" alt="51"/></td><td class="ctr2" id="c0">14%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="70" alt="70"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">39</td><td class="ctr2" id="g0">48</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i0">10</td><td class="ctr1" id="j2">4</td><td class="ctr2" id="k1">13</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="JobPollResult.html" class="el_class">JobPollResult</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="87" height="10" title="252" alt="252"/><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="24" alt="24"/></td><td class="ctr2" id="c1">8%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="82" height="10" title="48" alt="48"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">39</td><td class="ctr2" id="g1">41</td><td class="ctr1" id="h0">6</td><td class="ctr2" id="i1">8</td><td class="ctr1" id="j0">15</td><td class="ctr2" id="k0">17</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a1"><a href="StaleJob.html" class="el_class">StaleJob</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="32" height="10" title="95" alt="95"/><img src="../jacoco-resources/greenbar.gif" width="3" height="10" title="9" alt="9"/></td><td class="ctr2" id="c2">8%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="20" alt="20"/></td><td class="ctr2" id="e2">0%</td><td class="ctr1" id="f2">15</td><td class="ctr2" id="g2">16</td><td class="ctr1" id="h1">2</td><td class="ctr2" id="i2">3</td><td class="ctr1" id="j1">5</td><td class="ctr2" id="k2">6</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.dto/index.source.html b/job/jacoco/gov.cms.ab2d.job.dto/index.source.html
    deleted file mode 100644
    index 38bdfa166..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.dto/index.source.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.dto</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.dto</span></div><h1>gov.cms.ab2d.job.dto</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">643 of 727</td><td class="ctr2">11%</td><td class="bar">138 of 138</td><td class="ctr2">0%</td><td class="ctr1">93</td><td class="ctr2">105</td><td class="ctr1">9</td><td class="ctr2">21</td><td class="ctr1">24</td><td class="ctr2">36</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a2"><a href="StartJobDTO.java.html" class="el_source">StartJobDTO.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="102" height="10" title="296" alt="296"/><img src="../jacoco-resources/greenbar.gif" width="17" height="10" title="51" alt="51"/></td><td class="ctr2" id="c0">14%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="70" alt="70"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">39</td><td class="ctr2" id="g0">48</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i0">10</td><td class="ctr1" id="j2">4</td><td class="ctr2" id="k1">13</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="JobPollResult.java.html" class="el_source">JobPollResult.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="87" height="10" title="252" alt="252"/><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="24" alt="24"/></td><td class="ctr2" id="c1">8%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="82" height="10" title="48" alt="48"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">39</td><td class="ctr2" id="g1">41</td><td class="ctr1" id="h0">6</td><td class="ctr2" id="i1">8</td><td class="ctr1" id="j0">15</td><td class="ctr2" id="k0">17</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a1"><a href="StaleJob.java.html" class="el_source">StaleJob.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="32" height="10" title="95" alt="95"/><img src="../jacoco-resources/greenbar.gif" width="3" height="10" title="9" alt="9"/></td><td class="ctr2" id="c2">8%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="20" alt="20"/></td><td class="ctr2" id="e2">0%</td><td class="ctr1" id="f2">15</td><td class="ctr2" id="g2">16</td><td class="ctr1" id="h1">2</td><td class="ctr2" id="i2">3</td><td class="ctr1" id="j1">5</td><td class="ctr2" id="k2">6</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/Job.html b/job/jacoco/gov.cms.ab2d.job.model/Job.html
    deleted file mode 100644
    index c028d2295..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/Job.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>Job</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">Job</span></div><h1>Job</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">23 of 298</td><td class="ctr2">92%</td><td class="bar">7 of 24</td><td class="ctr2">70%</td><td class="ctr1">8</td><td class="ctr2">63</td><td class="ctr1">1</td><td class="ctr2">39</td><td class="ctr1">2</td><td class="ctr2">51</td></tr></tfoot><tbody><tr><td id="a1"><a href="Job.java.html#L126" class="el_method">buildFileEvent(File, FileEvent.FileStatus)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="31" height="10" title="10" alt="10"/></td><td class="ctr2" id="c49">0%</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f1">1</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a4"><a href="Job.java.html#L28" class="el_method">equals(Object)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="28" height="10" title="9" alt="9"/><img src="../jacoco-resources/greenbar.gif" width="91" height="10" title="29" alt="29"/></td><td class="ctr2" id="c48">76%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="60" height="10" title="6" alt="6"/><img src="../jacoco-resources/greenbar.gif" width="60" height="10" title="6" alt="6"/></td><td class="ctr2" id="e5">50%</td><td class="ctr1" id="f0">5</td><td class="ctr2" id="g0">7</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a47"><a href="Job.java.html#L27" class="el_method">setStartedBy(JobStartedBy)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c50">0%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a2"><a href="Job.java.html#L121" class="el_method">buildJobStatusChangeEvent(JobStatus, String)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="66" height="10" title="21" alt="21"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d2"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g2">2</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a25"><a href="Job.java.html#L28" class="el_method">hashCode()</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="63" height="10" title="20" alt="20"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d3"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e1">100%</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g3">2</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a30"><a href="Job.java.html#L117" class="el_method">pollingTooMuch(int)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="47" height="10" title="15" alt="15"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="10" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="30" height="10" title="3" alt="3"/></td><td class="ctr2" id="e4">75%</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g1">3</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a28"><a href="Job.java.html#L29" class="el_method">Job()</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="44" height="10" title="14" alt="14"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i0">4</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a29"><a href="Job.java.html#L106" class="el_method">pollAndUpdateTime(int)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="41" height="10" title="13" alt="13"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d4"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e2">100%</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g4">2</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a0"><a href="Job.java.html#L97" class="el_method">addJobOutput(JobOutput)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="28" height="10" title="9" alt="9"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i2">3</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a26"><a href="Job.java.html#L102" class="el_method">hasJobBeenCancelled()</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="25" height="10" title="8" alt="8"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d5"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e3">100%</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g5">2</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a27"><a href="Job.java.html#L113" class="el_method">isExpired(int)</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="22" height="10" title="7" alt="7"/></td><td class="ctr2" id="c7">100%</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a36"><a href="Job.java.html#L27" class="el_method">setId(Long)</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a38"><a href="Job.java.html#L27" class="el_method">setJobUuid(String)</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c9">100%</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a40"><a href="Job.java.html#L27" class="el_method">setOrganization(String)</a></td><td class="bar" id="b13"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c10">100%</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k13">1</td></tr><tr><td id="a37"><a href="Job.java.html#L27" class="el_method">setJobOutputs(List)</a></td><td class="bar" id="b14"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c11">100%</td><td class="bar" id="d14"/><td class="ctr2" id="e14">n/a</td><td class="ctr1" id="f14">0</td><td class="ctr2" id="g14">1</td><td class="ctr1" id="h14">0</td><td class="ctr2" id="i14">1</td><td class="ctr1" id="j14">0</td><td class="ctr2" id="k14">1</td></tr><tr><td id="a33"><a href="Job.java.html#L27" class="el_method">setCreatedAt(OffsetDateTime)</a></td><td class="bar" id="b15"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c12">100%</td><td class="bar" id="d15"/><td class="ctr2" id="e15">n/a</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g15">1</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i15">1</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k15">1</td></tr><tr><td id="a31"><a href="Job.java.html#L27" class="el_method">setCompletedAt(OffsetDateTime)</a></td><td class="bar" id="b16"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c13">100%</td><td class="bar" id="d16"/><td class="ctr2" id="e16">n/a</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g16">1</td><td class="ctr1" id="h16">0</td><td class="ctr2" id="i16">1</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k16">1</td></tr><tr><td id="a43"><a href="Job.java.html#L27" class="el_method">setRequestUrl(String)</a></td><td class="bar" id="b17"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c14">100%</td><td class="bar" id="d17"/><td class="ctr2" id="e17">n/a</td><td class="ctr1" id="f17">0</td><td class="ctr2" id="g17">1</td><td class="ctr1" id="h17">0</td><td class="ctr2" id="i17">1</td><td class="ctr1" id="j17">0</td><td class="ctr2" id="k17">1</td></tr><tr><td id="a48"><a href="Job.java.html#L27" class="el_method">setStatus(JobStatus)</a></td><td class="bar" id="b18"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c15">100%</td><td class="bar" id="d18"/><td class="ctr2" id="e18">n/a</td><td class="ctr1" id="f18">0</td><td class="ctr2" id="g18">1</td><td class="ctr1" id="h18">0</td><td class="ctr2" id="i18">1</td><td class="ctr1" id="j18">0</td><td class="ctr2" id="k18">1</td></tr><tr><td id="a49"><a href="Job.java.html#L27" class="el_method">setStatusMessage(String)</a></td><td class="bar" id="b19"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c16">100%</td><td class="bar" id="d19"/><td class="ctr2" id="e19">n/a</td><td class="ctr1" id="f19">0</td><td class="ctr2" id="g19">1</td><td class="ctr1" id="h19">0</td><td class="ctr2" id="i19">1</td><td class="ctr1" id="j19">0</td><td class="ctr2" id="k19">1</td></tr><tr><td id="a41"><a href="Job.java.html#L27" class="el_method">setOutputFormat(String)</a></td><td class="bar" id="b20"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c17">100%</td><td class="bar" id="d20"/><td class="ctr2" id="e20">n/a</td><td class="ctr1" id="f20">0</td><td class="ctr2" id="g20">1</td><td class="ctr1" id="h20">0</td><td class="ctr2" id="i20">1</td><td class="ctr1" id="j20">0</td><td class="ctr2" id="k20">1</td></tr><tr><td id="a42"><a href="Job.java.html#L27" class="el_method">setProgress(Integer)</a></td><td class="bar" id="b21"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c18">100%</td><td class="bar" id="d21"/><td class="ctr2" id="e21">n/a</td><td class="ctr1" id="f21">0</td><td class="ctr2" id="g21">1</td><td class="ctr1" id="h21">0</td><td class="ctr2" id="i21">1</td><td class="ctr1" id="j21">0</td><td class="ctr2" id="k21">1</td></tr><tr><td id="a35"><a href="Job.java.html#L27" class="el_method">setFhirVersion(FhirVersion)</a></td><td class="bar" id="b22"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c19">100%</td><td class="bar" id="d22"/><td class="ctr2" id="e22">n/a</td><td class="ctr1" id="f22">0</td><td class="ctr2" id="g22">1</td><td class="ctr1" id="h22">0</td><td class="ctr2" id="i22">1</td><td class="ctr1" id="j22">0</td><td class="ctr2" id="k22">1</td></tr><tr><td id="a39"><a href="Job.java.html#L27" class="el_method">setLastPollTime(OffsetDateTime)</a></td><td class="bar" id="b23"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c20">100%</td><td class="bar" id="d23"/><td class="ctr2" id="e23">n/a</td><td class="ctr1" id="f23">0</td><td class="ctr2" id="g23">1</td><td class="ctr1" id="h23">0</td><td class="ctr2" id="i23">1</td><td class="ctr1" id="j23">0</td><td class="ctr2" id="k23">1</td></tr><tr><td id="a45"><a href="Job.java.html#L27" class="el_method">setSince(OffsetDateTime)</a></td><td class="bar" id="b24"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c21">100%</td><td class="bar" id="d24"/><td class="ctr2" id="e24">n/a</td><td class="ctr1" id="f24">0</td><td class="ctr2" id="g24">1</td><td class="ctr1" id="h24">0</td><td class="ctr2" id="i24">1</td><td class="ctr1" id="j24">0</td><td class="ctr2" id="k24">1</td></tr><tr><td id="a50"><a href="Job.java.html#L27" class="el_method">setUntil(OffsetDateTime)</a></td><td class="bar" id="b25"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c22">100%</td><td class="bar" id="d25"/><td class="ctr2" id="e25">n/a</td><td class="ctr1" id="f25">0</td><td class="ctr2" id="g25">1</td><td class="ctr1" id="h25">0</td><td class="ctr2" id="i25">1</td><td class="ctr1" id="j25">0</td><td class="ctr2" id="k25">1</td></tr><tr><td id="a34"><a href="Job.java.html#L27" class="el_method">setExpiresAt(OffsetDateTime)</a></td><td class="bar" id="b26"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c23">100%</td><td class="bar" id="d26"/><td class="ctr2" id="e26">n/a</td><td class="ctr1" id="f26">0</td><td class="ctr2" id="g26">1</td><td class="ctr1" id="h26">0</td><td class="ctr2" id="i26">1</td><td class="ctr1" id="j26">0</td><td class="ctr2" id="k26">1</td></tr><tr><td id="a44"><a href="Job.java.html#L27" class="el_method">setResourceTypes(String)</a></td><td class="bar" id="b27"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c24">100%</td><td class="bar" id="d27"/><td class="ctr2" id="e27">n/a</td><td class="ctr1" id="f27">0</td><td class="ctr2" id="g27">1</td><td class="ctr1" id="h27">0</td><td class="ctr2" id="i27">1</td><td class="ctr1" id="j27">0</td><td class="ctr2" id="k27">1</td></tr><tr><td id="a46"><a href="Job.java.html#L27" class="el_method">setSinceSource(SinceSource)</a></td><td class="bar" id="b28"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c25">100%</td><td class="bar" id="d28"/><td class="ctr2" id="e28">n/a</td><td class="ctr1" id="f28">0</td><td class="ctr2" id="g28">1</td><td class="ctr1" id="h28">0</td><td class="ctr2" id="i28">1</td><td class="ctr1" id="j28">0</td><td class="ctr2" id="k28">1</td></tr><tr><td id="a32"><a href="Job.java.html#L27" class="el_method">setContractNumber(String)</a></td><td class="bar" id="b29"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c26">100%</td><td class="bar" id="d29"/><td class="ctr2" id="e29">n/a</td><td class="ctr1" id="f29">0</td><td class="ctr2" id="g29">1</td><td class="ctr1" id="h29">0</td><td class="ctr2" id="i29">1</td><td class="ctr1" id="j29">0</td><td class="ctr2" id="k29">1</td></tr><tr><td id="a10"><a href="Job.java.html#L34" class="el_method">getId()</a></td><td class="bar" id="b30"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c27">100%</td><td class="bar" id="d30"/><td class="ctr2" id="e30">n/a</td><td class="ctr1" id="f30">0</td><td class="ctr2" id="g30">1</td><td class="ctr1" id="h30">0</td><td class="ctr2" id="i30">1</td><td class="ctr1" id="j30">0</td><td class="ctr2" id="k30">1</td></tr><tr><td id="a12"><a href="Job.java.html#L38" class="el_method">getJobUuid()</a></td><td class="bar" id="b31"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c28">100%</td><td class="bar" id="d31"/><td class="ctr2" id="e31">n/a</td><td class="ctr1" id="f31">0</td><td class="ctr2" id="g31">1</td><td class="ctr1" id="h31">0</td><td class="ctr2" id="i31">1</td><td class="ctr1" id="j31">0</td><td class="ctr2" id="k31">1</td></tr><tr><td id="a14"><a href="Job.java.html#L41" class="el_method">getOrganization()</a></td><td class="bar" id="b32"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c29">100%</td><td class="bar" id="d32"/><td class="ctr2" id="e32">n/a</td><td class="ctr1" id="f32">0</td><td class="ctr2" id="g32">1</td><td class="ctr1" id="h32">0</td><td class="ctr2" id="i32">1</td><td class="ctr1" id="j32">0</td><td class="ctr2" id="k32">1</td></tr><tr><td id="a11"><a href="Job.java.html#L49" class="el_method">getJobOutputs()</a></td><td class="bar" id="b33"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c30">100%</td><td class="bar" id="d33"/><td class="ctr2" id="e33">n/a</td><td class="ctr1" id="f33">0</td><td class="ctr2" id="g33">1</td><td class="ctr1" id="h33">0</td><td class="ctr2" id="i33">1</td><td class="ctr1" id="j33">0</td><td class="ctr2" id="k33">1</td></tr><tr><td id="a7"><a href="Job.java.html#L53" class="el_method">getCreatedAt()</a></td><td class="bar" id="b34"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c31">100%</td><td class="bar" id="d34"/><td class="ctr2" id="e34">n/a</td><td class="ctr1" id="f34">0</td><td class="ctr2" id="g34">1</td><td class="ctr1" id="h34">0</td><td class="ctr2" id="i34">1</td><td class="ctr1" id="j34">0</td><td class="ctr2" id="k34">1</td></tr><tr><td id="a5"><a href="Job.java.html#L56" class="el_method">getCompletedAt()</a></td><td class="bar" id="b35"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c32">100%</td><td class="bar" id="d35"/><td class="ctr2" id="e35">n/a</td><td class="ctr1" id="f35">0</td><td class="ctr2" id="g35">1</td><td class="ctr1" id="h35">0</td><td class="ctr2" id="i35">1</td><td class="ctr1" id="j35">0</td><td class="ctr2" id="k35">1</td></tr><tr><td id="a17"><a href="Job.java.html#L58" class="el_method">getRequestUrl()</a></td><td class="bar" id="b36"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c33">100%</td><td class="bar" id="d36"/><td class="ctr2" id="e36">n/a</td><td class="ctr1" id="f36">0</td><td class="ctr2" id="g36">1</td><td class="ctr1" id="h36">0</td><td class="ctr2" id="i36">1</td><td class="ctr1" id="j36">0</td><td class="ctr2" id="k36">1</td></tr><tr><td id="a22"><a href="Job.java.html#L62" class="el_method">getStatus()</a></td><td class="bar" id="b37"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c34">100%</td><td class="bar" id="d37"/><td class="ctr2" id="e37">n/a</td><td class="ctr1" id="f37">0</td><td class="ctr2" id="g37">1</td><td class="ctr1" id="h37">0</td><td class="ctr2" id="i37">1</td><td class="ctr1" id="j37">0</td><td class="ctr2" id="k37">1</td></tr><tr><td id="a23"><a href="Job.java.html#L63" class="el_method">getStatusMessage()</a></td><td class="bar" id="b38"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c35">100%</td><td class="bar" id="d38"/><td class="ctr2" id="e38">n/a</td><td class="ctr1" id="f38">0</td><td class="ctr2" id="g38">1</td><td class="ctr1" id="h38">0</td><td class="ctr2" id="i38">1</td><td class="ctr1" id="j38">0</td><td class="ctr2" id="k38">1</td></tr><tr><td id="a15"><a href="Job.java.html#L64" class="el_method">getOutputFormat()</a></td><td class="bar" id="b39"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c36">100%</td><td class="bar" id="d39"/><td class="ctr2" id="e39">n/a</td><td class="ctr1" id="f39">0</td><td class="ctr2" id="g39">1</td><td class="ctr1" id="h39">0</td><td class="ctr2" id="i39">1</td><td class="ctr1" id="j39">0</td><td class="ctr2" id="k39">1</td></tr><tr><td id="a16"><a href="Job.java.html#L65" class="el_method">getProgress()</a></td><td class="bar" id="b40"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c37">100%</td><td class="bar" id="d40"/><td class="ctr2" id="e40">n/a</td><td class="ctr1" id="f40">0</td><td class="ctr2" id="g40">1</td><td class="ctr1" id="h40">0</td><td class="ctr2" id="i40">1</td><td class="ctr1" id="j40">0</td><td class="ctr2" id="k40">1</td></tr><tr><td id="a9"><a href="Job.java.html#L68" class="el_method">getFhirVersion()</a></td><td class="bar" id="b41"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c38">100%</td><td class="bar" id="d41"/><td class="ctr2" id="e41">n/a</td><td class="ctr1" id="f41">0</td><td class="ctr2" id="g41">1</td><td class="ctr1" id="h41">0</td><td class="ctr2" id="i41">1</td><td class="ctr1" id="j41">0</td><td class="ctr2" id="k41">1</td></tr><tr><td id="a13"><a href="Job.java.html#L71" class="el_method">getLastPollTime()</a></td><td class="bar" id="b42"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c39">100%</td><td class="bar" id="d42"/><td class="ctr2" id="e42">n/a</td><td class="ctr1" id="f42">0</td><td class="ctr2" id="g42">1</td><td class="ctr1" id="h42">0</td><td class="ctr2" id="i42">1</td><td class="ctr1" id="j42">0</td><td class="ctr2" id="k42">1</td></tr><tr><td id="a19"><a href="Job.java.html#L74" class="el_method">getSince()</a></td><td class="bar" id="b43"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c40">100%</td><td class="bar" id="d43"/><td class="ctr2" id="e43">n/a</td><td class="ctr1" id="f43">0</td><td class="ctr2" id="g43">1</td><td class="ctr1" id="h43">0</td><td class="ctr2" id="i43">1</td><td class="ctr1" id="j43">0</td><td class="ctr2" id="k43">1</td></tr><tr><td id="a24"><a href="Job.java.html#L77" class="el_method">getUntil()</a></td><td class="bar" id="b44"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c41">100%</td><td class="bar" id="d44"/><td class="ctr2" id="e44">n/a</td><td class="ctr1" id="f44">0</td><td class="ctr2" id="g44">1</td><td class="ctr1" id="h44">0</td><td class="ctr2" id="i44">1</td><td class="ctr1" id="j44">0</td><td class="ctr2" id="k44">1</td></tr><tr><td id="a8"><a href="Job.java.html#L80" class="el_method">getExpiresAt()</a></td><td class="bar" id="b45"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c42">100%</td><td class="bar" id="d45"/><td class="ctr2" id="e45">n/a</td><td class="ctr1" id="f45">0</td><td class="ctr2" id="g45">1</td><td class="ctr1" id="h45">0</td><td class="ctr2" id="i45">1</td><td class="ctr1" id="j45">0</td><td class="ctr2" id="k45">1</td></tr><tr><td id="a18"><a href="Job.java.html#L83" class="el_method">getResourceTypes()</a></td><td class="bar" id="b46"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c43">100%</td><td class="bar" id="d46"/><td class="ctr2" id="e46">n/a</td><td class="ctr1" id="f46">0</td><td class="ctr2" id="g46">1</td><td class="ctr1" id="h46">0</td><td class="ctr2" id="i46">1</td><td class="ctr1" id="j46">0</td><td class="ctr2" id="k46">1</td></tr><tr><td id="a21"><a href="Job.java.html#L88" class="el_method">getStartedBy()</a></td><td class="bar" id="b47"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c44">100%</td><td class="bar" id="d47"/><td class="ctr2" id="e47">n/a</td><td class="ctr1" id="f47">0</td><td class="ctr2" id="g47">1</td><td class="ctr1" id="h47">0</td><td class="ctr2" id="i47">1</td><td class="ctr1" id="j47">0</td><td class="ctr2" id="k47">1</td></tr><tr><td id="a20"><a href="Job.java.html#L91" class="el_method">getSinceSource()</a></td><td class="bar" id="b48"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c45">100%</td><td class="bar" id="d48"/><td class="ctr2" id="e48">n/a</td><td class="ctr1" id="f48">0</td><td class="ctr2" id="g48">1</td><td class="ctr1" id="h48">0</td><td class="ctr2" id="i48">1</td><td class="ctr1" id="j48">0</td><td class="ctr2" id="k48">1</td></tr><tr><td id="a6"><a href="Job.java.html#L94" class="el_method">getContractNumber()</a></td><td class="bar" id="b49"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c46">100%</td><td class="bar" id="d49"/><td class="ctr2" id="e49">n/a</td><td class="ctr1" id="f49">0</td><td class="ctr2" id="g49">1</td><td class="ctr1" id="h49">0</td><td class="ctr2" id="i49">1</td><td class="ctr1" id="j49">0</td><td class="ctr2" id="k49">1</td></tr><tr><td id="a3"><a href="Job.java.html#L28" class="el_method">canEqual(Object)</a></td><td class="bar" id="b50"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c47">100%</td><td class="bar" id="d50"/><td class="ctr2" id="e50">n/a</td><td class="ctr1" id="f50">0</td><td class="ctr2" id="g50">1</td><td class="ctr1" id="h50">0</td><td class="ctr2" id="i50">1</td><td class="ctr1" id="j50">0</td><td class="ctr2" id="k50">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/Job.java.html b/job/jacoco/gov.cms.ab2d.job.model/Job.java.html
    deleted file mode 100644
    index bb42a02c5..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/Job.java.html
    +++ /dev/null
    @@ -1,129 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>Job.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_source">Job.java</span></div><h1>Job.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.model;
    -
    -import gov.cms.ab2d.common.model.SinceSource;
    -import gov.cms.ab2d.common.model.TooFrequentInvocations;
    -import gov.cms.ab2d.eventclient.events.FileEvent;
    -import gov.cms.ab2d.eventclient.events.JobStatusChangeEvent;
    -import gov.cms.ab2d.fhir.FhirVersion;
    -import lombok.EqualsAndHashCode;
    -import lombok.Getter;
    -import lombok.Setter;
    -
    -import javax.persistence.*;
    -import javax.validation.constraints.NotNull;
    -import javax.validation.constraints.Pattern;
    -import java.io.File;
    -import java.time.OffsetDateTime;
    -import java.util.ArrayList;
    -import java.util.List;
    -
    -import static gov.cms.ab2d.job.model.JobStatus.CANCELLED;
    -import static gov.cms.ab2d.fhir.BundleUtils.EOB;
    -import static gov.cms.ab2d.fhir.FhirVersion.STU3;
    -import static javax.persistence.EnumType.STRING;
    -
    -@Entity
    -@Getter
    -<span class="pc" id="L27">@Setter</span>
    -<span class="pc bpc" id="L28" title="6 of 14 branches missed.">@EqualsAndHashCode(onlyExplicitlyIncluded = true)</span>
    -<span class="fc" id="L29">public class Job {</span>
    -
    -    @Id
    -    @GeneratedValue
    -    @EqualsAndHashCode.Include
    -<span class="fc" id="L34">    private Long id;</span>
    -
    -    @Column(unique = true)
    -    @NotNull
    -<span class="fc" id="L38">    private String jobUuid;</span>
    -
    -    @NotNull
    -<span class="fc" id="L41">    private String organization;</span>
    -
    -<span class="fc" id="L43">    @OneToMany(</span>
    -            mappedBy = &quot;job&quot;,
    -            cascade = CascadeType.ALL,
    -            orphanRemoval = true,
    -            fetch = FetchType.EAGER
    -    )
    -<span class="fc" id="L49">    private List&lt;JobOutput&gt; jobOutputs = new ArrayList&lt;&gt;();</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -    @NotNull
    -<span class="fc" id="L53">    private OffsetDateTime createdAt;</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -<span class="fc" id="L56">    private OffsetDateTime completedAt;</span>
    -
    -<span class="fc" id="L58">    private String requestUrl;</span>
    -
    -    @Enumerated(STRING)
    -    @NotNull
    -<span class="fc" id="L62">    private JobStatus status;</span>
    -<span class="fc" id="L63">    private String statusMessage;</span>
    -<span class="fc" id="L64">    private String outputFormat;</span>
    -<span class="fc" id="L65">    private Integer progress;</span>
    -
    -<span class="fc" id="L67">    @Enumerated(STRING)</span>
    -<span class="fc" id="L68">    private FhirVersion fhirVersion = STU3;</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -<span class="fc" id="L71">    private OffsetDateTime lastPollTime;</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -<span class="fc" id="L74">    private OffsetDateTime since;</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -<span class="fc" id="L77">    private OffsetDateTime until;</span>
    -
    -    @Column(columnDefinition = &quot;TIMESTAMP WITH TIME ZONE&quot;)
    -<span class="fc" id="L80">    private OffsetDateTime expiresAt;</span>
    -
    -    @Pattern(regexp = EOB, message = &quot;_type should be ExplanationOfBenefit&quot;)
    -<span class="fc" id="L83">    private String resourceTypes; // for now just limited to ExplanationOfBenefit</span>
    -
    -    // Default a job to started by a PDP and only override if necessary
    -<span class="fc" id="L86">    @Enumerated(STRING)</span>
    -    @NotNull
    -<span class="fc" id="L88">    private JobStartedBy startedBy = JobStartedBy.PDP;</span>
    -
    -    @Enumerated(STRING)
    -<span class="fc" id="L91">    private SinceSource sinceSource;</span>
    -
    -    @NotNull
    -<span class="fc" id="L94">    private String contractNumber;</span>
    -
    -    public void addJobOutput(JobOutput jobOutput) {
    -<span class="fc" id="L97">        jobOutputs.add(jobOutput);</span>
    -<span class="fc" id="L98">        jobOutput.setJob(this);</span>
    -<span class="fc" id="L99">    }</span>
    -
    -    public boolean hasJobBeenCancelled() {
    -<span class="fc bfc" id="L102" title="All 2 branches covered.">        return CANCELLED == status;</span>
    -    }
    -
    -    public void pollAndUpdateTime(int delaySeconds) {
    -<span class="fc bfc" id="L106" title="All 2 branches covered.">        if (pollingTooMuch(delaySeconds)) {</span>
    -<span class="fc" id="L107">            throw new TooFrequentInvocations(&quot;polling too frequently&quot;);</span>
    -        }
    -<span class="fc" id="L109">        lastPollTime = OffsetDateTime.now();</span>
    -<span class="fc" id="L110">    }</span>
    -
    -    public boolean isExpired(int ttlHours) {
    -<span class="fc" id="L113">        return status.isExpired(completedAt, ttlHours);</span>
    -    }
    -
    -    private boolean pollingTooMuch(int delaySeconds) {
    -<span class="pc bpc" id="L117" title="1 of 4 branches missed.">        return lastPollTime != null &amp;&amp; lastPollTime.plusSeconds(delaySeconds).isAfter(OffsetDateTime.now());</span>
    -    }
    -
    -    public JobStatusChangeEvent buildJobStatusChangeEvent(JobStatus newStatus, String statusMessage) {
    -<span class="fc bfc" id="L121" title="All 2 branches covered.">        final String oldStatus = (status == null) ? null : status.name();</span>
    -<span class="fc" id="L122">        return new JobStatusChangeEvent(organization, jobUuid, oldStatus, newStatus.name(), statusMessage);</span>
    -    }
    -
    -    public FileEvent buildFileEvent(File file, FileEvent.FileStatus status) {
    -<span class="nc" id="L126">        return new FileEvent(organization, jobUuid, file, status);</span>
    -    }
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html
    deleted file mode 100644
    index 5caffc2f0..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutput</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobOutput</span></div><h1>JobOutput</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">38 of 130</td><td class="ctr2">70%</td><td class="bar">9 of 14</td><td class="ctr2">35%</td><td class="ctr1">10</td><td class="ctr2">29</td><td class="ctr1">1</td><td class="ctr2">13</td><td class="ctr1">3</td><td class="ctr2">22</td></tr></tfoot><tbody><tr><td id="a11"><a href="JobOutput.java.html#L19" class="el_method">hashCode()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="63" height="10" title="20" alt="20"/></td><td class="ctr2" id="c19">0%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e1">0%</td><td class="ctr1" id="f1">2</td><td class="ctr2" id="g1">2</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="JobOutput.java.html#L19" class="el_method">equals(Object)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="11" alt="11"/><img src="../jacoco-resources/greenbar.gif" width="85" height="10" title="27" alt="27"/></td><td class="ctr2" id="c18">71%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="70" height="10" title="7" alt="7"/><img src="../jacoco-resources/greenbar.gif" width="50" height="10" title="5" alt="5"/></td><td class="ctr2" id="e0">41%</td><td class="ctr1" id="f0">6</td><td class="ctr2" id="g0">7</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a19"><a href="JobOutput.java.html#L18" class="el_method">setId(Long)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c20">0%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a10"><a href="JobOutput.java.html#L50" class="el_method">getLastDownloadAt()</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c21">0%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a12"><a href="JobOutput.java.html#L20" class="el_method">JobOutput()</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="18" height="10" title="6" alt="6"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a20"><a href="JobOutput.java.html#L18" class="el_method">setJob(Job)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a18"><a href="JobOutput.java.html#L18" class="el_method">setFilePath(String)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a16"><a href="JobOutput.java.html#L18" class="el_method">setFhirResourceType(String)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a15"><a href="JobOutput.java.html#L18" class="el_method">setError(Boolean)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a14"><a href="JobOutput.java.html#L18" class="el_method">setDownloaded(int)</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a13"><a href="JobOutput.java.html#L18" class="el_method">setChecksum(String)</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a17"><a href="JobOutput.java.html#L18" class="el_method">setFileLength(Long)</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c7">100%</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a21"><a href="JobOutput.java.html#L18" class="el_method">setLastDownloadAt(OffsetDateTime)</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="12" height="10" title="4" alt="4"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a8"><a href="JobOutput.java.html#L25" class="el_method">getId()</a></td><td class="bar" id="b13"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c9">100%</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k13">1</td></tr><tr><td id="a9"><a href="JobOutput.java.html#L30" class="el_method">getJob()</a></td><td class="bar" id="b14"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c10">100%</td><td class="bar" id="d14"/><td class="ctr2" id="e14">n/a</td><td class="ctr1" id="f14">0</td><td class="ctr2" id="g14">1</td><td class="ctr1" id="h14">0</td><td class="ctr2" id="i14">1</td><td class="ctr1" id="j14">0</td><td class="ctr2" id="k14">1</td></tr><tr><td id="a7"><a href="JobOutput.java.html#L34" class="el_method">getFilePath()</a></td><td class="bar" id="b15"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c11">100%</td><td class="bar" id="d15"/><td class="ctr2" id="e15">n/a</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g15">1</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i15">1</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k15">1</td></tr><tr><td id="a5"><a href="JobOutput.java.html#L36" class="el_method">getFhirResourceType()</a></td><td class="bar" id="b16"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c12">100%</td><td class="bar" id="d16"/><td class="ctr2" id="e16">n/a</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g16">1</td><td class="ctr1" id="h16">0</td><td class="ctr2" id="i16">1</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k16">1</td></tr><tr><td id="a4"><a href="JobOutput.java.html#L39" class="el_method">getError()</a></td><td class="bar" id="b17"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c13">100%</td><td class="bar" id="d17"/><td class="ctr2" id="e17">n/a</td><td class="ctr1" id="f17">0</td><td class="ctr2" id="g17">1</td><td class="ctr1" id="h17">0</td><td class="ctr2" id="i17">1</td><td class="ctr1" id="j17">0</td><td class="ctr2" id="k17">1</td></tr><tr><td id="a3"><a href="JobOutput.java.html#L42" class="el_method">getDownloaded()</a></td><td class="bar" id="b18"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c14">100%</td><td class="bar" id="d18"/><td class="ctr2" id="e18">n/a</td><td class="ctr1" id="f18">0</td><td class="ctr2" id="g18">1</td><td class="ctr1" id="h18">0</td><td class="ctr2" id="i18">1</td><td class="ctr1" id="j18">0</td><td class="ctr2" id="k18">1</td></tr><tr><td id="a2"><a href="JobOutput.java.html#L45" class="el_method">getChecksum()</a></td><td class="bar" id="b19"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c15">100%</td><td class="bar" id="d19"/><td class="ctr2" id="e19">n/a</td><td class="ctr1" id="f19">0</td><td class="ctr2" id="g19">1</td><td class="ctr1" id="h19">0</td><td class="ctr2" id="i19">1</td><td class="ctr1" id="j19">0</td><td class="ctr2" id="k19">1</td></tr><tr><td id="a6"><a href="JobOutput.java.html#L48" class="el_method">getFileLength()</a></td><td class="bar" id="b20"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c16">100%</td><td class="bar" id="d20"/><td class="ctr2" id="e20">n/a</td><td class="ctr1" id="f20">0</td><td class="ctr2" id="g20">1</td><td class="ctr1" id="h20">0</td><td class="ctr2" id="i20">1</td><td class="ctr1" id="j20">0</td><td class="ctr2" id="k20">1</td></tr><tr><td id="a0"><a href="JobOutput.java.html#L19" class="el_method">canEqual(Object)</a></td><td class="bar" id="b21"><img src="../jacoco-resources/greenbar.gif" width="9" height="10" title="3" alt="3"/></td><td class="ctr2" id="c17">100%</td><td class="bar" id="d21"/><td class="ctr2" id="e21">n/a</td><td class="ctr1" id="f21">0</td><td class="ctr2" id="g21">1</td><td class="ctr1" id="h21">0</td><td class="ctr2" id="i21">1</td><td class="ctr1" id="j21">0</td><td class="ctr2" id="k21">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html
    deleted file mode 100644
    index f3fc2a91d..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobOutput.java.html
    +++ /dev/null
    @@ -1,52 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutput.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_source">JobOutput.java</span></div><h1>JobOutput.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.model;
    -
    -import lombok.EqualsAndHashCode;
    -import lombok.Getter;
    -import lombok.Setter;
    -
    -import javax.persistence.Column;
    -import javax.persistence.Entity;
    -import javax.persistence.GeneratedValue;
    -import javax.persistence.Id;
    -import javax.persistence.JoinColumn;
    -import javax.persistence.ManyToOne;
    -import javax.validation.constraints.NotNull;
    -import java.time.OffsetDateTime;
    -
    -@Entity
    -@Getter
    -<span class="pc" id="L18">@Setter</span>
    -<span class="pc bpc" id="L19" title="9 of 14 branches missed.">@EqualsAndHashCode(onlyExplicitlyIncluded = true)</span>
    -<span class="fc" id="L20">public class JobOutput {</span>
    -
    -    @Id
    -    @GeneratedValue
    -    @EqualsAndHashCode.Include
    -<span class="fc" id="L25">    private Long id;</span>
    -
    -    @ManyToOne
    -    @JoinColumn(name = &quot;job_id&quot;)
    -    @NotNull
    -<span class="fc" id="L30">    private Job job;</span>
    -
    -    @Column(columnDefinition = &quot;text&quot;)
    -    @NotNull
    -<span class="fc" id="L34">    private String filePath;</span>
    -
    -<span class="fc" id="L36">    private String fhirResourceType;</span>
    -
    -    @NotNull
    -<span class="fc" id="L39">    private Boolean error;</span>
    -
    -<span class="fc" id="L41">    @NotNull</span>
    -<span class="fc" id="L42">    private int downloaded = 0;</span>
    -
    -    @NotNull
    -<span class="fc" id="L45">    private String checksum;</span>
    -
    -    @NotNull
    -<span class="fc" id="L48">    private Long fileLength;</span>
    -
    -<span class="nc" id="L50">    private OffsetDateTime lastDownloadAt;</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html
    deleted file mode 100644
    index d1de5c66f..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStartedBy</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStartedBy</span></div><h1>JobStartedBy</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 21</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">4</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobStartedBy.java.html#L3" class="el_method">static {...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="21" alt="21"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">4</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html
    deleted file mode 100644
    index d233fb314..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStartedBy.java.html
    +++ /dev/null
    @@ -1,8 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStartedBy.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_source">JobStartedBy.java</span></div><h1>JobStartedBy.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.model;
    -
    -<span class="fc" id="L3">public enum JobStartedBy {</span>
    -<span class="fc" id="L4">    PDP,</span>
    -<span class="fc" id="L5">    JENKINS,</span>
    -<span class="fc" id="L6">    DEVELOPER</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html
    deleted file mode 100644
    index e3da64152..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$1.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.new JobStatus() {...}</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus.new JobStatus() {...}</span></div><h1>JobStatus.new JobStatus() {...}</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">2 of 9</td><td class="ctr2">77%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobStatus.java.html#L15" class="el_method">isExpired(OffsetDateTime, int)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">0%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="JobStatus.java.html#L12" class="el_method">{...}</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html
    deleted file mode 100644
    index 99634e5f5..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$2.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.new JobStatus() {...}</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus.new JobStatus() {...}</span></div><h1>JobStatus.new JobStatus() {...}</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">2 of 9</td><td class="ctr2">77%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobStatus.java.html#L21" class="el_method">isExpired(OffsetDateTime, int)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">0%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="JobStatus.java.html#L18" class="el_method">{...}</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html
    deleted file mode 100644
    index 30b084b8b..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$3.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.new JobStatus() {...}</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus.new JobStatus() {...}</span></div><h1>JobStatus.new JobStatus() {...}</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 9</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobStatus.java.html#L24" class="el_method">{...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="JobStatus.java.html#L27" class="el_method">isExpired(OffsetDateTime, int)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="34" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html
    deleted file mode 100644
    index becf1d95f..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$4.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.new JobStatus() {...}</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus.new JobStatus() {...}</span></div><h1>JobStatus.new JobStatus() {...}</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">15 of 22</td><td class="ctr2">31%</td><td class="bar">2 of 2</td><td class="ctr2">0%</td><td class="ctr1">2</td><td class="ctr2">3</td><td class="ctr1">4</td><td class="ctr2">5</td><td class="ctr1">1</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobStatus.java.html#L34" class="el_method">isExpired(OffsetDateTime, int)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="15" alt="15"/></td><td class="ctr2" id="c1">0%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">0%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">2</td><td class="ctr1" id="h0">4</td><td class="ctr2" id="i0">4</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="JobStatus.java.html#L30" class="el_method">{...}</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="56" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html
    deleted file mode 100644
    index 4953bbc00..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus$5.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.new JobStatus() {...}</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus.new JobStatus() {...}</span></div><h1>JobStatus.new JobStatus() {...}</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">2 of 9</td><td class="ctr2">77%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td><td class="ctr1">1</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobStatus.java.html#L44" class="el_method">isExpired(OffsetDateTime, int)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="34" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">0%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="JobStatus.java.html#L41" class="el_method">{...}</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html
    deleted file mode 100644
    index d1bb4b806..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_class">JobStatus</span></div><h1>JobStatus</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">3 of 60</td><td class="ctr2">95%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">1</td><td class="ctr2">4</td><td class="ctr1">1</td><td class="ctr2">12</td><td class="ctr1">1</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobStatus.java.html#L50" class="el_method">isFinished()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="8" height="10" title="3" alt="3"/></td><td class="ctr2" id="c3">0%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a3"><a href="JobStatus.java.html#L9" class="el_method">static {...}</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="43" alt="43"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i0">6</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="JobStatus.java.html#L52" class="el_method">JobStatus(String, int, boolean, boolean)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="30" height="10" title="11" alt="11"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a0"><a href="JobStatus.java.html#L48" class="el_method">isCancellable()</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="3" alt="3"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html b/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html
    deleted file mode 100644
    index 7190610ab..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/JobStatus.java.html
    +++ /dev/null
    @@ -1,59 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobStatus.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.model</a> &gt; <span class="el_source">JobStatus.java</span></div><h1>JobStatus.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.model;
    -
    -import lombok.Getter;
    -
    -import java.time.Instant;
    -import java.time.OffsetDateTime;
    -import java.time.temporal.ChronoUnit;
    -
    -<span class="fc" id="L9">@Getter</span>
    -public enum JobStatus {
    -
    -<span class="fc" id="L12">    SUBMITTED(true, false) {</span>
    -        @Override
    -        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
    -<span class="nc" id="L15">            return false;</span>
    -        }
    -    },
    -<span class="fc" id="L18">    IN_PROGRESS(true, false) {</span>
    -        @Override
    -        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
    -<span class="nc" id="L21">            return false;</span>
    -        }
    -    },
    -<span class="fc" id="L24">    FAILED(false, true) {</span>
    -        @Override
    -        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
    -<span class="fc" id="L27">            return true;</span>
    -        }
    -    },
    -<span class="fc" id="L30">    SUCCESSFUL(false, true) {</span>
    -        @Override
    -        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
    -            // This really should be an assert as if a job is successful, it should have a completion timestamp.
    -<span class="nc bnc" id="L34" title="All 2 branches missed.">            if (completedAt == null) {</span>
    -<span class="nc" id="L35">                return false;</span>
    -            }
    -<span class="nc" id="L37">            Instant deleteBoundary = Instant.now().minus(ttlHours, ChronoUnit.HOURS);</span>
    -<span class="nc" id="L38">            return completedAt.toInstant().isBefore(deleteBoundary);</span>
    -        }
    -    },
    -<span class="fc" id="L41">    CANCELLED(false, true) {</span>
    -        @Override
    -        public boolean isExpired(OffsetDateTime completedAt, int ttlHours) {
    -<span class="nc" id="L44">            return true;</span>
    -        }
    -    };
    -
    -<span class="fc" id="L48">    private final boolean isCancellable;</span>
    -
    -<span class="nc" id="L50">    private final boolean isFinished;</span>
    -
    -<span class="fc" id="L52">    JobStatus(boolean isCancellable, boolean isFinished) {</span>
    -<span class="fc" id="L53">        this.isCancellable = isCancellable;</span>
    -<span class="fc" id="L54">        this.isFinished = isFinished;</span>
    -<span class="fc" id="L55">    }</span>
    -
    -    public abstract boolean isExpired(OffsetDateTime completedAt, int ttlHours);
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/index.html b/job/jacoco/gov.cms.ab2d.job.model/index.html
    deleted file mode 100644
    index 2bd059484..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/index.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.model</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.model</span></div><h1>gov.cms.ab2d.job.model</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">85 of 567</td><td class="ctr2">85%</td><td class="bar">18 of 40</td><td class="ctr2">55%</td><td class="ctr1">24</td><td class="ctr2">108</td><td class="ctr1">10</td><td class="ctr2">76</td><td class="ctr1">10</td><td class="ctr2">88</td><td class="ctr1">0</td><td class="ctr2">9</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobOutput.html" class="el_class">JobOutput</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="38" alt="38"/><img src="../jacoco-resources/greenbar.gif" width="37" height="10" title="92" alt="92"/></td><td class="ctr2" id="c7">70%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="45" height="10" title="9" alt="9"/><img src="../jacoco-resources/greenbar.gif" width="25" height="10" title="5" alt="5"/></td><td class="ctr2" id="e1">35%</td><td class="ctr1" id="f0">10</td><td class="ctr2" id="g1">29</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i1">13</td><td class="ctr1" id="j0">3</td><td class="ctr2" id="k1">22</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="Job.html" class="el_class">Job</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="23" alt="23"/><img src="../jacoco-resources/greenbar.gif" width="110" height="10" title="275" alt="275"/></td><td class="ctr2" id="c3">92%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="35" height="10" title="7" alt="7"/><img src="../jacoco-resources/greenbar.gif" width="85" height="10" title="17" alt="17"/></td><td class="ctr2" id="e0">70%</td><td class="ctr1" id="f1">8</td><td class="ctr2" id="g0">63</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i0">39</td><td class="ctr1" id="j1">2</td><td class="ctr2" id="k0">51</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a4"><a href="JobStatus$4.html" class="el_class">JobStatus.new JobStatus() {...}</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="6" height="10" title="15" alt="15"/><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="7" alt="7"/></td><td class="ctr2" id="c8">31%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="10" height="10" title="2" alt="2"/></td><td class="ctr2" id="e2">0%</td><td class="ctr1" id="f2">2</td><td class="ctr2" id="g3">3</td><td class="ctr1" id="h0">4</td><td class="ctr2" id="i3">5</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k3">2</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a3"><a href="JobStatus.html" class="el_class">JobStatus</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="1" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="22" height="10" title="57" alt="57"/></td><td class="ctr2" id="c2">95%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g2">4</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i2">12</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k2">4</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a5"><a href="JobStatus$5.html" class="el_class">JobStatus.new JobStatus() {...}</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="7" alt="7"/></td><td class="ctr2" id="c4">77%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">1</td><td class="ctr2" id="g4">2</td><td class="ctr1" id="h4">1</td><td class="ctr2" id="i5">2</td><td class="ctr1" id="j4">1</td><td class="ctr2" id="k4">2</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr><tr><td id="a6"><a href="JobStatus$2.html" class="el_class">JobStatus.new JobStatus() {...}</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="7" alt="7"/></td><td class="ctr2" id="c5">77%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">1</td><td class="ctr2" id="g5">2</td><td class="ctr1" id="h5">1</td><td class="ctr2" id="i6">2</td><td class="ctr1" id="j5">1</td><td class="ctr2" id="k5">2</td><td class="ctr1" id="l5">0</td><td class="ctr2" id="m5">1</td></tr><tr><td id="a7"><a href="JobStatus$1.html" class="el_class">JobStatus.new JobStatus() {...}</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="7" alt="7"/></td><td class="ctr2" id="c6">77%</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">1</td><td class="ctr2" id="g6">2</td><td class="ctr1" id="h6">1</td><td class="ctr2" id="i7">2</td><td class="ctr1" id="j6">1</td><td class="ctr2" id="k6">2</td><td class="ctr1" id="l6">0</td><td class="ctr2" id="m6">1</td></tr><tr><td id="a2"><a href="JobStartedBy.html" class="el_class">JobStartedBy</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="21" alt="21"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i4">4</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k8">1</td><td class="ctr1" id="l7">0</td><td class="ctr2" id="m7">1</td></tr><tr><td id="a8"><a href="JobStatus$3.html" class="el_class">JobStatus.new JobStatus() {...}</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="3" height="10" title="9" alt="9"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g7">2</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i8">2</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k7">2</td><td class="ctr1" id="l8">0</td><td class="ctr2" id="m8">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.model/index.source.html b/job/jacoco/gov.cms.ab2d.job.model/index.source.html
    deleted file mode 100644
    index bb96de963..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.model/index.source.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.model</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.model</span></div><h1>gov.cms.ab2d.job.model</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">85 of 567</td><td class="ctr2">85%</td><td class="bar">18 of 40</td><td class="ctr2">55%</td><td class="ctr1">24</td><td class="ctr2">108</td><td class="ctr1">10</td><td class="ctr2">76</td><td class="ctr1">10</td><td class="ctr2">88</td><td class="ctr1">0</td><td class="ctr2">9</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobOutput.java.html" class="el_source">JobOutput.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="38" alt="38"/><img src="../jacoco-resources/greenbar.gif" width="37" height="10" title="92" alt="92"/></td><td class="ctr2" id="c3">70%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="45" height="10" title="9" alt="9"/><img src="../jacoco-resources/greenbar.gif" width="25" height="10" title="5" alt="5"/></td><td class="ctr2" id="e1">35%</td><td class="ctr1" id="f0">10</td><td class="ctr2" id="g1">29</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i2">13</td><td class="ctr1" id="j1">3</td><td class="ctr2" id="k1">22</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a3"><a href="JobStatus.java.html" class="el_source">JobStatus.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="24" alt="24"/><img src="../jacoco-resources/greenbar.gif" width="37" height="10" title="94" alt="94"/></td><td class="ctr2" id="c2">79%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="10" height="10" title="2" alt="2"/></td><td class="ctr2" id="e2">0%</td><td class="ctr1" id="f2">6</td><td class="ctr2" id="g2">15</td><td class="ctr1" id="h0">8</td><td class="ctr2" id="i1">20</td><td class="ctr1" id="j0">5</td><td class="ctr2" id="k2">14</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m0">6</td></tr><tr><td id="a0"><a href="Job.java.html" class="el_source">Job.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="23" alt="23"/><img src="../jacoco-resources/greenbar.gif" width="110" height="10" title="275" alt="275"/></td><td class="ctr2" id="c1">92%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="35" height="10" title="7" alt="7"/><img src="../jacoco-resources/greenbar.gif" width="85" height="10" title="17" alt="17"/></td><td class="ctr2" id="e0">70%</td><td class="ctr1" id="f1">8</td><td class="ctr2" id="g0">63</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i0">39</td><td class="ctr1" id="j2">2</td><td class="ctr2" id="k0">51</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a2"><a href="JobStartedBy.java.html" class="el_source">JobStartedBy.java</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="21" alt="21"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">4</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html
    deleted file mode 100644
    index d6a8a25eb..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>InvalidJobAccessException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_class">InvalidJobAccessException</span></div><h1>InvalidJobAccessException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 4</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="InvalidJobAccessException.java.html#L6" class="el_method">InvalidJobAccessException(String)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="4" alt="4"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html
    deleted file mode 100644
    index dbb3ef1cc..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobAccessException.java.html
    +++ /dev/null
    @@ -1,9 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>InvalidJobAccessException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_source">InvalidJobAccessException.java</span></div><h1>InvalidJobAccessException.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.service;
    -
    -public class InvalidJobAccessException extends RuntimeException {
    -
    -    public InvalidJobAccessException(String msg) {
    -<span class="fc" id="L6">        super(msg);</span>
    -<span class="fc" id="L7">    }</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html
    deleted file mode 100644
    index 982d6963a..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>InvalidJobStateTransition</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_class">InvalidJobStateTransition</span></div><h1>InvalidJobStateTransition</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 4</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="InvalidJobStateTransition.java.html#L6" class="el_method">InvalidJobStateTransition(String)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="4" alt="4"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html b/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html
    deleted file mode 100644
    index 60df3ed4b..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/InvalidJobStateTransition.java.html
    +++ /dev/null
    @@ -1,9 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>InvalidJobStateTransition.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_source">InvalidJobStateTransition.java</span></div><h1>InvalidJobStateTransition.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.service;
    -
    -public class InvalidJobStateTransition extends RuntimeException {
    -
    -    public InvalidJobStateTransition(String msg) {
    -<span class="fc" id="L6">        super(msg);</span>
    -<span class="fc" id="L7">    }</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html
    deleted file mode 100644
    index 1b03ef38a..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutputMissingException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_class">JobOutputMissingException</span></div><h1>JobOutputMissingException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 4</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobOutputMissingException.java.html#L6" class="el_method">JobOutputMissingException(String)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="4" alt="4"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html
    deleted file mode 100644
    index 8ea9069f8..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobOutputMissingException.java.html
    +++ /dev/null
    @@ -1,9 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutputMissingException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_source">JobOutputMissingException.java</span></div><h1>JobOutputMissingException.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.service;
    -
    -public class JobOutputMissingException extends RuntimeException {
    -
    -    public JobOutputMissingException(String msg) {
    -<span class="fc" id="L6">        super(msg);</span>
    -<span class="fc" id="L7">    }</span>
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html
    deleted file mode 100644
    index 2f3c40fe5..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutputServiceImpl</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_class">JobOutputServiceImpl</span></div><h1>JobOutputServiceImpl</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 41</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">5</td><td class="ctr1">0</td><td class="ctr2">7</td><td class="ctr1">0</td><td class="ctr2">5</td></tr></tfoot><tbody><tr><td id="a2"><a href="JobOutputServiceImpl.java.html#L26" class="el_method">lambda$findByFilePathAndJob$0(String, Job)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="14" alt="14"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">3</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="JobOutputServiceImpl.java.html#L25" class="el_method">findByFilePathAndJob(String, Job)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="94" height="10" title="11" alt="11"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a4"><a href="JobOutputServiceImpl.java.html#L21" class="el_method">updateJobOutput(JobOutput)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="51" height="10" title="6" alt="6"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a1"><a href="JobOutputServiceImpl.java.html#L12" class="el_method">JobOutputServiceImpl(JobOutputRepository)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="51" height="10" title="6" alt="6"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a3"><a href="JobOutputServiceImpl.java.html#L13" class="el_method">static {...}</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="34" height="10" title="4" alt="4"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html
    deleted file mode 100644
    index 8996e6a44..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobOutputServiceImpl.java.html
    +++ /dev/null
    @@ -1,32 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobOutputServiceImpl.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_source">JobOutputServiceImpl.java</span></div><h1>JobOutputServiceImpl.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.service;
    -
    -import gov.cms.ab2d.job.model.Job;
    -import gov.cms.ab2d.job.model.JobOutput;
    -import gov.cms.ab2d.job.repository.JobOutputRepository;
    -import gov.cms.ab2d.common.service.ResourceNotFoundException;
    -import lombok.AllArgsConstructor;
    -import lombok.extern.slf4j.Slf4j;
    -import org.springframework.stereotype.Service;
    -import org.springframework.transaction.annotation.Transactional;
    -
    -<span class="fc" id="L12">@AllArgsConstructor</span>
    -<span class="fc" id="L13">@Slf4j</span>
    -@Service
    -@Transactional
    -public class JobOutputServiceImpl implements JobOutputService {
    -
    -    private final JobOutputRepository jobOutputRepository;
    -
    -    public JobOutput updateJobOutput(JobOutput jobOutput) {
    -<span class="fc" id="L21">        return jobOutputRepository.save(jobOutput);</span>
    -    }
    -
    -    public JobOutput findByFilePathAndJob(String fileName, Job job) {
    -<span class="fc" id="L25">        return jobOutputRepository.findByFilePathAndJob(fileName, job).orElseThrow(() -&gt; {</span>
    -<span class="fc" id="L26">            log.error(&quot;JobOutput with fileName {} was not able to be found for job {}&quot;, fileName, job.getJobUuid());</span>
    -<span class="fc" id="L27">            throw new ResourceNotFoundException(&quot;JobOutput with fileName &quot; + fileName + &quot; was not able to be found&quot; +</span>
    -<span class="fc" id="L28">                    &quot; for job &quot; + job.getJobUuid());</span>
    -        });
    -    }
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html
    deleted file mode 100644
    index 091b53670..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobServiceImpl</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_class">JobServiceImpl</span></div><h1>JobServiceImpl</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">18 of 420</td><td class="ctr2">95%</td><td class="bar">1 of 24</td><td class="ctr2">95%</td><td class="ctr1">2</td><td class="ctr2">28</td><td class="ctr1">3</td><td class="ctr2">94</td><td class="ctr1">1</td><td class="ctr2">16</td></tr></tfoot><tbody><tr><td id="a5"><a href="JobServiceImpl.java.html#L186" class="el_method">getActiveJobIds(String)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="17" height="10" title="14" alt="14"/></td><td class="ctr2" id="c15">0%</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h0">3</td><td class="ctr2" id="i9">3</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a13"><a href="JobServiceImpl.java.html#L193" class="el_method">poll(boolean, String, String, int)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="46" height="10" title="37" alt="37"/></td><td class="ctr2" id="c14">90%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="10" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="1" alt="1"/></td><td class="ctr2" id="e6">50%</td><td class="ctr1" id="f1">1</td><td class="ctr2" id="g1">2</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i3">6</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a8"><a href="JobServiceImpl.java.html#L127" class="el_method">getResourceForJob(String, String, String)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="96" alt="96"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="12" alt="12"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g0">7</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i0">23</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a4"><a href="JobServiceImpl.java.html#L56" class="el_method">createJob(StartJobDTO)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="115" height="10" title="92" alt="92"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d2"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e1">100%</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g2">2</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i1">20</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a1"><a href="JobServiceImpl.java.html#L84" class="el_method">cancelJob(String, String)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="50" height="10" title="40" alt="40"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d3"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e2">100%</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g3">2</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i2">9</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a9"><a href="JobServiceImpl.java.html#L166" class="el_method">incrementDownload(File, String)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="33" height="10" title="27" alt="27"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i4">6</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a6"><a href="JobServiceImpl.java.html#L97" class="el_method">getAuthorizedJobByJobUuid(String, String)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="23" height="10" title="19" alt="19"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d4"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e3">100%</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g4">2</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">5</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a7"><a href="JobServiceImpl.java.html#L110" class="el_method">getJobByJobUuid(String)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="23" height="10" title="19" alt="19"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d5"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e4">100%</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g5">2</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">5</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a10"><a href="JobServiceImpl.java.html#L47" class="el_method">JobServiceImpl(JobRepository, JobOutputService, SQSEventClient, String)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="18" height="10" title="15" alt="15"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i5">6</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a3"><a href="JobServiceImpl.java.html#L210" class="el_method">clientHasNeverCompletedJob(String)</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="18" height="10" title="15" alt="15"/></td><td class="ctr2" id="c7">100%</td><td class="bar" id="d6"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="2" alt="2"/></td><td class="ctr2" id="e5">100%</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g6">2</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i10">3</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a2"><a href="JobServiceImpl.java.html#L203" class="el_method">checkForExpiration(List, int)</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="15" height="10" title="12" alt="12"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i8">4</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a0"><a href="JobServiceImpl.java.html#L178" class="el_method">activeJobs(String)</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="8" alt="8"/></td><td class="ctr2" id="c9">100%</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">2</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a12"><a href="JobServiceImpl.java.html#L205" class="el_method">lambda$checkForExpiration$1(Job)</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="8" alt="8"/></td><td class="ctr2" id="c10">100%</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a15"><a href="JobServiceImpl.java.html#L122" class="el_method">updateJob(Job)</a></td><td class="bar" id="b13"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="6" alt="6"/></td><td class="ctr2" id="c11">100%</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k13">1</td></tr><tr><td id="a11"><a href="JobServiceImpl.java.html#L204" class="el_method">lambda$checkForExpiration$0(int, Job)</a></td><td class="bar" id="b14"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="4" alt="4"/></td><td class="ctr2" id="c12">100%</td><td class="bar" id="d14"/><td class="ctr2" id="e14">n/a</td><td class="ctr1" id="f14">0</td><td class="ctr2" id="g14">1</td><td class="ctr1" id="h14">0</td><td class="ctr2" id="i14">1</td><td class="ctr1" id="j14">0</td><td class="ctr2" id="k14">1</td></tr><tr><td id="a14"><a href="JobServiceImpl.java.html#L33" class="el_method">static {...}</a></td><td class="bar" id="b15"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="4" alt="4"/></td><td class="ctr2" id="c13">100%</td><td class="bar" id="d15"/><td class="ctr2" id="e15">n/a</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g15">1</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i15">1</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k15">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html b/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html
    deleted file mode 100644
    index 846b6359a..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/JobServiceImpl.java.html
    +++ /dev/null
    @@ -1,215 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobServiceImpl.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.service</a> &gt; <span class="el_source">JobServiceImpl.java</span></div><h1>JobServiceImpl.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.service;
    -
    -import gov.cms.ab2d.common.service.ResourceNotFoundException;
    -import gov.cms.ab2d.eventclient.clients.SQSEventClient;
    -import gov.cms.ab2d.eventclient.config.Ab2dEnvironment;
    -import gov.cms.ab2d.eventclient.events.SlackEvents;
    -import gov.cms.ab2d.job.dto.JobPollResult;
    -import gov.cms.ab2d.job.dto.StaleJob;
    -import gov.cms.ab2d.job.dto.StartJobDTO;
    -import gov.cms.ab2d.job.model.Job;
    -import gov.cms.ab2d.job.model.JobOutput;
    -import gov.cms.ab2d.job.model.JobStatus;
    -import gov.cms.ab2d.job.repository.JobRepository;
    -import java.io.File;
    -import java.net.MalformedURLException;
    -import java.nio.file.Path;
    -import java.nio.file.Paths;
    -import java.time.OffsetDateTime;
    -import java.util.Comparator;
    -import java.util.List;
    -import java.util.UUID;
    -import java.util.stream.Collectors;
    -import lombok.extern.slf4j.Slf4j;
    -import org.springframework.beans.factory.annotation.Value;
    -import org.springframework.core.io.Resource;
    -import org.springframework.core.io.UrlResource;
    -import org.springframework.stereotype.Service;
    -import org.springframework.transaction.annotation.Transactional;
    -
    -
    -import static gov.cms.ab2d.common.util.Constants.MAX_DOWNLOADS;
    -
    -<span class="fc" id="L33">@Slf4j</span>
    -@Service
    -@Transactional
    -public class JobServiceImpl implements JobService {
    -
    -    private final JobRepository jobRepository;
    -    private final JobOutputService jobOutputService;
    -    private final SQSEventClient eventLogger;
    -    private final String fileDownloadPath;
    -
    -    public static final String INITIAL_JOB_STATUS_MESSAGE = &quot;0%&quot;;
    -
    -    public JobServiceImpl(JobRepository jobRepository, JobOutputService jobOutputService,
    -                          SQSEventClient eventLogger,
    -<span class="fc" id="L47">                          @Value(&quot;${efs.mount}&quot;) String fileDownloadPath) {</span>
    -<span class="fc" id="L48">        this.jobRepository = jobRepository;</span>
    -<span class="fc" id="L49">        this.jobOutputService = jobOutputService;</span>
    -<span class="fc" id="L50">        this.eventLogger = eventLogger;</span>
    -<span class="fc" id="L51">        this.fileDownloadPath = fileDownloadPath;</span>
    -<span class="fc" id="L52">    }</span>
    -
    -    @Override
    -    public Job createJob(StartJobDTO startJobDTO) {
    -<span class="fc" id="L56">        Job job = new Job();</span>
    -<span class="fc" id="L57">        job.setResourceTypes(startJobDTO.getResourceTypes());</span>
    -<span class="fc" id="L58">        job.setJobUuid(UUID.randomUUID().toString());</span>
    -<span class="fc" id="L59">        job.setRequestUrl(startJobDTO.getUrl());</span>
    -<span class="fc" id="L60">        job.setStatusMessage(INITIAL_JOB_STATUS_MESSAGE);</span>
    -<span class="fc" id="L61">        job.setCreatedAt(OffsetDateTime.now());</span>
    -<span class="fc" id="L62">        job.setOutputFormat(startJobDTO.getOutputFormat());</span>
    -<span class="fc" id="L63">        job.setProgress(0);</span>
    -<span class="fc" id="L64">        job.setSince(startJobDTO.getSince());</span>
    -<span class="fc" id="L65">        job.setUntil(startJobDTO.getUntil());</span>
    -<span class="fc" id="L66">        job.setFhirVersion(startJobDTO.getVersion());</span>
    -<span class="fc" id="L67">        job.setOrganization(startJobDTO.getOrganization());</span>
    -
    -<span class="fc" id="L69">        eventLogger.sendLogs(job.buildJobStatusChangeEvent(JobStatus.SUBMITTED, &quot;Job Created&quot;));</span>
    -
    -        // Report client running first job in prod
    -<span class="fc bfc" id="L72" title="All 2 branches covered.">        if (clientHasNeverCompletedJob(startJobDTO.getContractNumber())) {</span>
    -<span class="fc" id="L73">            String firstJobMessage = String.format(SlackEvents.ORG_FIRST + &quot; Organization %s is running their first job for contract %s&quot;,</span>
    -<span class="fc" id="L74">                    startJobDTO.getOrganization(), startJobDTO.getContractNumber());</span>
    -<span class="fc" id="L75">            eventLogger.alert(firstJobMessage, Ab2dEnvironment.PROD_LIST);</span>
    -        }
    -<span class="fc" id="L77">        job.setContractNumber(startJobDTO.getContractNumber());</span>
    -<span class="fc" id="L78">        job.setStatus(JobStatus.SUBMITTED);</span>
    -<span class="fc" id="L79">        return jobRepository.save(job);</span>
    -    }
    -
    -    @Override
    -    public void cancelJob(String jobUuid, String organization) {
    -<span class="fc" id="L84">        Job job = getAuthorizedJobByJobUuid(jobUuid, organization);</span>
    -
    -<span class="fc" id="L86">        log.info(&quot;Cancel job in database: {}&quot;, jobUuid);</span>
    -<span class="fc bfc" id="L87" title="All 2 branches covered.">        if (!job.getStatus().isCancellable()) {</span>
    -<span class="fc" id="L88">            log.error(&quot;Job had a status of {} so it was not able to be cancelled&quot;, job.getStatus());</span>
    -<span class="fc" id="L89">            throw new InvalidJobStateTransition(&quot;Job has a status of &quot; + job.getStatus() + &quot;, so it cannot be cancelled&quot;);</span>
    -        }
    -<span class="fc" id="L91">        eventLogger.sendLogs(job.buildJobStatusChangeEvent(JobStatus.CANCELLED, &quot;Job Cancelled&quot;));</span>
    -<span class="fc" id="L92">        jobRepository.cancelJobByJobUuid(jobUuid);</span>
    -<span class="fc" id="L93">        jobRepository.flush();</span>
    -<span class="fc" id="L94">    }</span>
    -
    -    public Job getAuthorizedJobByJobUuid(String jobUuid, String organization) {
    -<span class="fc" id="L97">        Job job = getJobByJobUuid(jobUuid);</span>
    -
    -<span class="fc bfc" id="L99" title="All 2 branches covered.">        if (!job.getOrganization().equals(organization)) {</span>
    -<span class="fc" id="L100">            log.error(&quot;Client attempted to download a file where they had a valid UUID, but was not logged in as the &quot; +</span>
    -                    &quot;client that created the job&quot;);
    -<span class="fc" id="L102">            throw new InvalidJobAccessException(&quot;Unauthorized&quot;);</span>
    -        }
    -
    -<span class="fc" id="L105">        return job;</span>
    -    }
    -
    -    @Override
    -    public Job getJobByJobUuid(String jobUuid) {
    -<span class="fc" id="L110">        Job job = jobRepository.findByJobUuid(jobUuid);</span>
    -
    -<span class="fc bfc" id="L112" title="All 2 branches covered.">        if (job == null) {</span>
    -<span class="fc" id="L113">            log.error(&quot;Job {} was searched for and was not found&quot;, jobUuid);</span>
    -<span class="fc" id="L114">            throw new ResourceNotFoundException(&quot;No job with jobUuid &quot; + jobUuid + &quot; was found&quot;);</span>
    -        }
    -
    -<span class="fc" id="L117">        return job;</span>
    -    }
    -
    -    @Override
    -    public Job updateJob(Job job) {
    -<span class="fc" id="L122">        return jobRepository.save(job);</span>
    -    }
    -
    -    @Override
    -    public Resource getResourceForJob(String jobUuid, String fileName, String organization) throws MalformedURLException {
    -<span class="fc" id="L127">        Job job = getAuthorizedJobByJobUuid(jobUuid, organization);</span>
    -
    -        // Make sure that there is a path that matches a job output for the job they are requesting
    -<span class="fc" id="L130">        boolean jobOutputMatchesPath = false;</span>
    -<span class="fc" id="L131">        JobOutput foundJobOutput = null;</span>
    -<span class="fc bfc" id="L132" title="All 2 branches covered.">        for (JobOutput jobOutput : job.getJobOutputs()) {</span>
    -<span class="fc bfc" id="L133" title="All 2 branches covered.">            if (jobOutput.getFilePath().equals(fileName)) {</span>
    -<span class="fc" id="L134">                jobOutputMatchesPath = true;</span>
    -<span class="fc" id="L135">                foundJobOutput = jobOutput;</span>
    -<span class="fc" id="L136">                break;</span>
    -            }
    -<span class="fc" id="L138">        }</span>
    -
    -<span class="fc bfc" id="L140" title="All 2 branches covered.">        if (!jobOutputMatchesPath) {</span>
    -<span class="fc" id="L141">            log.error(&quot;No Job Output with the file name {} exists in our records&quot;, fileName);</span>
    -<span class="fc" id="L142">            throw new ResourceNotFoundException(&quot;No Job Output with the file name &quot; + fileName + &quot; exists in our records&quot;);</span>
    -        }
    -
    -<span class="fc" id="L145">        Path file = Paths.get(fileDownloadPath, job.getJobUuid(), fileName);</span>
    -<span class="fc" id="L146">        Resource resource = new UrlResource(file.toUri());</span>
    -<span class="fc bfc" id="L147" title="All 2 branches covered.">        if (foundJobOutput.getDownloaded() &gt;= MAX_DOWNLOADS) {</span>
    -<span class="fc" id="L148">            throw new JobOutputMissingException(&quot;The file has already been download the maximum number of allowed times.&quot;);</span>
    -        }
    -<span class="fc bfc" id="L150" title="All 2 branches covered.">        if (!resource.exists()) {</span>
    -            String errorMsg;
    -<span class="fc bfc" id="L152" title="All 2 branches covered.">            if (job.getExpiresAt().isBefore(OffsetDateTime.now())) {</span>
    -<span class="fc" id="L153">                errorMsg = &quot;The file is not present as it has expired. Please resubmit the job.&quot;;</span>
    -            } else {
    -<span class="fc" id="L155">                errorMsg = &quot;The file is not present as there was an error. Please resubmit the job.&quot;;</span>
    -            }
    -<span class="fc" id="L157">            log.error(errorMsg);</span>
    -<span class="fc" id="L158">            throw new JobOutputMissingException(errorMsg);</span>
    -        }
    -
    -<span class="fc" id="L161">        return resource;</span>
    -    }
    -
    -
    -    public void incrementDownload(File file, String jobUuid) {
    -<span class="fc" id="L166">        Job job = jobRepository.findByJobUuid(jobUuid);</span>
    -<span class="fc" id="L167">        JobOutput jobOutput = jobOutputService.findByFilePathAndJob(file.getName(), job);</span>
    -        // Incrementing downloaded in this way is likely not concurrency safe.
    -        // If multiple users (aka threads) download the same file at the same time the count won't record every download
    -        // This would result in the file being downloaded more than the allowed number of time.
    -<span class="fc" id="L171">        jobOutput.setDownloaded(jobOutput.getDownloaded() + 1);</span>
    -<span class="fc" id="L172">        jobOutput.setLastDownloadAt(OffsetDateTime.now());</span>
    -<span class="fc" id="L173">        jobOutputService.updateJobOutput(jobOutput);</span>
    -<span class="fc" id="L174">    }</span>
    -
    -    @Override
    -    public int activeJobs(String organization) {
    -<span class="fc" id="L178">        List&lt;Job&gt; jobs = jobRepository.findActiveJobsByClient(organization);</span>
    -<span class="fc" id="L179">        return jobs.size();</span>
    -    }
    -
    -    @Override
    -    public List&lt;String&gt; getActiveJobIds(String organization) {
    -        //Sorting with stream so we don't affect existing code that uses findActiveJobsByClient.
    -        //Number of jobs returned should be small
    -<span class="nc" id="L186">        return jobRepository.findActiveJobsByClient(organization).stream()</span>
    -<span class="nc" id="L187">                .sorted(Comparator.comparing(Job::getCreatedAt))</span>
    -<span class="nc" id="L188">                .map(Job::getJobUuid).collect(Collectors.toList());</span>
    -    }
    -
    -    @Override
    -    public JobPollResult poll(boolean admin, String jobUuid, String organization, int delaySeconds) {
    -<span class="pc bpc" id="L193" title="1 of 2 branches missed.">        Job job = (admin) ? getJobByJobUuid(jobUuid) : getAuthorizedJobByJobUuid(jobUuid, organization);</span>
    -<span class="fc" id="L194">        job.pollAndUpdateTime(delaySeconds);</span>
    -<span class="fc" id="L195">        jobRepository.save(job);</span>
    -<span class="fc" id="L196">        String transactionTime = job.getFhirVersion().getFhirTime(job.getCreatedAt());</span>
    -<span class="fc" id="L197">        return new JobPollResult(job.getRequestUrl(), job.getStatus(), job.getProgress(), transactionTime,</span>
    -<span class="fc" id="L198">                job.getExpiresAt(), job.getJobOutputs());</span>
    -    }
    -
    -    @Override
    -    public List&lt;StaleJob&gt; checkForExpiration(List&lt;String&gt; jobUuids, int ttlHours) {
    -<span class="fc" id="L203">        return jobRepository.findByJobUuidIn(jobUuids).stream()</span>
    -<span class="fc" id="L204">                .filter(job -&gt; job.isExpired(ttlHours))</span>
    -<span class="fc" id="L205">                .map(job -&gt; new StaleJob(job.getJobUuid(), job.getOrganization()))</span>
    -<span class="fc" id="L206">                .toList();</span>
    -    }
    -
    -    private boolean clientHasNeverCompletedJob(String contractNumber) {
    -<span class="fc" id="L210">        int completedJobs = jobRepository.countJobByContractNumberAndStatus(contractNumber,</span>
    -<span class="fc" id="L211">                List.of(JobStatus.SUBMITTED, JobStatus.IN_PROGRESS, JobStatus.SUCCESSFUL));</span>
    -<span class="fc bfc" id="L212" title="All 2 branches covered.">        return completedJobs == 0;</span>
    -    }
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/index.html b/job/jacoco/gov.cms.ab2d.job.service/index.html
    deleted file mode 100644
    index 78c91972a..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/index.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.service</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.service</span></div><h1>gov.cms.ab2d.job.service</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">18 of 473</td><td class="ctr2">96%</td><td class="bar">1 of 24</td><td class="ctr2">95%</td><td class="ctr1">2</td><td class="ctr2">36</td><td class="ctr1">3</td><td class="ctr2">107</td><td class="ctr1">1</td><td class="ctr2">24</td><td class="ctr1">0</td><td class="ctr2">5</td></tr></tfoot><tbody><tr><td id="a4"><a href="JobServiceImpl.html" class="el_class">JobServiceImpl</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="18" alt="18"/><img src="../jacoco-resources/greenbar.gif" width="114" height="10" title="402" alt="402"/></td><td class="ctr2" id="c4">95%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="115" height="10" title="23" alt="23"/></td><td class="ctr2" id="e0">95%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">28</td><td class="ctr1" id="h0">3</td><td class="ctr2" id="i0">94</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">16</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a3"><a href="JobOutputServiceImpl.html" class="el_class">JobOutputServiceImpl</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="11" height="10" title="41" alt="41"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">5</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">7</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">5</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a href="InvalidJobAccessException.html" class="el_class">InvalidJobAccessException</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a2"><a href="JobOutputMissingException.html" class="el_class">JobOutputMissingException</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a1"><a href="InvalidJobStateTransition.html" class="el_class">InvalidJobStateTransition</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">2</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.service/index.source.html b/job/jacoco/gov.cms.ab2d.job.service/index.source.html
    deleted file mode 100644
    index 3564a36e7..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.service/index.source.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.service</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.service</span></div><h1>gov.cms.ab2d.job.service</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">18 of 473</td><td class="ctr2">96%</td><td class="bar">1 of 24</td><td class="ctr2">95%</td><td class="ctr1">2</td><td class="ctr2">36</td><td class="ctr1">3</td><td class="ctr2">107</td><td class="ctr1">1</td><td class="ctr2">24</td><td class="ctr1">0</td><td class="ctr2">5</td></tr></tfoot><tbody><tr><td id="a4"><a href="JobServiceImpl.java.html" class="el_source">JobServiceImpl.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="18" alt="18"/><img src="../jacoco-resources/greenbar.gif" width="114" height="10" title="402" alt="402"/></td><td class="ctr2" id="c4">95%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="115" height="10" title="23" alt="23"/></td><td class="ctr2" id="e0">95%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">28</td><td class="ctr1" id="h0">3</td><td class="ctr2" id="i0">94</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">16</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a3"><a href="JobOutputServiceImpl.java.html" class="el_source">JobOutputServiceImpl.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="11" height="10" title="41" alt="41"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">5</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">7</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">5</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a1"><a href="InvalidJobStateTransition.java.html" class="el_source">InvalidJobStateTransition.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a0"><a href="InvalidJobAccessException.java.html" class="el_source">InvalidJobAccessException.java</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a2"><a href="JobOutputMissingException.java.html" class="el_source">JobOutputMissingException.java</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">2</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html
    deleted file mode 100644
    index 9ed01615c..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobUtil</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.html" class="el_package">gov.cms.ab2d.job.util</a> &gt; <span class="el_class">JobUtil</span></div><h1>JobUtil</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">3 of 89</td><td class="ctr2">96%</td><td class="bar">3 of 28</td><td class="ctr2">89%</td><td class="ctr1">4</td><td class="ctr2">19</td><td class="ctr1">1</td><td class="ctr2">15</td><td class="ctr1">1</td><td class="ctr2">5</td></tr></tfoot><tbody><tr><td id="a1"><a href="JobUtil.java.html#L12" class="el_method">JobUtil()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="3" alt="3"/></td><td class="ctr2" id="c4">0%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f1">1</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="JobUtil.java.html#L23" class="el_method">isJobDone(Job, int)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="63" alt="63"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="10" height="10" title="2" alt="2"/><img src="../jacoco-resources/greenbar.gif" width="109" height="10" title="20" alt="20"/></td><td class="ctr2" id="e1">90%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">12</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i0">13</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="JobUtil.java.html#L45" class="el_method">lambda$isJobDone$0(JobOutput)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="11" alt="11"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="16" height="10" title="3" alt="3"/></td><td class="ctr2" id="e2">75%</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g1">3</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a3"><a href="JobUtil.java.html#L46" class="el_method">lambda$isJobDone$1(int, JobOutput)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="15" height="10" title="8" alt="8"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d2"><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g2">2</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a4"><a href="JobUtil.java.html#L11" class="el_method">static {...}</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html b/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html
    deleted file mode 100644
    index d22d2ee06..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.util/JobUtil.java.html
    +++ /dev/null
    @@ -1,51 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JobUtil.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <a href="index.source.html" class="el_package">gov.cms.ab2d.job.util</a> &gt; <span class="el_source">JobUtil.java</span></div><h1>JobUtil.java</h1><pre class="source lang-java linenums">package gov.cms.ab2d.job.util;
    -
    -import gov.cms.ab2d.job.model.Job;
    -import gov.cms.ab2d.job.model.JobOutput;
    -import gov.cms.ab2d.job.model.JobStatus;
    -import lombok.extern.slf4j.Slf4j;
    -
    -import java.time.OffsetDateTime;
    -import java.util.List;
    -
    -<span class="fc" id="L11">@Slf4j</span>
    -<span class="nc" id="L12">public class JobUtil {</span>
    -
    -    /**
    -     * A job is done if the status is either CANCELLED or FAILED
    -     * If a job status is SUCCESSFUL, it is done if all files have been downloaded or they have expired
    -     *
    -     * @param job - job to check
    -     * @return - true/false
    -     */
    -    public static boolean isJobDone(Job job, int maxDownloads) {
    -        // Job is still in progress
    -<span class="fc bfc" id="L23" title="All 8 branches covered.">        if (job == null || job.getStatus() == null || job.getStatus() == JobStatus.IN_PROGRESS || job.getStatus() == JobStatus.SUBMITTED) {</span>
    -<span class="fc" id="L24">            return false;</span>
    -        }
    -
    -        // Job has finished but was not successful
    -<span class="fc bfc" id="L28" title="All 4 branches covered.">        if (job.getStatus() == JobStatus.CANCELLED || job.getStatus() == JobStatus.FAILED) {</span>
    -<span class="fc" id="L29">            return true;</span>
    -        }
    -
    -        // Job was successful - now did the client download the files or is it expired
    -
    -        // Job has expired, it's done.
    -<span class="pc bpc" id="L35" title="1 of 4 branches missed.">        if (job.getExpiresAt() != null &amp;&amp; job.getExpiresAt().isBefore(OffsetDateTime.now())) {</span>
    -<span class="fc" id="L36">            return true;</span>
    -        }
    -
    -        // If it hasn't expired, look to see if all files have been downloaded, if so, it's done
    -<span class="fc" id="L40">        List&lt;JobOutput&gt; jobOutputs = job.getJobOutputs();</span>
    -<span class="pc bpc" id="L41" title="1 of 4 branches missed.">        if (jobOutputs == null || jobOutputs.isEmpty()) {</span>
    -<span class="fc" id="L42">            return false;</span>
    -        }
    -<span class="fc" id="L44">        JobOutput aRemaining = jobOutputs.stream()</span>
    -<span class="pc bpc" id="L45" title="1 of 4 branches missed.">                .filter(c -&gt; c.getError() == null || !c.getError())</span>
    -<span class="fc bfc" id="L46" title="All 2 branches covered.">                .filter(c -&gt; c.getDownloaded() &lt; maxDownloads).findAny().orElse(null);</span>
    -
    -<span class="fc bfc" id="L48" title="All 2 branches covered.">        return aRemaining == null;</span>
    -    }
    -}
    -</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.util/index.html b/job/jacoco/gov.cms.ab2d.job.util/index.html
    deleted file mode 100644
    index 34b97a9fd..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.util/index.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.util</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.util</span></div><h1>gov.cms.ab2d.job.util</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">3 of 89</td><td class="ctr2">96%</td><td class="bar">3 of 28</td><td class="ctr2">89%</td><td class="ctr1">4</td><td class="ctr2">19</td><td class="ctr1">1</td><td class="ctr2">15</td><td class="ctr1">1</td><td class="ctr2">5</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobUtil.html" class="el_class">JobUtil</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="115" height="10" title="86" alt="86"/></td><td class="ctr2" id="c0">96%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="12" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="107" height="10" title="25" alt="25"/></td><td class="ctr2" id="e0">89%</td><td class="ctr1" id="f0">4</td><td class="ctr2" id="g0">19</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">15</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">5</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/gov.cms.ab2d.job.util/index.source.html b/job/jacoco/gov.cms.ab2d.job.util/index.source.html
    deleted file mode 100644
    index 43c3744ae..000000000
    --- a/job/jacoco/gov.cms.ab2d.job.util/index.source.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>gov.cms.ab2d.job.util</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">job</a> &gt; <span class="el_package">gov.cms.ab2d.job.util</span></div><h1>gov.cms.ab2d.job.util</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">3 of 89</td><td class="ctr2">96%</td><td class="bar">3 of 28</td><td class="ctr2">89%</td><td class="ctr1">4</td><td class="ctr2">19</td><td class="ctr1">1</td><td class="ctr2">15</td><td class="ctr1">1</td><td class="ctr2">5</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="JobUtil.java.html" class="el_source">JobUtil.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="4" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="115" height="10" title="86" alt="86"/></td><td class="ctr2" id="c0">96%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="12" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="107" height="10" title="25" alt="25"/></td><td class="ctr2" id="e0">89%</td><td class="ctr1" id="f0">4</td><td class="ctr2" id="g0">19</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i0">15</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">5</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/index.html b/job/jacoco/index.html
    deleted file mode 100644
    index 899b978bc..000000000
    --- a/job/jacoco/index.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="jacoco-resources/report.gif" type="image/gif"/><title>job</title><script type="text/javascript" src="jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="jacoco-sessions.html" class="el_session">Sessions</a></span><span class="el_report">job</span></div><h1>job</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">749 of 1,856</td><td class="ctr2">59%</td><td class="bar">160 of 230</td><td class="ctr2">30%</td><td class="ctr1">123</td><td class="ctr2">268</td><td class="ctr1">23</td><td class="ctr2">219</td><td class="ctr1">36</td><td class="ctr2">153</td><td class="ctr1">0</td><td class="ctr2">18</td></tr></tfoot><tbody><tr><td id="a0"><a href="gov.cms.ab2d.job.dto/index.html" class="el_package">gov.cms.ab2d.job.dto</a></td><td class="bar" id="b0"><img src="jacoco-resources/redbar.gif" width="106" height="10" title="643" alt="643"/><img src="jacoco-resources/greenbar.gif" width="13" height="10" title="84" alt="84"/></td><td class="ctr2" id="c3">11%</td><td class="bar" id="d0"><img src="jacoco-resources/redbar.gif" width="120" height="10" title="138" alt="138"/></td><td class="ctr2" id="e3">0%</td><td class="ctr1" id="f0">93</td><td class="ctr2" id="g1">105</td><td class="ctr1" id="h1">9</td><td class="ctr2" id="i2">21</td><td class="ctr1" id="j0">24</td><td class="ctr2" id="k1">36</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m2">3</td></tr><tr><td id="a1"><a href="gov.cms.ab2d.job.model/index.html" class="el_package">gov.cms.ab2d.job.model</a></td><td class="bar" id="b1"><img src="jacoco-resources/redbar.gif" width="14" height="10" title="85" alt="85"/><img src="jacoco-resources/greenbar.gif" width="79" height="10" title="482" alt="482"/></td><td class="ctr2" id="c2">85%</td><td class="bar" id="d1"><img src="jacoco-resources/redbar.gif" width="15" height="10" title="18" alt="18"/><img src="jacoco-resources/greenbar.gif" width="19" height="10" title="22" alt="22"/></td><td class="ctr2" id="e2">55%</td><td class="ctr1" id="f1">24</td><td class="ctr2" id="g0">108</td><td class="ctr1" id="h0">10</td><td class="ctr2" id="i1">76</td><td class="ctr1" id="j1">10</td><td class="ctr2" id="k0">88</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m0">9</td></tr><tr><td id="a2"><a href="gov.cms.ab2d.job.service/index.html" class="el_package">gov.cms.ab2d.job.service</a></td><td class="bar" id="b2"><img src="jacoco-resources/redbar.gif" width="2" height="10" title="18" alt="18"/><img src="jacoco-resources/greenbar.gif" width="75" height="10" title="455" alt="455"/></td><td class="ctr2" id="c1">96%</td><td class="bar" id="d3"><img src="jacoco-resources/greenbar.gif" width="20" height="10" title="23" alt="23"/></td><td class="ctr2" id="e0">95%</td><td class="ctr1" id="f3">2</td><td class="ctr2" id="g2">36</td><td class="ctr1" id="h2">3</td><td class="ctr2" id="i0">107</td><td class="ctr1" id="j2">1</td><td class="ctr2" id="k2">24</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m1">5</td></tr><tr><td id="a3"><a href="gov.cms.ab2d.job.util/index.html" class="el_package">gov.cms.ab2d.job.util</a></td><td class="bar" id="b3"><img src="jacoco-resources/greenbar.gif" width="14" height="10" title="86" alt="86"/></td><td class="ctr2" id="c0">96%</td><td class="bar" id="d2"><img src="jacoco-resources/redbar.gif" width="2" height="10" title="3" alt="3"/><img src="jacoco-resources/greenbar.gif" width="21" height="10" title="25" alt="25"/></td><td class="ctr2" id="e1">89%</td><td class="ctr1" id="f2">4</td><td class="ctr2" id="g3">19</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i3">15</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k3">5</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/jacoco-resources/branchfc.gif b/job/jacoco/jacoco-resources/branchfc.gif
    deleted file mode 100644
    index 989b46d30469b56b014758f846ee6c5abfda16aa..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 91
    zcmZ?wbhEHb<YM4rIK;xhkjB6;lY!w31H*rY|42abCkrDN13QBb0}z1JGB7JtR5AQc
    j;9zf`qaAf{?!7xKElvq+aTP&4>6=b<*h$V|V6X-NwhSNb
    
    diff --git a/job/jacoco/jacoco-resources/branchnc.gif b/job/jacoco/jacoco-resources/branchnc.gif
    deleted file mode 100644
    index 1933e07c376bb71bdd9aac91cf858da3fcdb0f1c..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 91
    zcmZ?wbhEHb<YM4rIK;xxz`$^Zf#E#^!~cec|42abCkrDN13QBb0}z1JGB7JtR5AQc
    j;9zf`qaAf{?!7xKElvq+aTP&4>6=b<*h$V|V6X-N9U38B
    
    diff --git a/job/jacoco/jacoco-resources/branchpc.gif b/job/jacoco/jacoco-resources/branchpc.gif
    deleted file mode 100644
    index cbf711b7030929b733f22f7a0cf3dbf61fe7868f..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 91
    zcmZ?wbhEHb<YM4rIK;v*A(Y{H7sIRF44*zR{6_+cKUo;L7}yzf7=QqzmVsHJqKe^n
    j0tb8h9POxsbMM_@X>m$mi>nCYN#As;!%lJz1A{dHmlPuc
    
    diff --git a/job/jacoco/jacoco-resources/bundle.gif b/job/jacoco/jacoco-resources/bundle.gif
    deleted file mode 100644
    index fca9c53e629a7a5c07186ac1e2a1e37d8d6e88f4..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 709
    zcmZ?wbhEHb6krfwxXQrrpW*-7BK;<J$sad5=B26sxKQ!q!Hgdl8q(~HUL2e9<Hd#-
    z7dn1?IPw4g|HIv8zrOAI@nFG^8xwkB-G027acOnKpKtdcpWnHq-sr)BinT@BA8t%o
    znxj(b?=UZ3c5RMIe~{#!dZYLEkL_tSI^1f;Km(xolZ6pvtPY3(`H6w8*rB1oLr1Fr
    zgz}>o8CDEUD?$vun5^UNelT%D!ODh<DT^W#oSIlz7qWFr6j-<`INnfgQuR3aJbW7`
    zN4%4`K$`$#XID3aq+mZI+oZ{pxEUFwnVA`9&7C{VNtTt7ed)5L3!LN`S=X*xyV99u
    u^Omii+jqD*GFUt3=ar=9mFR|47NlA!WacKOr|PF?rg3q(j|Mjlf*SzSChrLV
    
    diff --git a/job/jacoco/jacoco-resources/class.gif b/job/jacoco/jacoco-resources/class.gif
    deleted file mode 100644
    index eb348fb0d498d75976150047b1b5c2fefc9dc220..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 586
    zcmZ?wbhEHb6krfwI2Or}v!c<s$=9se-=Q<YsXNN8KQ3fOR@Cf*m^p=Yn<q4Gopkom
    z6_qkOy&5;;MsLfufQUJ{vGWR(7nLtMxlXsnMX%OXzt+v54k+vCJt@I!LR|T}_8Twn
    z8a23^wRl;#``dR0_3fQy*Wqv15n$II;MN!J-X9S(Eh&3>RsX(Ohwq+z^!{nkw1lu(
    zDPc2HV&`P7KEHX-jYA>R6T@ewM9fTyo0E0x)!k<wUj$8y`}qA+!h+12O)Zt{8e4bt
    z^z51Z;rqwPnTZ)o@)H-NC(KKmcWmLES9jAFW#uj_C|_66u(_dnV^!t4^7b9Ajhky9
    zzJD-rU(e=C8}{7Xx$oBQ`NwB1I6iy#jqQi->_2wz@P-Sk{|^LE{K>+|z);Vi!vF-J
    zIALI4-caAv+|t_C-oY&>$uA|y-ND80=rPrik*keM);A(7JS@bMXJ#`uzjsjN>eYc>
    zj1!vJoq|_~`Ugb%`8WwRvs$=Bx;h_qcXM-KZDthLjMNep5fPP;Q{vk%FCD3^prRsd
    zAfR@-Nl4k$GSW~(G16XNhoM=9$H>NPjk%o(&&DPp6ODz*?)|b>X&fF28jY>Ox-nZU
    Y5*r^bWMyL$kZ52~Skzz7#K>R`0G8r7i~s-t
    
    diff --git a/job/jacoco/jacoco-resources/down.gif b/job/jacoco/jacoco-resources/down.gif
    deleted file mode 100644
    index 440a14db74e76c2b6e854eacac1c44414b166271..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 67
    zcmZ?wbhEHb<YC}qSjfcSX{EDa!-oH0p!k!8k&A(eL5G2Xk%5PSlYxOrWJ>Z%p}jXB
    Ub$^Lu-Ncq(ygK&ScM%3_0Po}%Qvd(}
    
    diff --git a/job/jacoco/jacoco-resources/greenbar.gif b/job/jacoco/jacoco-resources/greenbar.gif
    deleted file mode 100644
    index 0ba65672530ee09f086821a26156836d0c91bd74..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 91
    zcmZ?wbhEHbWMtrCc+ADXzmZ>do2<@m9j_x^v8Q5duh#b5>RIq$!Lmoo);w9mu$BQ0
    eDgI<(1nOeYVE_V<84N5O20cYWMlKB;4AuaIXBwOU
    
    diff --git a/job/jacoco/jacoco-resources/group.gif b/job/jacoco/jacoco-resources/group.gif
    deleted file mode 100644
    index a4ea580d278fb727e4ae692838877fa63c4becf9..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 351
    zcmZ?wbhEHb6krfwxXQpVwXtJrV`pb|Z&Bgo_>{Q`Df1G5Wa`}H^qKLgbHn221;#86
    zie2Oyy23SVg;&(l)`=%9{nuIstg#PSrQx<&&vS#m*G7G>4W@o;CvAN*Y1^AgTVGGw
    z_ImEoPjiobns@ZmyknnMUi-Q7>W`Jzer$aB_t(pL-|kQQ|MAfO*PGv5?Ee3B$^ToO
    z|A8VGOaEW3eSEO?=BC06Ybq|Tt-P?N@;?|b;0205Sr{1@Oc``Qsz82XV5>PWtH47?
    zs^4Q~P@BxTjDV;&5*!R(s==>VnJe}-&SEIintfiq!@<H~=ly~!2^|49-&cqxtw`7?
    z#Ky|j%)-vX)?mu7-NU2OKVbs5sj!|NpR$sovf|v?yiO9jg7Wfm3i1lF3JOBbqGFPg
    YGSX7gGMmL+MfU97=X>Cwn<IlY03tk+6951J
    
    diff --git a/job/jacoco/jacoco-resources/method.gif b/job/jacoco/jacoco-resources/method.gif
    deleted file mode 100644
    index 7d24707ee82f54aa9fb10d1d9050013cbf161a7a..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 193
    zcmV;y06zamNk%w1VGsZi0K@<Q1As^cfk_>VRxXubL!4|)qjO}gg>klxZ?TGXw~#-V
    zU_Y2&N}FX?r*L1YbYiM-aj|xBv2}#Mgo3?-guaA=wSS1Yfrz+)iMWB7#*ml2h^x<;
    ztIwFU(w+bR{{R30A^8LW0015UEC2ui01yBW000F(peK%GX`X1Rt}L1aL$Vf5mpMgx
    vG+WO#2NYmJDM}^)l;8n@L?90V%CN9pFcyU&MPO(u48jTlL$uClRtNw)MiWcq
    
    diff --git a/job/jacoco/jacoco-resources/package.gif b/job/jacoco/jacoco-resources/package.gif
    deleted file mode 100644
    index 131c28da405493661e3253ef79a68bd273039295..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 227
    zcmZ?wbhEHb6krfwIKsg2^W*Nf7neOfxp04z;n8NJ+xzDotkS){bH@Hst%K#-*LO_c
    zo~yCDQ0v_4?v)A3lSAd#C95utQCbkGxF}NT_=2WF8}WGs5taT9|NsAIzy=h5vM@3*
    zNHFMtBtdpEuqG&|^`&Ia(}-MpBVo@mW@+b{B25<}cFdc?!Kkoc14n0vkh1`XOwU>7
    z#al8o_@;D=?hdfkdC)D9Q@O@%Lfqp;ZBt~9C*29`GMF2XzQp8akWQVjDvMC75PzEx
    Mi%z;upCW@b03m@=3jhEB
    
    diff --git a/job/jacoco/jacoco-resources/prettify.css b/job/jacoco/jacoco-resources/prettify.css
    deleted file mode 100644
    index be5166e0f..000000000
    --- a/job/jacoco/jacoco-resources/prettify.css
    +++ /dev/null
    @@ -1,13 +0,0 @@
    -/* Pretty printing styles. Used with prettify.js. */
    -
    -.str { color: #2A00FF; }
    -.kwd { color: #7F0055; font-weight:bold; }
    -.com { color: #3F5FBF; }
    -.typ { color: #606; }
    -.lit { color: #066; }
    -.pun { color: #660; }
    -.pln { color: #000; }
    -.tag { color: #008; }
    -.atn { color: #606; }
    -.atv { color: #080; }
    -.dec { color: #606; }
    diff --git a/job/jacoco/jacoco-resources/prettify.js b/job/jacoco/jacoco-resources/prettify.js
    deleted file mode 100644
    index b2766fe0a..000000000
    --- a/job/jacoco/jacoco-resources/prettify.js
    +++ /dev/null
    @@ -1,1510 +0,0 @@
    -// Copyright (C) 2006 Google Inc.
    -//
    -// Licensed under the Apache License, Version 2.0 (the "License");
    -// you may not use this file except in compliance with the License.
    -// You may obtain a copy of the License at
    -//
    -//      http://www.apache.org/licenses/LICENSE-2.0
    -//
    -// Unless required by applicable law or agreed to in writing, software
    -// distributed under the License is distributed on an "AS IS" BASIS,
    -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    -// See the License for the specific language governing permissions and
    -// limitations under the License.
    -
    -
    -/**
    - * @fileoverview
    - * some functions for browser-side pretty printing of code contained in html.
    - * <p>
    - *
    - * For a fairly comprehensive set of languages see the
    - * <a href="http://google-code-prettify.googlecode.com/svn/trunk/README.html#langs">README</a>
    - * file that came with this source.  At a minimum, the lexer should work on a
    - * number of languages including C and friends, Java, Python, Bash, SQL, HTML,
    - * XML, CSS, Javascript, and Makefiles.  It works passably on Ruby, PHP and Awk
    - * and a subset of Perl, but, because of commenting conventions, doesn't work on
    - * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class.
    - * <p>
    - * Usage: <ol>
    - * <li> include this source file in an html page via
    - *   {@code <script type="text/javascript" src="/path/to/prettify.js"></script>}
    - * <li> define style rules.  See the example page for examples.
    - * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
    - *    {@code class=prettyprint.}
    - *    You can also use the (html deprecated) {@code <xmp>} tag, but the pretty
    - *    printer needs to do more substantial DOM manipulations to support that, so
    - *    some css styles may not be preserved.
    - * </ol>
    - * That's it.  I wanted to keep the API as simple as possible, so there's no
    - * need to specify which language the code is in, but if you wish, you can add
    - * another class to the {@code <pre>} or {@code <code>} element to specify the
    - * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
    - * starts with "lang-" followed by a file extension, specifies the file type.
    - * See the "lang-*.js" files in this directory for code that implements
    - * per-language file handlers.
    - * <p>
    - * Change log:<br>
    - * cbeust, 2006/08/22
    - * <blockquote>
    - *   Java annotations (start with "@") are now captured as literals ("lit")
    - * </blockquote>
    - * @requires console
    - */
    -
    -// JSLint declarations
    -/*global console, document, navigator, setTimeout, window */
    -
    -/**
    - * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
    - * UI events.
    - * If set to {@code false}, {@code prettyPrint()} is synchronous.
    - */
    -window['PR_SHOULD_USE_CONTINUATION'] = true;
    -
    -/** the number of characters between tab columns */
    -window['PR_TAB_WIDTH'] = 8;
    -
    -/** Walks the DOM returning a properly escaped version of innerHTML.
    -  * @param {Node} node
    -  * @param {Array.<string>} out output buffer that receives chunks of HTML.
    -  */
    -window['PR_normalizedHtml']
    -
    -/** Contains functions for creating and registering new language handlers.
    -  * @type {Object}
    -  */
    -  = window['PR']
    -
    -/** Pretty print a chunk of code.
    -  *
    -  * @param {string} sourceCodeHtml code as html
    -  * @return {string} code as html, but prettier
    -  */
    -  = window['prettyPrintOne']
    -/** Find all the {@code <pre>} and {@code <code>} tags in the DOM with
    -  * {@code class=prettyprint} and prettify them.
    -  * @param {Function?} opt_whenDone if specified, called when the last entry
    -  *     has been finished.
    -  */
    -  = window['prettyPrint'] = void 0;
    -
    -/** browser detection. @extern @returns false if not IE, otherwise the major version. */
    -window['_pr_isIE6'] = function () {
    -  var ieVersion = navigator && navigator.userAgent &&
    -      navigator.userAgent.match(/\bMSIE ([678])\./);
    -  ieVersion = ieVersion ? +ieVersion[1] : false;
    -  window['_pr_isIE6'] = function () { return ieVersion; };
    -  return ieVersion;
    -};
    -
    -
    -(function () {
    -  // Keyword lists for various languages.
    -  var FLOW_CONTROL_KEYWORDS =
    -      "break continue do else for if return while ";
    -  var C_KEYWORDS = FLOW_CONTROL_KEYWORDS + "auto case char const default " +
    -      "double enum extern float goto int long register short signed sizeof " +
    -      "static struct switch typedef union unsigned void volatile ";
    -  var COMMON_KEYWORDS = C_KEYWORDS + "catch class delete false import " +
    -      "new operator private protected public this throw true try typeof ";
    -  var CPP_KEYWORDS = COMMON_KEYWORDS + "alignof align_union asm axiom bool " +
    -      "concept concept_map const_cast constexpr decltype " +
    -      "dynamic_cast explicit export friend inline late_check " +
    -      "mutable namespace nullptr reinterpret_cast static_assert static_cast " +
    -      "template typeid typename using virtual wchar_t where ";
    -  var JAVA_KEYWORDS = COMMON_KEYWORDS +
    -      "abstract boolean byte extends final finally implements import " +
    -      "instanceof null native package strictfp super synchronized throws " +
    -      "transient ";
    -  var CSHARP_KEYWORDS = JAVA_KEYWORDS +
    -      "as base by checked decimal delegate descending event " +
    -      "fixed foreach from group implicit in interface internal into is lock " +
    -      "object out override orderby params partial readonly ref sbyte sealed " +
    -      "stackalloc string select uint ulong unchecked unsafe ushort var ";
    -  var JSCRIPT_KEYWORDS = COMMON_KEYWORDS +
    -      "debugger eval export function get null set undefined var with " +
    -      "Infinity NaN ";
    -  var PERL_KEYWORDS = "caller delete die do dump elsif eval exit foreach for " +
    -      "goto if import last local my next no our print package redo require " +
    -      "sub undef unless until use wantarray while BEGIN END ";
    -  var PYTHON_KEYWORDS = FLOW_CONTROL_KEYWORDS + "and as assert class def del " +
    -      "elif except exec finally from global import in is lambda " +
    -      "nonlocal not or pass print raise try with yield " +
    -      "False True None ";
    -  var RUBY_KEYWORDS = FLOW_CONTROL_KEYWORDS + "alias and begin case class def" +
    -      " defined elsif end ensure false in module next nil not or redo rescue " +
    -      "retry self super then true undef unless until when yield BEGIN END ";
    -  var SH_KEYWORDS = FLOW_CONTROL_KEYWORDS + "case done elif esac eval fi " +
    -      "function in local set then until ";
    -  var ALL_KEYWORDS = (
    -      CPP_KEYWORDS + CSHARP_KEYWORDS + JSCRIPT_KEYWORDS + PERL_KEYWORDS +
    -      PYTHON_KEYWORDS + RUBY_KEYWORDS + SH_KEYWORDS);
    -
    -  // token style names.  correspond to css classes
    -  /** token style for a string literal */
    -  var PR_STRING = 'str';
    -  /** token style for a keyword */
    -  var PR_KEYWORD = 'kwd';
    -  /** token style for a comment */
    -  var PR_COMMENT = 'com';
    -  /** token style for a type */
    -  var PR_TYPE = 'typ';
    -  /** token style for a literal value.  e.g. 1, null, true. */
    -  var PR_LITERAL = 'lit';
    -  /** token style for a punctuation string. */
    -  var PR_PUNCTUATION = 'pun';
    -  /** token style for a punctuation string. */
    -  var PR_PLAIN = 'pln';
    -
    -  /** token style for an sgml tag. */
    -  var PR_TAG = 'tag';
    -  /** token style for a markup declaration such as a DOCTYPE. */
    -  var PR_DECLARATION = 'dec';
    -  /** token style for embedded source. */
    -  var PR_SOURCE = 'src';
    -  /** token style for an sgml attribute name. */
    -  var PR_ATTRIB_NAME = 'atn';
    -  /** token style for an sgml attribute value. */
    -  var PR_ATTRIB_VALUE = 'atv';
    -
    -  /**
    -   * A class that indicates a section of markup that is not code, e.g. to allow
    -   * embedding of line numbers within code listings.
    -   */
    -  var PR_NOCODE = 'nocode';
    -
    -  /** A set of tokens that can precede a regular expression literal in
    -    * javascript.
    -    * http://www.mozilla.org/js/language/js20/rationale/syntax.html has the full
    -    * list, but I've removed ones that might be problematic when seen in
    -    * languages that don't support regular expression literals.
    -    *
    -    * <p>Specifically, I've removed any keywords that can't precede a regexp
    -    * literal in a syntactically legal javascript program, and I've removed the
    -    * "in" keyword since it's not a keyword in many languages, and might be used
    -    * as a count of inches.
    -    *
    -    * <p>The link a above does not accurately describe EcmaScript rules since
    -    * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
    -    * very well in practice.
    -    *
    -    * @private
    -    */
    -  var REGEXP_PRECEDER_PATTERN = function () {
    -      var preceders = [
    -          "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=",
    -          "&=", "(", "*", "*=", /* "+", */ "+=", ",", /* "-", */ "-=",
    -          "->", /*".", "..", "...", handled below */ "/", "/=", ":", "::", ";",
    -          "<", "<<", "<<=", "<=", "=", "==", "===", ">",
    -          ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[",
    -          "^", "^=", "^^", "^^=", "{", "|", "|=", "||",
    -          "||=", "~" /* handles =~ and !~ */,
    -          "break", "case", "continue", "delete",
    -          "do", "else", "finally", "instanceof",
    -          "return", "throw", "try", "typeof"
    -          ];
    -      var pattern = '(?:^^|[+-]';
    -      for (var i = 0; i < preceders.length; ++i) {
    -        pattern += '|' + preceders[i].replace(/([^=<>:&a-z])/g, '\\$1');
    -      }
    -      pattern += ')\\s*';  // matches at end, and matches empty string
    -      return pattern;
    -      // CAVEAT: this does not properly handle the case where a regular
    -      // expression immediately follows another since a regular expression may
    -      // have flags for case-sensitivity and the like.  Having regexp tokens
    -      // adjacent is not valid in any language I'm aware of, so I'm punting.
    -      // TODO: maybe style special characters inside a regexp as punctuation.
    -    }();
    -
    -  // Define regexps here so that the interpreter doesn't have to create an
    -  // object each time the function containing them is called.
    -  // The language spec requires a new object created even if you don't access
    -  // the $1 members.
    -  var pr_amp = /&/g;
    -  var pr_lt = /</g;
    -  var pr_gt = />/g;
    -  var pr_quot = /\"/g;
    -  /** like textToHtml but escapes double quotes to be attribute safe. */
    -  function attribToHtml(str) {
    -    return str.replace(pr_amp, '&amp;')
    -        .replace(pr_lt, '&lt;')
    -        .replace(pr_gt, '&gt;')
    -        .replace(pr_quot, '&quot;');
    -  }
    -
    -  /** escapest html special characters to html. */
    -  function textToHtml(str) {
    -    return str.replace(pr_amp, '&amp;')
    -        .replace(pr_lt, '&lt;')
    -        .replace(pr_gt, '&gt;');
    -  }
    -
    -
    -  var pr_ltEnt = /&lt;/g;
    -  var pr_gtEnt = /&gt;/g;
    -  var pr_aposEnt = /&apos;/g;
    -  var pr_quotEnt = /&quot;/g;
    -  var pr_ampEnt = /&amp;/g;
    -  var pr_nbspEnt = /&nbsp;/g;
    -  /** unescapes html to plain text. */
    -  function htmlToText(html) {
    -    var pos = html.indexOf('&');
    -    if (pos < 0) { return html; }
    -    // Handle numeric entities specially.  We can't use functional substitution
    -    // since that doesn't work in older versions of Safari.
    -    // These should be rare since most browsers convert them to normal chars.
    -    for (--pos; (pos = html.indexOf('&#', pos + 1)) >= 0;) {
    -      var end = html.indexOf(';', pos);
    -      if (end >= 0) {
    -        var num = html.substring(pos + 3, end);
    -        var radix = 10;
    -        if (num && num.charAt(0) === 'x') {
    -          num = num.substring(1);
    -          radix = 16;
    -        }
    -        var codePoint = parseInt(num, radix);
    -        if (!isNaN(codePoint)) {
    -          html = (html.substring(0, pos) + String.fromCharCode(codePoint) +
    -                  html.substring(end + 1));
    -        }
    -      }
    -    }
    -
    -    return html.replace(pr_ltEnt, '<')
    -        .replace(pr_gtEnt, '>')
    -        .replace(pr_aposEnt, "'")
    -        .replace(pr_quotEnt, '"')
    -        .replace(pr_nbspEnt, ' ')
    -        .replace(pr_ampEnt, '&');
    -  }
    -
    -  /** is the given node's innerHTML normally unescaped? */
    -  function isRawContent(node) {
    -    return 'XMP' === node.tagName;
    -  }
    -
    -  var newlineRe = /[\r\n]/g;
    -  /**
    -   * Are newlines and adjacent spaces significant in the given node's innerHTML?
    -   */
    -  function isPreformatted(node, content) {
    -    // PRE means preformatted, and is a very common case, so don't create
    -    // unnecessary computed style objects.
    -    if ('PRE' === node.tagName) { return true; }
    -    if (!newlineRe.test(content)) { return true; }  // Don't care
    -    var whitespace = '';
    -    // For disconnected nodes, IE has no currentStyle.
    -    if (node.currentStyle) {
    -      whitespace = node.currentStyle.whiteSpace;
    -    } else if (window.getComputedStyle) {
    -      // Firefox makes a best guess if node is disconnected whereas Safari
    -      // returns the empty string.
    -      whitespace = window.getComputedStyle(node, null).whiteSpace;
    -    }
    -    return !whitespace || whitespace === 'pre';
    -  }
    -
    -  function normalizedHtml(node, out, opt_sortAttrs) {
    -    switch (node.nodeType) {
    -      case 1:  // an element
    -        var name = node.tagName.toLowerCase();
    -
    -        out.push('<', name);
    -        var attrs = node.attributes;
    -        var n = attrs.length;
    -        if (n) {
    -          if (opt_sortAttrs) {
    -            var sortedAttrs = [];
    -            for (var i = n; --i >= 0;) { sortedAttrs[i] = attrs[i]; }
    -            sortedAttrs.sort(function (a, b) {
    -                return (a.name < b.name) ? -1 : a.name === b.name ? 0 : 1;
    -              });
    -            attrs = sortedAttrs;
    -          }
    -          for (var i = 0; i < n; ++i) {
    -            var attr = attrs[i];
    -            if (!attr.specified) { continue; }
    -            out.push(' ', attr.name.toLowerCase(),
    -                     '="', attribToHtml(attr.value), '"');
    -          }
    -        }
    -        out.push('>');
    -        for (var child = node.firstChild; child; child = child.nextSibling) {
    -          normalizedHtml(child, out, opt_sortAttrs);
    -        }
    -        if (node.firstChild || !/^(?:br|link|img)$/.test(name)) {
    -          out.push('<\/', name, '>');
    -        }
    -        break;
    -      case 3: case 4: // text
    -        out.push(textToHtml(node.nodeValue));
    -        break;
    -    }
    -  }
    -
    -  /**
    -   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
    -   * matches the union o the sets o strings matched d by the input RegExp.
    -   * Since it matches globally, if the input strings have a start-of-input
    -   * anchor (/^.../), it is ignored for the purposes of unioning.
    -   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
    -   * @return {RegExp} a global regex.
    -   */
    -  function combinePrefixPatterns(regexs) {
    -    var capturedGroupIndex = 0;
    -
    -    var needToFoldCase = false;
    -    var ignoreCase = false;
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.ignoreCase) {
    -        ignoreCase = true;
    -      } else if (/[a-z]/i.test(regex.source.replace(
    -                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
    -        needToFoldCase = true;
    -        ignoreCase = false;
    -        break;
    -      }
    -    }
    -
    -    function decodeEscape(charsetPart) {
    -      if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }
    -      switch (charsetPart.charAt(1)) {
    -        case 'b': return 8;
    -        case 't': return 9;
    -        case 'n': return 0xa;
    -        case 'v': return 0xb;
    -        case 'f': return 0xc;
    -        case 'r': return 0xd;
    -        case 'u': case 'x':
    -          return parseInt(charsetPart.substring(2), 16)
    -              || charsetPart.charCodeAt(1);
    -        case '0': case '1': case '2': case '3': case '4':
    -        case '5': case '6': case '7':
    -          return parseInt(charsetPart.substring(1), 8);
    -        default: return charsetPart.charCodeAt(1);
    -      }
    -    }
    -
    -    function encodeEscape(charCode) {
    -      if (charCode < 0x20) {
    -        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
    -      }
    -      var ch = String.fromCharCode(charCode);
    -      if (ch === '\\' || ch === '-' || ch === '[' || ch === ']') {
    -        ch = '\\' + ch;
    -      }
    -      return ch;
    -    }
    -
    -    function caseFoldCharset(charSet) {
    -      var charsetParts = charSet.substring(1, charSet.length - 1).match(
    -          new RegExp(
    -              '\\\\u[0-9A-Fa-f]{4}'
    -              + '|\\\\x[0-9A-Fa-f]{2}'
    -              + '|\\\\[0-3][0-7]{0,2}'
    -              + '|\\\\[0-7]{1,2}'
    -              + '|\\\\[\\s\\S]'
    -              + '|-'
    -              + '|[^-\\\\]',
    -              'g'));
    -      var groups = [];
    -      var ranges = [];
    -      var inverse = charsetParts[0] === '^';
    -      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
    -        var p = charsetParts[i];
    -        switch (p) {
    -          case '\\B': case '\\b':
    -          case '\\D': case '\\d':
    -          case '\\S': case '\\s':
    -          case '\\W': case '\\w':
    -            groups.push(p);
    -            continue;
    -        }
    -        var start = decodeEscape(p);
    -        var end;
    -        if (i + 2 < n && '-' === charsetParts[i + 1]) {
    -          end = decodeEscape(charsetParts[i + 2]);
    -          i += 2;
    -        } else {
    -          end = start;
    -        }
    -        ranges.push([start, end]);
    -        // If the range might intersect letters, then expand it.
    -        if (!(end < 65 || start > 122)) {
    -          if (!(end < 65 || start > 90)) {
    -            ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
    -          }
    -          if (!(end < 97 || start > 122)) {
    -            ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
    -          }
    -        }
    -      }
    -
    -      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
    -      // -> [[1, 12], [14, 14], [16, 17]]
    -      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
    -      var consolidatedRanges = [];
    -      var lastRange = [NaN, NaN];
    -      for (var i = 0; i < ranges.length; ++i) {
    -        var range = ranges[i];
    -        if (range[0] <= lastRange[1] + 1) {
    -          lastRange[1] = Math.max(lastRange[1], range[1]);
    -        } else {
    -          consolidatedRanges.push(lastRange = range);
    -        }
    -      }
    -
    -      var out = ['['];
    -      if (inverse) { out.push('^'); }
    -      out.push.apply(out, groups);
    -      for (var i = 0; i < consolidatedRanges.length; ++i) {
    -        var range = consolidatedRanges[i];
    -        out.push(encodeEscape(range[0]));
    -        if (range[1] > range[0]) {
    -          if (range[1] + 1 > range[0]) { out.push('-'); }
    -          out.push(encodeEscape(range[1]));
    -        }
    -      }
    -      out.push(']');
    -      return out.join('');
    -    }
    -
    -    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
    -      // Split into character sets, escape sequences, punctuation strings
    -      // like ('(', '(?:', ')', '^'), and runs of characters that do not
    -      // include any of the above.
    -      var parts = regex.source.match(
    -          new RegExp(
    -              '(?:'
    -              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
    -              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
    -              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
    -              + '|\\\\[0-9]+'  // a back-reference or octal escape
    -              + '|\\\\[^ux0-9]'  // other escape sequence
    -              + '|\\(\\?[:!=]'  // start of a non-capturing group
    -              + '|[\\(\\)\\^]'  // start/emd of a group, or line start
    -              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
    -              + ')',
    -              'g'));
    -      var n = parts.length;
    -
    -      // Maps captured group numbers to the number they will occupy in
    -      // the output or to -1 if that has not been determined, or to
    -      // undefined if they need not be capturing in the output.
    -      var capturedGroups = [];
    -
    -      // Walk over and identify back references to build the capturedGroups
    -      // mapping.
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          // groups are 1-indexed, so max group index is count of '('
    -          ++groupIndex;
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue && decimalValue <= groupIndex) {
    -            capturedGroups[decimalValue] = -1;
    -          }
    -        }
    -      }
    -
    -      // Renumber groups and reduce capturing groups to non-capturing groups
    -      // where possible.
    -      for (var i = 1; i < capturedGroups.length; ++i) {
    -        if (-1 === capturedGroups[i]) {
    -          capturedGroups[i] = ++capturedGroupIndex;
    -        }
    -      }
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          ++groupIndex;
    -          if (capturedGroups[groupIndex] === undefined) {
    -            parts[i] = '(?:';
    -          }
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue && decimalValue <= groupIndex) {
    -            parts[i] = '\\' + capturedGroups[groupIndex];
    -          }
    -        }
    -      }
    -
    -      // Remove any prefix anchors so that the output will match anywhere.
    -      // ^^ really does mean an anchored match though.
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
    -      }
    -
    -      // Expand letters to groupts to handle mixing of case-sensitive and
    -      // case-insensitive patterns if necessary.
    -      if (regex.ignoreCase && needToFoldCase) {
    -        for (var i = 0; i < n; ++i) {
    -          var p = parts[i];
    -          var ch0 = p.charAt(0);
    -          if (p.length >= 2 && ch0 === '[') {
    -            parts[i] = caseFoldCharset(p);
    -          } else if (ch0 !== '\\') {
    -            // TODO: handle letters in numeric escapes.
    -            parts[i] = p.replace(
    -                /[a-zA-Z]/g,
    -                function (ch) {
    -                  var cc = ch.charCodeAt(0);
    -                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
    -                });
    -          }
    -        }
    -      }
    -
    -      return parts.join('');
    -    }
    -
    -    var rewritten = [];
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.global || regex.multiline) { throw new Error('' + regex); }
    -      rewritten.push(
    -          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
    -    }
    -
    -    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
    -  }
    -
    -  var PR_innerHtmlWorks = null;
    -  function getInnerHtml(node) {
    -    // inner html is hopelessly broken in Safari 2.0.4 when the content is
    -    // an html description of well formed XML and the containing tag is a PRE
    -    // tag, so we detect that case and emulate innerHTML.
    -    if (null === PR_innerHtmlWorks) {
    -      var testNode = document.createElement('PRE');
    -      testNode.appendChild(
    -          document.createTextNode('<!DOCTYPE foo PUBLIC "foo bar">\n<foo />'));
    -      PR_innerHtmlWorks = !/</.test(testNode.innerHTML);
    -    }
    -
    -    if (PR_innerHtmlWorks) {
    -      var content = node.innerHTML;
    -      // XMP tags contain unescaped entities so require special handling.
    -      if (isRawContent(node)) {
    -        content = textToHtml(content);
    -      } else if (!isPreformatted(node, content)) {
    -        content = content.replace(/(<br\s*\/?>)[\r\n]+/g, '$1')
    -            .replace(/(?:[\r\n]+[ \t]*)+/g, ' ');
    -      }
    -      return content;
    -    }
    -
    -    var out = [];
    -    for (var child = node.firstChild; child; child = child.nextSibling) {
    -      normalizedHtml(child, out);
    -    }
    -    return out.join('');
    -  }
    -
    -  /** returns a function that expand tabs to spaces.  This function can be fed
    -    * successive chunks of text, and will maintain its own internal state to
    -    * keep track of how tabs are expanded.
    -    * @return {function (string) : string} a function that takes
    -    *   plain text and return the text with tabs expanded.
    -    * @private
    -    */
    -  function makeTabExpander(tabWidth) {
    -    var SPACES = '                ';
    -    var charInLine = 0;
    -
    -    return function (plainText) {
    -      // walk over each character looking for tabs and newlines.
    -      // On tabs, expand them.  On newlines, reset charInLine.
    -      // Otherwise increment charInLine
    -      var out = null;
    -      var pos = 0;
    -      for (var i = 0, n = plainText.length; i < n; ++i) {
    -        var ch = plainText.charAt(i);
    -
    -        switch (ch) {
    -          case '\t':
    -            if (!out) { out = []; }
    -            out.push(plainText.substring(pos, i));
    -            // calculate how much space we need in front of this part
    -            // nSpaces is the amount of padding -- the number of spaces needed
    -            // to move us to the next column, where columns occur at factors of
    -            // tabWidth.
    -            var nSpaces = tabWidth - (charInLine % tabWidth);
    -            charInLine += nSpaces;
    -            for (; nSpaces >= 0; nSpaces -= SPACES.length) {
    -              out.push(SPACES.substring(0, nSpaces));
    -            }
    -            pos = i + 1;
    -            break;
    -          case '\n':
    -            charInLine = 0;
    -            break;
    -          default:
    -            ++charInLine;
    -        }
    -      }
    -      if (!out) { return plainText; }
    -      out.push(plainText.substring(pos));
    -      return out.join('');
    -    };
    -  }
    -
    -  var pr_chunkPattern = new RegExp(
    -      '[^<]+'  // A run of characters other than '<'
    -      + '|<\!--[\\s\\S]*?--\>'  // an HTML comment
    -      + '|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>'  // a CDATA section
    -      // a probable tag that should not be highlighted
    -      + '|<\/?[a-zA-Z](?:[^>\"\']|\'[^\']*\'|\"[^\"]*\")*>'
    -      + '|<',  // A '<' that does not begin a larger chunk
    -      'g');
    -  var pr_commentPrefix = /^<\!--/;
    -  var pr_cdataPrefix = /^<!\[CDATA\[/;
    -  var pr_brPrefix = /^<br\b/i;
    -  var pr_tagNameRe = /^<(\/?)([a-zA-Z][a-zA-Z0-9]*)/;
    -
    -  /** split markup into chunks of html tags (style null) and
    -    * plain text (style {@link #PR_PLAIN}), converting tags which are
    -    * significant for tokenization (<br>) into their textual equivalent.
    -    *
    -    * @param {string} s html where whitespace is considered significant.
    -    * @return {Object} source code and extracted tags.
    -    * @private
    -    */
    -  function extractTags(s) {
    -    // since the pattern has the 'g' modifier and defines no capturing groups,
    -    // this will return a list of all chunks which we then classify and wrap as
    -    // PR_Tokens
    -    var matches = s.match(pr_chunkPattern);
    -    var sourceBuf = [];
    -    var sourceBufLen = 0;
    -    var extractedTags = [];
    -    if (matches) {
    -      for (var i = 0, n = matches.length; i < n; ++i) {
    -        var match = matches[i];
    -        if (match.length > 1 && match.charAt(0) === '<') {
    -          if (pr_commentPrefix.test(match)) { continue; }
    -          if (pr_cdataPrefix.test(match)) {
    -            // strip CDATA prefix and suffix.  Don't unescape since it's CDATA
    -            sourceBuf.push(match.substring(9, match.length - 3));
    -            sourceBufLen += match.length - 12;
    -          } else if (pr_brPrefix.test(match)) {
    -            // <br> tags are lexically significant so convert them to text.
    -            // This is undone later.
    -            sourceBuf.push('\n');
    -            ++sourceBufLen;
    -          } else {
    -            if (match.indexOf(PR_NOCODE) >= 0 && isNoCodeTag(match)) {
    -              // A <span class="nocode"> will start a section that should be
    -              // ignored.  Continue walking the list until we see a matching end
    -              // tag.
    -              var name = match.match(pr_tagNameRe)[2];
    -              var depth = 1;
    -              var j;
    -              end_tag_loop:
    -              for (j = i + 1; j < n; ++j) {
    -                var name2 = matches[j].match(pr_tagNameRe);
    -                if (name2 && name2[2] === name) {
    -                  if (name2[1] === '/') {
    -                    if (--depth === 0) { break end_tag_loop; }
    -                  } else {
    -                    ++depth;
    -                  }
    -                }
    -              }
    -              if (j < n) {
    -                extractedTags.push(
    -                    sourceBufLen, matches.slice(i, j + 1).join(''));
    -                i = j;
    -              } else {  // Ignore unclosed sections.
    -                extractedTags.push(sourceBufLen, match);
    -              }
    -            } else {
    -              extractedTags.push(sourceBufLen, match);
    -            }
    -          }
    -        } else {
    -          var literalText = htmlToText(match);
    -          sourceBuf.push(literalText);
    -          sourceBufLen += literalText.length;
    -        }
    -      }
    -    }
    -    return { source: sourceBuf.join(''), tags: extractedTags };
    -  }
    -
    -  /** True if the given tag contains a class attribute with the nocode class. */
    -  function isNoCodeTag(tag) {
    -    return !!tag
    -        // First canonicalize the representation of attributes
    -        .replace(/\s(\w+)\s*=\s*(?:\"([^\"]*)\"|'([^\']*)'|(\S+))/g,
    -                 ' $1="$2$3$4"')
    -        // Then look for the attribute we want.
    -        .match(/[cC][lL][aA][sS][sS]=\"[^\"]*\bnocode\b/);
    -  }
    -
    -  /**
    -   * Apply the given language handler to sourceCode and add the resulting
    -   * decorations to out.
    -   * @param {number} basePos the index of sourceCode within the chunk of source
    -   *    whose decorations are already present on out.
    -   */
    -  function appendDecorations(basePos, sourceCode, langHandler, out) {
    -    if (!sourceCode) { return; }
    -    var job = {
    -      source: sourceCode,
    -      basePos: basePos
    -    };
    -    langHandler(job);
    -    out.push.apply(out, job.decorations);
    -  }
    -
    -  /** Given triples of [style, pattern, context] returns a lexing function,
    -    * The lexing function interprets the patterns to find token boundaries and
    -    * returns a decoration list of the form
    -    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
    -    * where index_n is an index into the sourceCode, and style_n is a style
    -    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
    -    * all characters in sourceCode[index_n-1:index_n].
    -    *
    -    * The stylePatterns is a list whose elements have the form
    -    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    -    *
    -    * Style is a style constant like PR_PLAIN, or can be a string of the
    -    * form 'lang-FOO', where FOO is a language extension describing the
    -    * language of the portion of the token in $1 after pattern executes.
    -    * E.g., if style is 'lang-lisp', and group 1 contains the text
    -    * '(hello (world))', then that portion of the token will be passed to the
    -    * registered lisp handler for formatting.
    -    * The text before and after group 1 will be restyled using this decorator
    -    * so decorators should take care that this doesn't result in infinite
    -    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
    -    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
    -    * '<script>foo()<\/script>', which would cause the current decorator to
    -    * be called with '<script>' which would not match the same rule since
    -    * group 1 must not be empty, so it would be instead styled as PR_TAG by
    -    * the generic tag rule.  The handler registered for the 'js' extension would
    -    * then be called with 'foo()', and finally, the current decorator would
    -    * be called with '<\/script>' which would not match the original rule and
    -    * so the generic tag rule would identify it as a tag.
    -    *
    -    * Pattern must only match prefixes, and if it matches a prefix, then that
    -    * match is considered a token with the same style.
    -    *
    -    * Context is applied to the last non-whitespace, non-comment token
    -    * recognized.
    -    *
    -    * Shortcut is an optional string of characters, any of which, if the first
    -    * character, gurantee that this pattern and only this pattern matches.
    -    *
    -    * @param {Array} shortcutStylePatterns patterns that always start with
    -    *   a known character.  Must have a shortcut string.
    -    * @param {Array} fallthroughStylePatterns patterns that will be tried in
    -    *   order if the shortcut ones fail.  May have shortcuts.
    -    *
    -    * @return {function (Object)} a
    -    *   function that takes source code and returns a list of decorations.
    -    */
    -  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
    -    var shortcuts = {};
    -    var tokenizer;
    -    (function () {
    -      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
    -      var allRegexs = [];
    -      var regexKeys = {};
    -      for (var i = 0, n = allPatterns.length; i < n; ++i) {
    -        var patternParts = allPatterns[i];
    -        var shortcutChars = patternParts[3];
    -        if (shortcutChars) {
    -          for (var c = shortcutChars.length; --c >= 0;) {
    -            shortcuts[shortcutChars.charAt(c)] = patternParts;
    -          }
    -        }
    -        var regex = patternParts[1];
    -        var k = '' + regex;
    -        if (!regexKeys.hasOwnProperty(k)) {
    -          allRegexs.push(regex);
    -          regexKeys[k] = null;
    -        }
    -      }
    -      allRegexs.push(/[\0-\uffff]/);
    -      tokenizer = combinePrefixPatterns(allRegexs);
    -    })();
    -
    -    var nPatterns = fallthroughStylePatterns.length;
    -    var notWs = /\S/;
    -
    -    /**
    -     * Lexes job.source and produces an output array job.decorations of style
    -     * classes preceded by the position at which they start in job.source in
    -     * order.
    -     *
    -     * @param {Object} job an object like {@code
    -     *    source: {string} sourceText plain text,
    -     *    basePos: {int} position of job.source in the larger chunk of
    -     *        sourceCode.
    -     * }
    -     */
    -    var decorate = function (job) {
    -      var sourceCode = job.source, basePos = job.basePos;
    -      /** Even entries are positions in source in ascending order.  Odd enties
    -        * are style markers (e.g., PR_COMMENT) that run from that position until
    -        * the end.
    -        * @type {Array.<number|string>}
    -        */
    -      var decorations = [basePos, PR_PLAIN];
    -      var pos = 0;  // index into sourceCode
    -      var tokens = sourceCode.match(tokenizer) || [];
    -      var styleCache = {};
    -
    -      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
    -        var token = tokens[ti];
    -        var style = styleCache[token];
    -        var match = void 0;
    -
    -        var isEmbedded;
    -        if (typeof style === 'string') {
    -          isEmbedded = false;
    -        } else {
    -          var patternParts = shortcuts[token.charAt(0)];
    -          if (patternParts) {
    -            match = token.match(patternParts[1]);
    -            style = patternParts[0];
    -          } else {
    -            for (var i = 0; i < nPatterns; ++i) {
    -              patternParts = fallthroughStylePatterns[i];
    -              match = token.match(patternParts[1]);
    -              if (match) {
    -                style = patternParts[0];
    -                break;
    -              }
    -            }
    -
    -            if (!match) {  // make sure that we make progress
    -              style = PR_PLAIN;
    -            }
    -          }
    -
    -          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
    -          if (isEmbedded && !(match && typeof match[1] === 'string')) {
    -            isEmbedded = false;
    -            style = PR_SOURCE;
    -          }
    -
    -          if (!isEmbedded) { styleCache[token] = style; }
    -        }
    -
    -        var tokenStart = pos;
    -        pos += token.length;
    -
    -        if (!isEmbedded) {
    -          decorations.push(basePos + tokenStart, style);
    -        } else {  // Treat group 1 as an embedded block of source code.
    -          var embeddedSource = match[1];
    -          var embeddedSourceStart = token.indexOf(embeddedSource);
    -          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
    -          if (match[2]) {
    -            // If embeddedSource can be blank, then it would match at the
    -            // beginning which would cause us to infinitely recurse on the
    -            // entire token, so we catch the right context in match[2].
    -            embeddedSourceEnd = token.length - match[2].length;
    -            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
    -          }
    -          var lang = style.substring(5);
    -          // Decorate the left of the embedded source
    -          appendDecorations(
    -              basePos + tokenStart,
    -              token.substring(0, embeddedSourceStart),
    -              decorate, decorations);
    -          // Decorate the embedded source
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceStart,
    -              embeddedSource,
    -              langHandlerForExtension(lang, embeddedSource),
    -              decorations);
    -          // Decorate the right of the embedded section
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceEnd,
    -              token.substring(embeddedSourceEnd),
    -              decorate, decorations);
    -        }
    -      }
    -      job.decorations = decorations;
    -    };
    -    return decorate;
    -  }
    -
    -  /** returns a function that produces a list of decorations from source text.
    -    *
    -    * This code treats ", ', and ` as string delimiters, and \ as a string
    -    * escape.  It does not recognize perl's qq() style strings.
    -    * It has no special handling for double delimiter escapes as in basic, or
    -    * the tripled delimiters used in python, but should work on those regardless
    -    * although in those cases a single string literal may be broken up into
    -    * multiple adjacent string literals.
    -    *
    -    * It recognizes C, C++, and shell style comments.
    -    *
    -    * @param {Object} options a set of optional parameters.
    -    * @return {function (Object)} a function that examines the source code
    -    *     in the input job and builds the decoration list.
    -    */
    -  function sourceDecorator(options) {
    -    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
    -    if (options['tripleQuotedStrings']) {
    -      // '''multi-line-string''', 'single-line-string', and double-quoted
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
    -           null, '\'"']);
    -    } else if (options['multiLineStrings']) {
    -      // 'multi-line-string', "multi-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
    -           null, '\'"`']);
    -    } else {
    -      // 'single-line-string', "single-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,
    -           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
    -           null, '"\'']);
    -    }
    -    if (options['verbatimStrings']) {
    -      // verbatim-string-literal production from the C# grammar.  See issue 93.
    -      fallthroughStylePatterns.push(
    -          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
    -    }
    -    if (options['hashComments']) {
    -      if (options['cStyleComments']) {
    -        // Stop C preprocessor declarations at an unclosed open comment
    -        shortcutStylePatterns.push(
    -            [PR_COMMENT, /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,
    -             null, '#']);
    -        fallthroughStylePatterns.push(
    -            [PR_STRING,
    -             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,
    -             null]);
    -      } else {
    -        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
    -      }
    -    }
    -    if (options['cStyleComments']) {
    -      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
    -      fallthroughStylePatterns.push(
    -          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
    -    }
    -    if (options['regexLiterals']) {
    -      var REGEX_LITERAL = (
    -          // A regular expression literal starts with a slash that is
    -          // not followed by * or / so that it is not confused with
    -          // comments.
    -          '/(?=[^/*])'
    -          // and then contains any number of raw characters,
    -          + '(?:[^/\\x5B\\x5C]'
    -          // escape sequences (\x5C),
    -          +    '|\\x5C[\\s\\S]'
    -          // or non-nesting character sets (\x5B\x5D);
    -          +    '|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+'
    -          // finally closed by a /.
    -          + '/');
    -      fallthroughStylePatterns.push(
    -          ['lang-regex',
    -           new RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
    -           ]);
    -    }
    -
    -    var keywords = options['keywords'].replace(/^\s+|\s+$/g, '');
    -    if (keywords.length) {
    -      fallthroughStylePatterns.push(
    -          [PR_KEYWORD,
    -           new RegExp('^(?:' + keywords.replace(/\s+/g, '|') + ')\\b'), null]);
    -    }
    -
    -    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
    -    fallthroughStylePatterns.push(
    -        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
    -        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_TYPE,        /^@?[A-Z]+[a-z][A-Za-z_$@0-9]*/, null],
    -        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_LITERAL,
    -         new RegExp(
    -             '^(?:'
    -             // A hex number
    -             + '0x[a-f0-9]+'
    -             // or an octal or decimal number,
    -             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
    -             // possibly in scientific notation
    -             + '(?:e[+\\-]?\\d+)?'
    -             + ')'
    -             // with an optional modifier like UL for unsigned long
    -             + '[a-z]*', 'i'),
    -         null, '0123456789'],
    -        [PR_PUNCTUATION, /^.[^\s\w\.$@\'\"\`\/\#]*/, null]);
    -
    -    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
    -  }
    -
    -  var decorateSource = sourceDecorator({
    -        'keywords': ALL_KEYWORDS,
    -        'hashComments': true,
    -        'cStyleComments': true,
    -        'multiLineStrings': true,
    -        'regexLiterals': true
    -      });
    -
    -  /** Breaks {@code job.source} around style boundaries in
    -    * {@code job.decorations} while re-interleaving {@code job.extractedTags},
    -    * and leaves the result in {@code job.prettyPrintedHtml}.
    -    * @param {Object} job like {
    -    *    source: {string} source as plain text,
    -    *    extractedTags: {Array.<number|string>} extractedTags chunks of raw
    -    *                   html preceded by their position in {@code job.source}
    -    *                   in order
    -    *    decorations: {Array.<number|string} an array of style classes preceded
    -    *                 by the position at which they start in job.source in order
    -    * }
    -    * @private
    -    */
    -  function recombineTagsAndDecorations(job) {
    -    var sourceText = job.source;
    -    var extractedTags = job.extractedTags;
    -    var decorations = job.decorations;
    -
    -    var html = [];
    -    // index past the last char in sourceText written to html
    -    var outputIdx = 0;
    -
    -    var openDecoration = null;
    -    var currentDecoration = null;
    -    var tagPos = 0;  // index into extractedTags
    -    var decPos = 0;  // index into decorations
    -    var tabExpander = makeTabExpander(window['PR_TAB_WIDTH']);
    -
    -    var adjacentSpaceRe = /([\r\n ]) /g;
    -    var startOrSpaceRe = /(^| ) /gm;
    -    var newlineRe = /\r\n?|\n/g;
    -    var trailingSpaceRe = /[ \r\n]$/;
    -    var lastWasSpace = true;  // the last text chunk emitted ended with a space.
    -
    -    // See bug 71 and http://stackoverflow.com/questions/136443/why-doesnt-ie7-
    -    var isIE678 = window['_pr_isIE6']();
    -    var lineBreakHtml = (
    -        isIE678
    -        ? (job.sourceNode.tagName === 'PRE'
    -           // Use line feeds instead of <br>s so that copying and pasting works
    -           // on IE.
    -           // Doing this on other browsers breaks lots of stuff since \r\n is
    -           // treated as two newlines on Firefox.
    -           ? (isIE678 === 6 ? '&#160;\r\n' :
    -              isIE678 === 7 ? '&#160;<br>\r' : '&#160;\r')
    -           // IE collapses multiple adjacent <br>s into 1 line break.
    -           // Prefix every newline with '&#160;' to prevent such behavior.
    -           // &nbsp; is the same as &#160; but works in XML as well as HTML.
    -           : '&#160;<br />')
    -        : '<br />');
    -
    -    // Look for a class like linenums or linenums:<n> where <n> is the 1-indexed
    -    // number of the first line.
    -    var numberLines = job.sourceNode.className.match(/\blinenums\b(?::(\d+))?/);
    -    var lineBreaker;
    -    if (numberLines) {
    -      var lineBreaks = [];
    -      for (var i = 0; i < 10; ++i) {
    -        lineBreaks[i] = lineBreakHtml + '</li><li class="L' + i + '">';
    -      }
    -      var lineNum = numberLines[1] && numberLines[1].length
    -          ? numberLines[1] - 1 : 0;  // Lines are 1-indexed
    -      html.push('<ol class="linenums"><li class="L', (lineNum) % 10, '"');
    -      if (lineNum) {
    -        html.push(' value="', lineNum + 1, '"');
    -      }
    -      html.push('>');
    -      lineBreaker = function () {
    -        var lb = lineBreaks[++lineNum % 10];
    -        // If a decoration is open, we need to close it before closing a list-item
    -        // and reopen it on the other side of the list item.
    -        return openDecoration
    -            ? ('</span>' + lb + '<span class="' + openDecoration + '">') : lb;
    -      };
    -    } else {
    -      lineBreaker = lineBreakHtml;
    -    }
    -
    -    // A helper function that is responsible for opening sections of decoration
    -    // and outputing properly escaped chunks of source
    -    function emitTextUpTo(sourceIdx) {
    -      if (sourceIdx > outputIdx) {
    -        if (openDecoration && openDecoration !== currentDecoration) {
    -          // Close the current decoration
    -          html.push('</span>');
    -          openDecoration = null;
    -        }
    -        if (!openDecoration && currentDecoration) {
    -          openDecoration = currentDecoration;
    -          html.push('<span class="', openDecoration, '">');
    -        }
    -        // This interacts badly with some wikis which introduces paragraph tags
    -        // into pre blocks for some strange reason.
    -        // It's necessary for IE though which seems to lose the preformattedness
    -        // of <pre> tags when their innerHTML is assigned.
    -        // http://stud3.tuwien.ac.at/~e0226430/innerHtmlQuirk.html
    -        // and it serves to undo the conversion of <br>s to newlines done in
    -        // chunkify.
    -        var htmlChunk = textToHtml(
    -            tabExpander(sourceText.substring(outputIdx, sourceIdx)))
    -            .replace(lastWasSpace
    -                     ? startOrSpaceRe
    -                     : adjacentSpaceRe, '$1&#160;');
    -        // Keep track of whether we need to escape space at the beginning of the
    -        // next chunk.
    -        lastWasSpace = trailingSpaceRe.test(htmlChunk);
    -        html.push(htmlChunk.replace(newlineRe, lineBreaker));
    -        outputIdx = sourceIdx;
    -      }
    -    }
    -
    -    while (true) {
    -      // Determine if we're going to consume a tag this time around.  Otherwise
    -      // we consume a decoration or exit.
    -      var outputTag;
    -      if (tagPos < extractedTags.length) {
    -        if (decPos < decorations.length) {
    -          // Pick one giving preference to extractedTags since we shouldn't open
    -          // a new style that we're going to have to immediately close in order
    -          // to output a tag.
    -          outputTag = extractedTags[tagPos] <= decorations[decPos];
    -        } else {
    -          outputTag = true;
    -        }
    -      } else {
    -        outputTag = false;
    -      }
    -      // Consume either a decoration or a tag or exit.
    -      if (outputTag) {
    -        emitTextUpTo(extractedTags[tagPos]);
    -        if (openDecoration) {
    -          // Close the current decoration
    -          html.push('</span>');
    -          openDecoration = null;
    -        }
    -        html.push(extractedTags[tagPos + 1]);
    -        tagPos += 2;
    -      } else if (decPos < decorations.length) {
    -        emitTextUpTo(decorations[decPos]);
    -        currentDecoration = decorations[decPos + 1];
    -        decPos += 2;
    -      } else {
    -        break;
    -      }
    -    }
    -    emitTextUpTo(sourceText.length);
    -    if (openDecoration) {
    -      html.push('</span>');
    -    }
    -    if (numberLines) { html.push('</li></ol>'); }
    -    job.prettyPrintedHtml = html.join('');
    -  }
    -
    -  /** Maps language-specific file extensions to handlers. */
    -  var langHandlerRegistry = {};
    -  /** Register a language handler for the given file extensions.
    -    * @param {function (Object)} handler a function from source code to a list
    -    *      of decorations.  Takes a single argument job which describes the
    -    *      state of the computation.   The single parameter has the form
    -    *      {@code {
    -    *        source: {string} as plain text.
    -    *        decorations: {Array.<number|string>} an array of style classes
    -    *                     preceded by the position at which they start in
    -    *                     job.source in order.
    -    *                     The language handler should assigned this field.
    -    *        basePos: {int} the position of source in the larger source chunk.
    -    *                 All positions in the output decorations array are relative
    -    *                 to the larger source chunk.
    -    *      } }
    -    * @param {Array.<string>} fileExtensions
    -    */
    -  function registerLangHandler(handler, fileExtensions) {
    -    for (var i = fileExtensions.length; --i >= 0;) {
    -      var ext = fileExtensions[i];
    -      if (!langHandlerRegistry.hasOwnProperty(ext)) {
    -        langHandlerRegistry[ext] = handler;
    -      } else if ('console' in window) {
    -        console['warn']('cannot override language handler %s', ext);
    -      }
    -    }
    -  }
    -  function langHandlerForExtension(extension, source) {
    -    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
    -      // Treat it as markup if the first non whitespace character is a < and
    -      // the last non-whitespace character is a >.
    -      extension = /^\s*</.test(source)
    -          ? 'default-markup'
    -          : 'default-code';
    -    }
    -    return langHandlerRegistry[extension];
    -  }
    -  registerLangHandler(decorateSource, ['default-code']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [],
    -          [
    -           [PR_PLAIN,       /^[^<?]+/],
    -           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
    -           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
    -           // Unescaped content in an unknown language
    -           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
    -           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
    -           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
    -           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
    -           // Unescaped content in javascript.  (Or possibly vbscript).
    -           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
    -           // Contains unescaped stylesheet content
    -           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
    -           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
    -          ]),
    -      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [
    -           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
    -           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
    -           ],
    -          [
    -           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
    -           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
    -           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
    -           [PR_PUNCTUATION,  /^[=<>\/]+/],
    -           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
    -           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
    -           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
    -           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
    -           ]),
    -      ['in.tag']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CPP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true
    -        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': 'null true false'
    -        }), ['json']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CSHARP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true,
    -          'verbatimStrings': true
    -        }), ['cs']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JAVA_KEYWORDS,
    -          'cStyleComments': true
    -        }), ['java']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': SH_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true
    -        }), ['bsh', 'csh', 'sh']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PYTHON_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'tripleQuotedStrings': true
    -        }), ['cv', 'py']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PERL_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['perl', 'pl', 'pm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': RUBY_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['rb']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JSCRIPT_KEYWORDS,
    -          'cStyleComments': true,
    -          'regexLiterals': true
    -        }), ['js']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
    -
    -  function applyDecorator(job) {
    -    var sourceCodeHtml = job.sourceCodeHtml;
    -    var opt_langExtension = job.langExtension;
    -
    -    // Prepopulate output in case processing fails with an exception.
    -    job.prettyPrintedHtml = sourceCodeHtml;
    -
    -    try {
    -      // Extract tags, and convert the source code to plain text.
    -      var sourceAndExtractedTags = extractTags(sourceCodeHtml);
    -      /** Plain text. @type {string} */
    -      var source = sourceAndExtractedTags.source;
    -      job.source = source;
    -      job.basePos = 0;
    -
    -      /** Even entries are positions in source in ascending order.  Odd entries
    -        * are tags that were extracted at that position.
    -        * @type {Array.<number|string>}
    -        */
    -      job.extractedTags = sourceAndExtractedTags.tags;
    -
    -      // Apply the appropriate language handler
    -      langHandlerForExtension(opt_langExtension, source)(job);
    -      // Integrate the decorations and tags back into the source code to produce
    -      // a decorated html string which is left in job.prettyPrintedHtml.
    -      recombineTagsAndDecorations(job);
    -    } catch (e) {
    -      if ('console' in window) {
    -        console['log'](e && e['stack'] ? e['stack'] : e);
    -      }
    -    }
    -  }
    -
    -  function prettyPrintOne(sourceCodeHtml, opt_langExtension) {
    -    var job = {
    -      sourceCodeHtml: sourceCodeHtml,
    -      langExtension: opt_langExtension
    -    };
    -    applyDecorator(job);
    -    return job.prettyPrintedHtml;
    -  }
    -
    -  function prettyPrint(opt_whenDone) {
    -    function byTagName(tn) { return document.getElementsByTagName(tn); }
    -    // fetch a list of nodes to rewrite
    -    var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
    -    var elements = [];
    -    for (var i = 0; i < codeSegments.length; ++i) {
    -      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
    -        elements.push(codeSegments[i][j]);
    -      }
    -    }
    -    codeSegments = null;
    -
    -    var clock = Date;
    -    if (!clock['now']) {
    -      clock = { 'now': function () { return (new Date).getTime(); } };
    -    }
    -
    -    // The loop is broken into a series of continuations to make sure that we
    -    // don't make the browser unresponsive when rewriting a large page.
    -    var k = 0;
    -    var prettyPrintingJob;
    -
    -    function doWork() {
    -      var endTime = (window['PR_SHOULD_USE_CONTINUATION'] ?
    -                     clock.now() + 250 /* ms */ :
    -                     Infinity);
    -      for (; k < elements.length && clock.now() < endTime; k++) {
    -        var cs = elements[k];
    -        // [JACOCO] 'prettyprint' -> 'source'
    -        if (cs.className && cs.className.indexOf('source') >= 0) {
    -          // If the classes includes a language extensions, use it.
    -          // Language extensions can be specified like
    -          //     <pre class="prettyprint lang-cpp">
    -          // the language extension "cpp" is used to find a language handler as
    -          // passed to PR_registerLangHandler.
    -          var langExtension = cs.className.match(/\blang-(\w+)\b/);
    -          if (langExtension) { langExtension = langExtension[1]; }
    -
    -          // make sure this is not nested in an already prettified element
    -          var nested = false;
    -          for (var p = cs.parentNode; p; p = p.parentNode) {
    -            if ((p.tagName === 'pre' || p.tagName === 'code' ||
    -                 p.tagName === 'xmp') &&
    -                // [JACOCO] 'prettyprint' -> 'source'
    -                p.className && p.className.indexOf('source') >= 0) {
    -              nested = true;
    -              break;
    -            }
    -          }
    -          if (!nested) {
    -            // fetch the content as a snippet of properly escaped HTML.
    -            // Firefox adds newlines at the end.
    -            var content = getInnerHtml(cs);
    -            content = content.replace(/(?:\r\n?|\n)$/, '');
    -
    -            // do the pretty printing
    -            prettyPrintingJob = {
    -              sourceCodeHtml: content,
    -              langExtension: langExtension,
    -              sourceNode: cs
    -            };
    -            applyDecorator(prettyPrintingJob);
    -            replaceWithPrettyPrintedHtml();
    -          }
    -        }
    -      }
    -      if (k < elements.length) {
    -        // finish up in a continuation
    -        setTimeout(doWork, 250);
    -      } else if (opt_whenDone) {
    -        opt_whenDone();
    -      }
    -    }
    -
    -    function replaceWithPrettyPrintedHtml() {
    -      var newContent = prettyPrintingJob.prettyPrintedHtml;
    -      if (!newContent) { return; }
    -      var cs = prettyPrintingJob.sourceNode;
    -
    -      // push the prettified html back into the tag.
    -      if (!isRawContent(cs)) {
    -        // just replace the old html with the new
    -        cs.innerHTML = newContent;
    -      } else {
    -        // we need to change the tag to a <pre> since <xmp>s do not allow
    -        // embedded tags such as the span tags used to attach styles to
    -        // sections of source code.
    -        var pre = document.createElement('PRE');
    -        for (var i = 0; i < cs.attributes.length; ++i) {
    -          var a = cs.attributes[i];
    -          if (a.specified) {
    -            var aname = a.name.toLowerCase();
    -            if (aname === 'class') {
    -              pre.className = a.value;  // For IE 6
    -            } else {
    -              pre.setAttribute(a.name, a.value);
    -            }
    -          }
    -        }
    -        pre.innerHTML = newContent;
    -
    -        // remove the old
    -        cs.parentNode.replaceChild(pre, cs);
    -        cs = pre;
    -      }
    -    }
    -
    -    doWork();
    -  }
    -
    -  window['PR_normalizedHtml'] = normalizedHtml;
    -  window['prettyPrintOne'] = prettyPrintOne;
    -  window['prettyPrint'] = prettyPrint;
    -  window['PR'] = {
    -        'combinePrefixPatterns': combinePrefixPatterns,
    -        'createSimpleLexer': createSimpleLexer,
    -        'registerLangHandler': registerLangHandler,
    -        'sourceDecorator': sourceDecorator,
    -        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
    -        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
    -        'PR_COMMENT': PR_COMMENT,
    -        'PR_DECLARATION': PR_DECLARATION,
    -        'PR_KEYWORD': PR_KEYWORD,
    -        'PR_LITERAL': PR_LITERAL,
    -        'PR_NOCODE': PR_NOCODE,
    -        'PR_PLAIN': PR_PLAIN,
    -        'PR_PUNCTUATION': PR_PUNCTUATION,
    -        'PR_SOURCE': PR_SOURCE,
    -        'PR_STRING': PR_STRING,
    -        'PR_TAG': PR_TAG,
    -        'PR_TYPE': PR_TYPE
    -      };
    -})();
    diff --git a/job/jacoco/jacoco-resources/redbar.gif b/job/jacoco/jacoco-resources/redbar.gif
    deleted file mode 100644
    index c2f71469ba995289439d86ea39b1b33edb03388c..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 91
    zcmZ?wbhEHbWMtrCc+AD{pP&D~tn7aso&R25|6^nS*Vg{;>G{84!T)8;{;yfXu$BQ0
    fDgI<(<YM4w&|v@qkQodt90ol_LPjnP91PX~3&9+X
    
    diff --git a/job/jacoco/jacoco-resources/report.css b/job/jacoco/jacoco-resources/report.css
    deleted file mode 100644
    index dd936bca5..000000000
    --- a/job/jacoco/jacoco-resources/report.css
    +++ /dev/null
    @@ -1,243 +0,0 @@
    -body, td {
    -  font-family:sans-serif;
    -  font-size:10pt;
    -}
    -
    -h1 {
    -  font-weight:bold;
    -  font-size:18pt;
    -}
    -
    -.breadcrumb {
    -  border:#d6d3ce 1px solid;
    -  padding:2px 4px 2px 4px;
    -}
    -
    -.breadcrumb .info {
    -  float:right;
    -}
    -
    -.breadcrumb .info a {
    -  margin-left:8px;
    -}
    -
    -.el_report {
    -  padding-left:18px;
    -  background-image:url(report.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_group {
    -  padding-left:18px;
    -  background-image:url(group.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_bundle {
    -  padding-left:18px;
    -  background-image:url(bundle.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_package {
    -  padding-left:18px;
    -  background-image:url(package.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_class {
    -  padding-left:18px;
    -  background-image:url(class.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_source {
    -  padding-left:18px;
    -  background-image:url(source.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_method {
    -  padding-left:18px;
    -  background-image:url(method.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -.el_session {
    -  padding-left:18px;
    -  background-image:url(session.gif);
    -  background-position:left center;
    -  background-repeat:no-repeat;
    -}
    -
    -pre.source {
    -  border:#d6d3ce 1px solid;
    -  font-family:monospace;
    -}
    -
    -pre.source ol {
    -  margin-bottom: 0px;
    -  margin-top: 0px;
    -}
    -
    -pre.source li {
    -  border-left: 1px solid #D6D3CE;
    -  color: #A0A0A0;
    -  padding-left: 0px;
    -}
    -
    -pre.source span.fc {
    -  background-color:#ccffcc;
    -}
    -
    -pre.source span.nc {
    -  background-color:#ffaaaa;
    -}
    -
    -pre.source span.pc {
    -  background-color:#ffffcc;
    -}
    -
    -pre.source span.bfc {
    -  background-image: url(branchfc.gif);
    -  background-repeat: no-repeat;
    -  background-position: 2px center;
    -}
    -
    -pre.source span.bfc:hover {
    -  background-color:#80ff80;
    -}
    -
    -pre.source span.bnc {
    -  background-image: url(branchnc.gif);
    -  background-repeat: no-repeat;
    -  background-position: 2px center;
    -}
    -
    -pre.source span.bnc:hover {
    -  background-color:#ff8080;
    -}
    -
    -pre.source span.bpc {
    -  background-image: url(branchpc.gif);
    -  background-repeat: no-repeat;
    -  background-position: 2px center;
    -}
    -
    -pre.source span.bpc:hover {
    -  background-color:#ffff80;
    -}
    -
    -table.coverage {
    -  empty-cells:show;
    -  border-collapse:collapse;
    -}
    -
    -table.coverage thead {
    -  background-color:#e0e0e0;
    -}
    -
    -table.coverage thead td {
    -  white-space:nowrap;
    -  padding:2px 14px 0px 6px;
    -  border-bottom:#b0b0b0 1px solid;
    -}
    -
    -table.coverage thead td.bar {
    -  border-left:#cccccc 1px solid;
    -}
    -
    -table.coverage thead td.ctr1 {
    -  text-align:right;
    -  border-left:#cccccc 1px solid;
    -}
    -
    -table.coverage thead td.ctr2 {
    -  text-align:right;
    -  padding-left:2px;
    -}
    -
    -table.coverage thead td.sortable {
    -  cursor:pointer;
    -  background-image:url(sort.gif);
    -  background-position:right center;
    -  background-repeat:no-repeat;
    -}
    -
    -table.coverage thead td.up {
    -  background-image:url(up.gif);
    -}
    -
    -table.coverage thead td.down {
    -  background-image:url(down.gif);
    -}
    -
    -table.coverage tbody td {
    -  white-space:nowrap;
    -  padding:2px 6px 2px 6px;
    -  border-bottom:#d6d3ce 1px solid;
    -}
    -
    -table.coverage tbody tr:hover {
    -  background: #f0f0d0 !important;
    -}
    -
    -table.coverage tbody td.bar {
    -  border-left:#e8e8e8 1px solid;
    -}
    -
    -table.coverage tbody td.ctr1 {
    -  text-align:right;
    -  padding-right:14px;
    -  border-left:#e8e8e8 1px solid;
    -}
    -
    -table.coverage tbody td.ctr2 {
    -  text-align:right;
    -  padding-right:14px;
    -  padding-left:2px;
    -}
    -
    -table.coverage tfoot td {
    -  white-space:nowrap;
    -  padding:2px 6px 2px 6px;
    -}
    -
    -table.coverage tfoot td.bar {
    -  border-left:#e8e8e8 1px solid;
    -}
    -
    -table.coverage tfoot td.ctr1 {
    -  text-align:right;
    -  padding-right:14px;
    -  border-left:#e8e8e8 1px solid;
    -}
    -
    -table.coverage tfoot td.ctr2 {
    -  text-align:right;
    -  padding-right:14px;
    -  padding-left:2px;
    -}
    -
    -.footer {
    -  margin-top:20px;
    -  border-top:#d6d3ce 1px solid;
    -  padding-top:2px;
    -  font-size:8pt;
    -  color:#a0a0a0;
    -}
    -
    -.footer a {
    -  color:#a0a0a0;
    -}
    -
    -.right {
    -  float:right;
    -}
    diff --git a/job/jacoco/jacoco-resources/report.gif b/job/jacoco/jacoco-resources/report.gif
    deleted file mode 100644
    index 8547be50bf3e97e725920927b5aa4cdb031f4823..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 363
    zcmZ?wbhEHb6krfwSZc{In}J~s1H&!`1_uX+xVSjMb&S>db~X8S)dhAn1$OlXwvB~0
    zO@%hC#Wq5_7&^+V`^qgRRa;E2HJ?*&DsqWoev|2fCetO&CQDmPR<;_iXfs~ZZnVC`
    za8s8-+pK*(^AAm4c5K#~(^ocST-lU)byMc8y)_R`^xu2&{oaco_g{R!|Ki8Pmp>lA
    z{_*VHkC*R%zWMa)!{^_hzyAL8?f2(zzrTL}{q@K1Z$Ey2|M}<VuRs5>0mYvzj9d)%
    z3_1)z0P+(9TgQR<1s*zF)+bahX*_u_??Pbv&V#KE^V2&`bhGjjR;*MxC8EFO_3_}<
    zH?w9WrJ7AX`tJM8r525X{~8+WorLsRL^?W{nR=L*odosT`KItOGtTI963}JgV_m??
    z%&>&9-=1G*^3>@wm-A|~FmK+nbvd`DhNhP0UUhXIS1vYAPL5-o?Ce}VXI&i`tO1G(
    BvdRDe
    
    diff --git a/job/jacoco/jacoco-resources/session.gif b/job/jacoco/jacoco-resources/session.gif
    deleted file mode 100644
    index 0151bad8a001e5cc5cc7723a608185f746b7f8c1..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 213
    zcmZ?wbhEHb6krfwXc1xPS$gU4xw~t2pG#?5#^Be>V3WrXI-S9<hrzA(|Nr^_@5k?-
    zZ~y=IhyVNSXZ04}pKqV%t9oe5k~tY+Ar=Pzi2#Z}Sr{1@<Qa4rfB<AC18dL&^}dwM
    zX_r*ys<8N;e6mS?i^dP8jVmAd@U^}&$uv>xc~m$hYN?d{@xrG~CzZCfhpBIRC}Q>I
    kiQ?_Ai=3VZEOFW9fBwaksdwMK(Err)E%VcVRYeAC06w^MK>z>%
    
    diff --git a/job/jacoco/jacoco-resources/sort.gif b/job/jacoco/jacoco-resources/sort.gif
    deleted file mode 100644
    index 6757c2c32b57d768f3c12c4ae99a28bc32c9cbd7..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 58
    zcmZ?wbhEHb<YC}qXkcX6uwldh|Nj+#vM_QnFf!;c00|xjP6h@h!JfpGjC*fB>i!bx
    N`t(%z_h<$NYXI&b5{m!;
    
    diff --git a/job/jacoco/jacoco-resources/sort.js b/job/jacoco/jacoco-resources/sort.js
    deleted file mode 100644
    index 65f8d0e50..000000000
    --- a/job/jacoco/jacoco-resources/sort.js
    +++ /dev/null
    @@ -1,148 +0,0 @@
    -/*******************************************************************************
    - * Copyright (c) 2009, 2023 Mountainminds GmbH & Co. KG and Contributors
    - * This program and the accompanying materials are made available under
    - * the terms of the Eclipse Public License 2.0 which is available at
    - * http://www.eclipse.org/legal/epl-2.0
    - *
    - * SPDX-License-Identifier: EPL-2.0
    - *
    - * Contributors:
    - *    Marc R. Hoffmann - initial API and implementation
    - *
    - *******************************************************************************/
    -
    -(function () {
    -
    -  /**
    -   * Sets the initial sorting derived from the hash.
    -   *
    -   * @param linkelementids
    -   *          list of element ids to search for links to add sort inidcator
    -   *          hash links
    -   */
    -  function initialSort(linkelementids) {
    -    window.linkelementids = linkelementids;
    -    var hash = window.location.hash;
    -    if (hash) {
    -      var m = hash.match(/up-./);
    -      if (m) {
    -        var header = window.document.getElementById(m[0].charAt(3));
    -        if (header) {
    -          sortColumn(header, true);
    -        }
    -        return;
    -      }
    -      var m = hash.match(/dn-./);
    -      if (m) {
    -        var header = window.document.getElementById(m[0].charAt(3));
    -        if (header) {
    -          sortColumn(header, false);
    -        }
    -        return
    -      }
    -    }
    -  }
    -
    -  /**
    -   * Sorts the columns with the given header dependening on the current sort state.
    -   */
    -  function toggleSort(header) {
    -    var sortup = header.className.indexOf('down ') == 0;
    -    sortColumn(header, sortup);
    -  }
    -
    -  /**
    -   * Sorts the columns with the given header in the given direction.
    -   */
    -  function sortColumn(header, sortup) {
    -    var table = header.parentNode.parentNode.parentNode;
    -    var body = table.tBodies[0];
    -    var colidx = getNodePosition(header);
    -
    -    resetSortedStyle(table);
    -
    -    var rows = body.rows;
    -    var sortedrows = [];
    -    for (var i = 0; i < rows.length; i++) {
    -      r = rows[i];
    -      sortedrows[parseInt(r.childNodes[colidx].id.slice(1))] = r;
    -    }
    -
    -    var hash;
    -
    -    if (sortup) {
    -      for (var i = sortedrows.length - 1; i >= 0; i--) {
    -        body.appendChild(sortedrows[i]);
    -      }
    -      header.className = 'up ' + header.className;
    -      hash = 'up-' + header.id;
    -    } else {
    -      for (var i = 0; i < sortedrows.length; i++) {
    -        body.appendChild(sortedrows[i]);
    -      }
    -      header.className = 'down ' + header.className;
    -      hash = 'dn-' + header.id;
    -    }
    -
    -    setHash(hash);
    -  }
    -
    -  /**
    -   * Adds the sort indicator as a hash to the document URL and all links.
    -   */
    -  function setHash(hash) {
    -    window.document.location.hash = hash;
    -    ids = window.linkelementids;
    -    for (var i = 0; i < ids.length; i++) {
    -        setHashOnAllLinks(document.getElementById(ids[i]), hash);
    -    }
    -  }
    -
    -  /**
    -   * Extend all links within the given tag with the given hash.
    -   */
    -  function setHashOnAllLinks(tag, hash) {
    -    links = tag.getElementsByTagName("a");
    -    for (var i = 0; i < links.length; i++) {
    -        var a = links[i];
    -        var href = a.href;
    -        var hashpos = href.indexOf("#");
    -        if (hashpos != -1) {
    -            href = href.substring(0, hashpos);
    -        }
    -        a.href = href + "#" + hash;
    -    }
    -  }
    -
    -  /**
    -   * Calculates the position of a element within its parent.
    -   */
    -  function getNodePosition(element) {
    -    var pos = -1;
    -    while (element) {
    -      element = element.previousSibling;
    -      pos++;
    -    }
    -    return pos;
    -  }
    -
    -  /**
    -   * Remove the sorting indicator style from all headers.
    -   */
    -  function resetSortedStyle(table) {
    -    for (var c = table.tHead.firstChild.firstChild; c; c = c.nextSibling) {
    -      if (c.className) {
    -        if (c.className.indexOf('down ') == 0) {
    -          c.className = c.className.slice(5);
    -        }
    -        if (c.className.indexOf('up ') == 0) {
    -          c.className = c.className.slice(3);
    -        }
    -      }
    -    }
    -  }
    -
    -  window['initialSort'] = initialSort;
    -  window['toggleSort'] = toggleSort;
    -
    -})();
    diff --git a/job/jacoco/jacoco-resources/source.gif b/job/jacoco/jacoco-resources/source.gif
    deleted file mode 100644
    index b226e41c5276581db33d71525298ef572cc5d7ce..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 354
    zcmZ?wbhEHb6krfwxXQrr`Rnf=KmWY@^y|~t-#>r-`SJ62+pK*(^ACOa@_X{KW3$$r
    zUbOlAiXE5N?74dH#gDtszu$lH{mGl3&)@xg`{~!`Z@=#VMPB~6_u~7*S3h2T`1$R}
    z?`Q9Re)#(P)3@JWfBgRb^LKTLe^s%6bxA;7sb4jaQ5?`-<<ng5TVLWgvEHM%)~l!1
    zYi_IS^d`3r{dQ}59F})EE$?<()ZzT#ME{lvwpTV~T-lU)Yj4ffO_~4y|7XAeia%Kx
    z85k@XbU-p7KQXY?ADC0%p(B)eLgkXi62W-^(!DQ#v2a~Gz-z9%&!+3h!38t#X02Ds
    zad;WPFvUVOY)YY2k84HG1kp%gVW!3wVI5ap$%?8ZHc4GqO=+PiQzvV>Y72H(vk7Xs
    us!1$fvP8{QU92ZrK%7tARasP&f6JDw8m_8J3W|I7DyXXX9C3DJum%7=h^`F)
    
    diff --git a/job/jacoco/jacoco-resources/up.gif b/job/jacoco/jacoco-resources/up.gif
    deleted file mode 100644
    index 58ed21660ec467736a4d2af17d91341f7cfb556c..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 67
    zcmZ?wbhEHb<YC}qSjfcSX{EDa!-oH0p!k!8k&A(eL5G2Xk%5PSlYxOrWJ=;nroA^G
    Ub$^Kz-Nct)ygK&ScM%3_0PmU?SpWb4
    
    diff --git a/job/jacoco/jacoco-sessions.html b/job/jacoco/jacoco-sessions.html
    deleted file mode 100644
    index 894d3bc08..000000000
    --- a/job/jacoco/jacoco-sessions.html
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="jacoco-resources/report.gif" type="image/gif"/><title>Sessions</title></head><body><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="jacoco-sessions.html" class="el_session">Sessions</a></span><a href="index.html" class="el_report">job</a> &gt; <span class="el_session">Sessions</span></div><h1>Sessions</h1><p>This coverage report is based on execution data from the following sessions:</p><table class="coverage" cellspacing="0"><thead><tr><td>Session</td><td>Start Time</td><td>Dump Time</td></tr></thead><tbody><tr><td><span class="el_session">Ben-NAVA-MacBook.local-1ed3c022</span></td><td>Jan 23, 2025, 7:24:40 AM</td><td>Jan 23, 2025, 7:26:52 AM</td></tr></tbody></table><p>Execution data for the following classes is considered in this report:</p><table class="coverage" cellspacing="0"><thead><tr><td>Class</td><td>Id</td></tr></thead><tbody><tr><td><span class="el_class">antlr.ANTLRHashString</span></td><td><code>d76aa1ad5b62e838</code></td></tr><tr><td><span class="el_class">antlr.ANTLRStringBuffer</span></td><td><code>7806c279d3bcbf3e</code></td></tr><tr><td><span class="el_class">antlr.ASTFactory</span></td><td><code>7989f35853accd26</code></td></tr><tr><td><span class="el_class">antlr.ASTNULLType</span></td><td><code>d47291a566b181bc</code></td></tr><tr><td><span class="el_class">antlr.ASTPair</span></td><td><code>80316eb7c8a5a5ad</code></td></tr><tr><td><span class="el_class">antlr.BaseAST</span></td><td><code>449d452f33186c07</code></td></tr><tr><td><span class="el_class">antlr.CharBuffer</span></td><td><code>a0d276baa559ff07</code></td></tr><tr><td><span class="el_class">antlr.CharQueue</span></td><td><code>8540ae9d969eeb2f</code></td></tr><tr><td><span class="el_class">antlr.CharScanner</span></td><td><code>56f15ad5a4b8eb8a</code></td></tr><tr><td><span class="el_class">antlr.CommonAST</span></td><td><code>9dc288ae08034869</code></td></tr><tr><td><span class="el_class">antlr.CommonToken</span></td><td><code>98b949a0512a2516</code></td></tr><tr><td><span class="el_class">antlr.InputBuffer</span></td><td><code>b96bb6e13302bae7</code></td></tr><tr><td><span class="el_class">antlr.LLkParser</span></td><td><code>65e451ee04157515</code></td></tr><tr><td><span class="el_class">antlr.LexerSharedInputState</span></td><td><code>7f5fa3eb9f80aaf8</code></td></tr><tr><td><span class="el_class">antlr.Parser</span></td><td><code>7481cdc68fe00a50</code></td></tr><tr><td><span class="el_class">antlr.ParserSharedInputState</span></td><td><code>2e2439f1fe8706b3</code></td></tr><tr><td><span class="el_class">antlr.Token</span></td><td><code>5d5e6af60c810abd</code></td></tr><tr><td><span class="el_class">antlr.TokenBuffer</span></td><td><code>06357553172d049a</code></td></tr><tr><td><span class="el_class">antlr.TokenQueue</span></td><td><code>e704550dbb5fccae</code></td></tr><tr><td><span class="el_class">antlr.TreeParser</span></td><td><code>c5c88caf78d83223</code></td></tr><tr><td><span class="el_class">antlr.TreeParserSharedInputState</span></td><td><code>b8440fa651b94ccb</code></td></tr><tr><td><span class="el_class">antlr.collections.impl.ASTArray</span></td><td><code>4f3f22b37acb0b0d</code></td></tr><tr><td><span class="el_class">antlr.collections.impl.BitSet</span></td><td><code>9f70d77fe784bf79</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirContext</span></td><td><code>920335dcc384caed</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum</span></td><td><code>529f387463eddd4b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.Dstu3Version</span></td><td><code>206c3771ad335f5d</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R4BVersion</span></td><td><code>cead3c1998e81dbb</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R4Version</span></td><td><code>af68dcc5764e422b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.R5Version</span></td><td><code>6b6026857864d559</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.FhirVersionEnum.Version</span></td><td><code>14ff6dfe353dfc22</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.ParserOptions</span></td><td><code>7254e61c078eb304</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.context.api.AddProfileTagEnum</span></td><td><code>7a131104da47190d</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.i18n.HapiLocalizer</span></td><td><code>6664da8ad565afd5</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum</span></td><td><code>6fa165fa561288a9</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.1</span></td><td><code>13775c92c249c8f4</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.2</span></td><td><code>3f440233d2aceb79</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.3</span></td><td><code>57f0c4ea2e117b89</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.4</span></td><td><code>fb67eea1ea7ef1ed</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.5</span></td><td><code>9771be451acef3cd</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.model.api.TemporalPrecisionEnum.6</span></td><td><code>a21b64149545a579</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.LenientErrorHandler</span></td><td><code>bc0e5bbb20321029</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.ParseErrorHandler</span></td><td><code>6cac521d656a15fd</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.parser.StrictErrorHandler</span></td><td><code>683b9a6e2ecb796a</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.system.HapiSystemProperties</span></td><td><code>f8374a0fb8e32a7b</code></td></tr><tr><td><span class="el_class">ca.uhn.fhir.util.VersionUtil</span></td><td><code>dcffe9ba9e2c00d6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.Level</span></td><td><code>e2155b45608f35d7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.Logger</span></td><td><code>f35d4d4ad6b0173a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.LoggerContext</span></td><td><code>d057ce3cea631d6b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.PatternLayout</span></td><td><code>6b4fcc6f23c89763</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.encoder.PatternLayoutEncoder</span></td><td><code>b5df0ef8a1a735ea</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.JoranConfigurator</span></td><td><code>63bb214e0f720ae8</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ConfigurationAction</span></td><td><code>90d861250f52b75f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ConsolePluginAction</span></td><td><code>2969e4b8b532cec5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ContextNameAction</span></td><td><code>4ffd1a75c51a473f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.EvaluatorAction</span></td><td><code>cc2e7d3c2fc18087</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.InsertFromJNDIAction</span></td><td><code>fce902dbb9dbd2a7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.JMXConfiguratorAction</span></td><td><code>a58b513df0924938</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LevelAction</span></td><td><code>8f89eefaf59271f1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LoggerAction</span></td><td><code>8d55f78fdf86cda9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.LoggerContextListenerAction</span></td><td><code>835263a7d9309be9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.ReceiverAction</span></td><td><code>9e9bd00760b812f2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.joran.action.RootLoggerAction</span></td><td><code>0528540059645c3d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.jul.JULHelper</span></td><td><code>e4fe9aef50196332</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.jul.LevelChangePropagator</span></td><td><code>3d39cb08e2dd1f04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ClassicConverter</span></td><td><code>78403f02659989af</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.DateConverter</span></td><td><code>5c52dc34531b028d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.EnsureExceptionHandling</span></td><td><code>f9c97b8da786f083</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LevelConverter</span></td><td><code>05b4415a3dbcaaf4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LineSeparatorConverter</span></td><td><code>2e2dc69c3bdc6cd3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.LoggerConverter</span></td><td><code>e250f04c84d66501</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.MessageConverter</span></td><td><code>ef2f64b51bca1aac</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.NamedConverter</span></td><td><code>2d8a1e4cd16b9929</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.TargetLengthBasedClassNameAbbreviator</span></td><td><code>ec60b2fb41d57b0a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThreadConverter</span></td><td><code>a95aaedda263355c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThrowableHandlingConverter</span></td><td><code>266cc4ca75fcd39d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.pattern.ThrowableProxyConverter</span></td><td><code>46dc88ad0c97e462</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.selector.DefaultContextSelector</span></td><td><code>fd861e3242ccff2f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.sift.SiftAction</span></td><td><code>9f73df3037d696a7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.EventArgUtil</span></td><td><code>88f3990bf293da69</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.LoggerContextVO</span></td><td><code>ecac106025bca4a3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.LoggingEvent</span></td><td><code>75c5fe4974050a6f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.PlatformInfo</span></td><td><code>0e826c07ba59ae45</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.spi.TurboFilterList</span></td><td><code>aa3cf39d0c0c651e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.turbo.TurboFilter</span></td><td><code>b799953481df4445</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.ContextInitializer</span></td><td><code>f560906e9553d69f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.ContextSelectorStaticBinder</span></td><td><code>271bbf6fa66123b1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.DefaultNestedComponentRules</span></td><td><code>840b992fa00c7e60</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.EnvUtil</span></td><td><code>39b5543082458460</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.LogbackMDCAdapter</span></td><td><code>a05682a253fd41d4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.classic.util.LoggerNameUtil</span></td><td><code>b8d88c97a0cadcfa</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.BasicStatusManager</span></td><td><code>f42ab87c1f66e222</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.ConsoleAppender</span></td><td><code>d101474cda5e45c9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.ContextBase</span></td><td><code>707ceedbd09855e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.CoreConstants</span></td><td><code>09363a83cd5b4101</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.LayoutBase</span></td><td><code>e6bfd3b1edc3ab01</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.LifeCycleManager</span></td><td><code>72cb4d8e47a5b7ac</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.OutputStreamAppender</span></td><td><code>79e07918442741f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.UnsynchronizedAppenderBase</span></td><td><code>0672be5753362c70</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.encoder.EncoderBase</span></td><td><code>f2507a7276f26c10</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.encoder.LayoutWrappingEncoder</span></td><td><code>6c80790d34287d6b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.helpers.CyclicBuffer</span></td><td><code>422c7b9f7318f10a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.GenericConfigurator</span></td><td><code>3f448ac12ab6a263</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.JoranConfiguratorBase</span></td><td><code>38c4decb94b320f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AbstractEventEvaluatorAction</span></td><td><code>bf3cf252a2822906</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.Action</span></td><td><code>7cf2d4f3569d0788</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AppenderAction</span></td><td><code>22c3c549e13663a1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.AppenderRefAction</span></td><td><code>3c0bd482c9925292</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ContextPropertyAction</span></td><td><code>4d47e7c289aa172b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ConversionRuleAction</span></td><td><code>6ad21d1237f36c71</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.DefinePropertyAction</span></td><td><code>3d08042673a6e5dc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IADataForBasicProperty</span></td><td><code>cbe844e4f3903797</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IADataForComplexProperty</span></td><td><code>9b210f34ec734f9e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ImplicitAction</span></td><td><code>86dae105afebc13c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.IncludeAction</span></td><td><code>2775b098b6b111dc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NOPAction</span></td><td><code>69348e8c62d1a733</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedBasicPropertyIA</span></td><td><code>89ed90b29bc14f36</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedBasicPropertyIA.1</span></td><td><code>08e44e1168d7ea7b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedComplexPropertyIA</span></td><td><code>178aace2d0448f6a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NestedComplexPropertyIA.1</span></td><td><code>5160250e9b77af57</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.NewRuleAction</span></td><td><code>265aa9ab808da62d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ParamAction</span></td><td><code>ad2376677140dcb4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.PropertyAction</span></td><td><code>81b578f6564d00a1</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.ShutdownHookAction</span></td><td><code>e67fa543b234ff0d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.StatusListenerAction</span></td><td><code>4cf479b0b81398f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.action.TimestampAction</span></td><td><code>d7a48c3648a91ea8</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ElseAction</span></td><td><code>fe56c4a40374cd79</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.IfAction</span></td><td><code>87c92d3efc3996c9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ThenAction</span></td><td><code>dd7886fdda1bb93e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.conditional.ThenOrElseActionBase</span></td><td><code>9e00d4141028a50c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.BodyEvent</span></td><td><code>0c8f2f07c6888bab</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.EndEvent</span></td><td><code>0c2e1da47ad508cc</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.SaxEvent</span></td><td><code>80662212b5cc3b53</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.SaxEventRecorder</span></td><td><code>639eb66c9ea90531</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.event.StartEvent</span></td><td><code>914de9498a78076d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.CAI_WithLocatorSupport</span></td><td><code>f96b1cd7be830663</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConfigurationWatchList</span></td><td><code>fba78df767e05182</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget</span></td><td><code>6e2cdd5051fbf329</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget.1</span></td><td><code>9612187e03729cd5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ConsoleTarget.2</span></td><td><code>ea3332451607183e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.DefaultNestedComponentRegistry</span></td><td><code>f3ac4f0369a959d6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ElementPath</span></td><td><code>ab4711e5039d31b0</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.ElementSelector</span></td><td><code>605584d4fe3a6b67</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.EventPlayer</span></td><td><code>739ef0261c196bb2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.HostClassAndPropertyDouble</span></td><td><code>199aef84b04dd48c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.InterpretationContext</span></td><td><code>ce4c00a894617c6e</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.Interpreter</span></td><td><code>634fa7d2dde257a5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.NoAutoStartUtil</span></td><td><code>6fe8a98ba9c5ce85</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.spi.SimpleRuleStore</span></td><td><code>19c383749dc55e01</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.ConfigurationWatchListUtil</span></td><td><code>a35db514967601cf</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.PropertySetter</span></td><td><code>8f7e7385541ef400</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.StringToObjectConverter</span></td><td><code>2e393f7832702c3f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescription</span></td><td><code>a249e33828fc438a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescriptionCache</span></td><td><code>9d679b6b2b24c9f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanDescriptionFactory</span></td><td><code>1abb714ec36ec08c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.joran.util.beans.BeanUtil</span></td><td><code>889c2d82913f56d3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.net.ssl.SSLNestedComponentRegistryRules</span></td><td><code>cdeda61b0c175e73</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.Converter</span></td><td><code>925f6cb417029041</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.ConverterUtil</span></td><td><code>dd9b10877d49fdef</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.DynamicConverter</span></td><td><code>66d903dd096314f6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.FormatInfo</span></td><td><code>875526d52e168bcb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.FormattingConverter</span></td><td><code>c3110b5495da3c0a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.LiteralConverter</span></td><td><code>65b2e319699170e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.PatternLayoutBase</span></td><td><code>a804a6743796ed4f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.PatternLayoutEncoderBase</span></td><td><code>8869b320200d58ca</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.SpacePadder</span></td><td><code>e82e4efc2cb997cb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Compiler</span></td><td><code>1c6d6460ba38602b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.FormattingNode</span></td><td><code>c1ea708a78deec04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Node</span></td><td><code>6c2db44212d84b68</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.OptionTokenizer</span></td><td><code>b9b225507c800bd5</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Parser</span></td><td><code>7b1aef016f4f95f3</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.SimpleKeywordNode</span></td><td><code>f700f290325e600d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.Token</span></td><td><code>4f7e433507e860ed</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream</span></td><td><code>b0bdcf4b6e0f87aa</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream.1</span></td><td><code>fd95c0c735fd0ef7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.parser.TokenStream.TokenizerState</span></td><td><code>3467111fb3bf68e6</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.AsIsEscapeUtil</span></td><td><code>59f6b4aeb7076212</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.RegularEscapeUtil</span></td><td><code>1cc07c8d9d362995</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.pattern.util.RestrictedEscapeUtil</span></td><td><code>05ac894407a1822b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.AppenderAttachableImpl</span></td><td><code>356e7661a1308dba</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.ContextAwareBase</span></td><td><code>507768fbb8be644f</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.ContextAwareImpl</span></td><td><code>e054ab71d51b27ec</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.FilterAttachableImpl</span></td><td><code>e0d2c4e50fd975d2</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.FilterReply</span></td><td><code>8ffb0681c411c96a</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.spi.LogbackLock</span></td><td><code>b3b7af385a799776</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.InfoStatus</span></td><td><code>1d3c0987bb0ffe10</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.StatusBase</span></td><td><code>7c1cffd1a9986020</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.status.StatusUtil</span></td><td><code>b5fec2971e383d38</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Node</span></td><td><code>173ef78e5278fe04</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Node.Type</span></td><td><code>b8a40f4b8fbe988c</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.NodeToStringTransformer</span></td><td><code>1e8620cc7b5415cb</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.NodeToStringTransformer.1</span></td><td><code>5967309dea3614e0</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Parser</span></td><td><code>c06549d7b1e1487d</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Parser.1</span></td><td><code>78a0480962b020ea</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Token</span></td><td><code>3f38da4ca554aafd</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Token.Type</span></td><td><code>d037d0aeea85e517</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer</span></td><td><code>6a388c818909b082</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer.1</span></td><td><code>5446562f97e885f7</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.subst.Tokenizer.TokenizerState</span></td><td><code>a43d7665d3995d51</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.AggregationType</span></td><td><code>e82dcae26638e651</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.COWArrayList</span></td><td><code>fd4fbd3c0c90c052</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.CachingDateFormatter</span></td><td><code>371338e1c1d98e24</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.EnvUtil</span></td><td><code>adc66c330ddaa6c4</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.Loader</span></td><td><code>6a7f26fdd43cf12b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.Loader.1</span></td><td><code>d6e48f075e51e44b</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.OptionHelper</span></td><td><code>ed7183d6bad9d2a9</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.StatusListenerConfigHelper</span></td><td><code>b3e50ff76e275069</code></td></tr><tr><td><span class="el_class">ch.qos.logback.core.util.StatusPrinter</span></td><td><code>04fef78263405164</code></td></tr><tr><td><span class="el_class">com.amazonaws.AmazonClientException</span></td><td><code>00f67ea2e30d1fe0</code></td></tr><tr><td><span class="el_class">com.amazonaws.AmazonWebServiceClient</span></td><td><code>6c90f6c5c0b70a0b</code></td></tr><tr><td><span class="el_class">com.amazonaws.ApacheHttpClientConfig</span></td><td><code>e728233df6adc5a5</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfiguration</span></td><td><code>8c113475ededcc0e</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfiguration.URLHolder</span></td><td><code>c259a89178b48b47</code></td></tr><tr><td><span class="el_class">com.amazonaws.ClientConfigurationFactory</span></td><td><code>5fc1946ff14b02be</code></td></tr><tr><td><span class="el_class">com.amazonaws.PredefinedClientConfigurations</span></td><td><code>c2b70629afbad78d</code></td></tr><tr><td><span class="el_class">com.amazonaws.Protocol</span></td><td><code>04209f7a4c9963ee</code></td></tr><tr><td><span class="el_class">com.amazonaws.SDKGlobalConfiguration</span></td><td><code>dc56713ce11b6b64</code></td></tr><tr><td><span class="el_class">com.amazonaws.SDKGlobalTime</span></td><td><code>cd4f960fefaf3c59</code></td></tr><tr><td><span class="el_class">com.amazonaws.SdkBaseException</span></td><td><code>a04c4b428f97519d</code></td></tr><tr><td><span class="el_class">com.amazonaws.SdkClientException</span></td><td><code>cca3e1cf70b4af90</code></td></tr><tr><td><span class="el_class">com.amazonaws.ServiceNameFactory</span></td><td><code>9fb00f04f82d3641</code></td></tr><tr><td><span class="el_class">com.amazonaws.SystemDefaultDnsResolver</span></td><td><code>f58982fbf2b8a965</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AWS4Signer</span></td><td><code>59113c23b269286b</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AWSCredentialsProviderChain</span></td><td><code>f236176d1501733b</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AbstractAWSSigner</span></td><td><code>f1e3ed0b6aabb39a</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.AbstractAWSSigner.1</span></td><td><code>cb71b2656c8b19ff</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.BaseCredentialsFetcher</span></td><td><code>5b54596ed5cb91d9</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.DefaultAWSCredentialsProviderChain</span></td><td><code>131622dcc4220685</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.EC2ContainerCredentialsProviderWrapper</span></td><td><code>e4b0d9a12cf77928</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.EnvironmentVariableCredentialsProvider</span></td><td><code>54055d176153de40</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.InstanceMetadataServiceCredentialsFetcher</span></td><td><code>1c385f5849fd9976</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.InstanceProfileCredentialsProvider</span></td><td><code>488f0b5fddd734c2</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock</span></td><td><code>0839e31455fed526</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock.1</span></td><td><code>706c69c5890d8174</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SdkClock.Instance</span></td><td><code>fde0e997c5029975</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SignerFactory</span></td><td><code>ba475501c7fcaab6</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.SystemPropertiesCredentialsProvider</span></td><td><code>fe7232234903690c</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.WebIdentityTokenCredentialsProvider</span></td><td><code>28395bc59f9c5547</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.WebIdentityTokenCredentialsProvider.BuilderImpl</span></td><td><code>fd5bef4b94fe1d1f</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.ProfileCredentialsProvider</span></td><td><code>7f1267005ae3b4ce</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.ProfilesConfigFile</span></td><td><code>ce8d1ae452076e7a</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AbstractProfilesConfigFileScanner</span></td><td><code>7adfe687fd97689d</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AllProfiles</span></td><td><code>b2c51a9c0ab35a40</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.AwsProfileNameLoader</span></td><td><code>c1b3df508434d008</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfile</span></td><td><code>e64d4831ab4931b4</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigFileLoader</span></td><td><code>430f6aa8dfb157e8</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigLoader</span></td><td><code>873e9b6636ed57dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.BasicProfileConfigLoader.ProfilesConfigFileLoaderHelper</span></td><td><code>53c725885b295920</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.RoleInfo</span></td><td><code>ffadb47684249aa7</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.STSProfileCredentialsServiceLoader</span></td><td><code>2541a60f72a5faf2</code></td></tr><tr><td><span class="el_class">com.amazonaws.auth.profile.internal.securitytoken.STSProfileCredentialsServiceProvider</span></td><td><code>0ead40f572688387</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.AwsAsyncClientParams</span></td><td><code>5c143935b5c7be1b</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.AwsSyncClientParams</span></td><td><code>171521cfec2938d9</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AdvancedConfig</span></td><td><code>c0b33a1cf8a93861</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AdvancedConfig.Builder</span></td><td><code>5bc3476a3dcef070</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsAsyncClientBuilder</span></td><td><code>e7479b21a1aa800d</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsAsyncClientBuilder.AsyncBuilderParams</span></td><td><code>ec906f1119fda6a2</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsClientBuilder</span></td><td><code>f6f27cdef72cdcda</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsClientBuilder.SyncBuilderParams</span></td><td><code>8ef5917883fcf085</code></td></tr><tr><td><span class="el_class">com.amazonaws.client.builder.AwsSyncClientBuilder</span></td><td><code>90e8e9b43a4c4f9e</code></td></tr><tr><td><span class="el_class">com.amazonaws.handlers.HandlerChainFactory</span></td><td><code>8051b5182f7c5f0a</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.AbstractFileTlsKeyManagersProvider</span></td><td><code>bf583bfeddb239fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.AmazonHttpClient</span></td><td><code>7bf8cc2b461cabc1</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.DelegatingDnsResolver</span></td><td><code>d4c38858e935038d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.IdleConnectionReaper</span></td><td><code>424ca13d8fe330f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.SystemPropertyTlsKeyManagersProvider</span></td><td><code>610468f086a4a0fa</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.ApacheConnectionManagerFactory</span></td><td><code>99939987f9e41eab</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.ApacheHttpClientFactory</span></td><td><code>d0b07424b456f11a</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.CRC32ChecksumResponseInterceptor</span></td><td><code>7e82aa2941340a1d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.client.impl.SdkHttpClient</span></td><td><code>31aa42e02e780d90</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory</span></td><td><code>31fadbb62829aa59</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ClientConnectionManagerFactory</span></td><td><code>030a683d8587a68f</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ClientConnectionManagerFactory.Handler</span></td><td><code>fe03e755ee1a6a17</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.SdkConnectionKeepAliveStrategy</span></td><td><code>088eba8f183db760</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.SdkPlainSocketFactory</span></td><td><code>52fd3bb248a215fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators</span></td><td><code>a9d035bbbc1e0f03</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators.1</span></td><td><code>c2c1bdcb1f6c2dc0</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.MasterSecretValidators.NoOpMasterSecretValidator</span></td><td><code>975b0415ba9cf4fc</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.SdkTLSSocketFactory</span></td><td><code>7d770b60b5ee06cf</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.conn.ssl.ShouldClearSslSessionPredicate</span></td><td><code>3b1b52ff976ae084</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.protocol.SdkHttpRequestExecutor</span></td><td><code>449bf607c9ac5b59</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.settings.HttpClientSettings</span></td><td><code>a653271ecfc0ba6d</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.timers.client.ClientExecutionTimer</span></td><td><code>524b75ecc0f5b4e4</code></td></tr><tr><td><span class="el_class">com.amazonaws.http.timers.request.HttpRequestTimer</span></td><td><code>16a8acdd12a80388</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.BoundedLinkedHashMap</span></td><td><code>55909b71c2f8eeb3</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ConnectionUtils</span></td><td><code>5592be9fce242b67</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ConnectionUtils.ConnectionUtilsSingletonHolder</span></td><td><code>b714a663d8fe9d85</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.DefaultServiceEndpointBuilder</span></td><td><code>59622524266ed32e</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.EC2ResourceFetcher</span></td><td><code>8a0ab75c0e33d738</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.FIFOCache</span></td><td><code>f6223023eea6d889</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.InstanceMetadataServiceResourceFetcher</span></td><td><code>531ae9f9b17030e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.InstanceMetadataServiceResourceFetcher.InstanceMetadataServiceResourceFetcherHolder</span></td><td><code>ed32bcb034e8cc79</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkPredicate</span></td><td><code>b14f0277a22127d3</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkRequestRetryHeaderProvider</span></td><td><code>22ccf4c8c9e33403</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkSSLContext</span></td><td><code>2befe09aa7242430</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.SdkThreadLocalsRegistry</span></td><td><code>d2a0d0769200594c</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.ServiceEndpointBuilder</span></td><td><code>535dc13648c86128</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.TokenBucket</span></td><td><code>412df386eac06663</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.TokenBucket.DefaultClock</span></td><td><code>986e065ed0db433d</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.auth.DefaultSignerProvider</span></td><td><code>733d2df2126a4eb5</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.auth.SignerProvider</span></td><td><code>c8e2d101906e9f62</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.EndpointDiscoveryConfig</span></td><td><code>e74fbff062a27e71</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HostRegexToRegionMapping</span></td><td><code>36bd88ac82b5249a</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HostRegexToRegionMappingJsonHelper</span></td><td><code>846b6d5521828bec</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HttpClientConfig</span></td><td><code>7fe5e7586b9fbf92</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.HttpClientConfigJsonHelper</span></td><td><code>3572a56d7c225b09</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfig</span></td><td><code>2704931801ead69d</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfig.Factory</span></td><td><code>d49cf8422a0ab193</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.InternalConfigJsonHelper</span></td><td><code>e80d45fdf7cd9c44</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.JsonIndex</span></td><td><code>de3d1cd278f97223</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.SignerConfig</span></td><td><code>13e7426695ea5b81</code></td></tr><tr><td><span class="el_class">com.amazonaws.internal.config.SignerConfigJsonHelper</span></td><td><code>9b3ed2296ad90127</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.MBeans</span></td><td><code>962842e0db948a50</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.SdkMBeanRegistrySupport</span></td><td><code>d6ba1fa71d047943</code></td></tr><tr><td><span class="el_class">com.amazonaws.jmx.spi.SdkMBeanRegistry.Factory</span></td><td><code>36fae368d14966ae</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.CommonsLog</span></td><td><code>452cf30d2df1136e</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.CommonsLogFactory</span></td><td><code>48871b7358fe6738</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.InternalLog</span></td><td><code>058d42b68cb96a33</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.InternalLogFactory</span></td><td><code>80f7424300ab407a</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.JulLog</span></td><td><code>96b7b30814dc6ca6</code></td></tr><tr><td><span class="el_class">com.amazonaws.log.JulLogFactory</span></td><td><code>77ef6caa873fefed</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.AwsSdkMetrics</span></td><td><code>e017a151c7bdcc4b</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.AwsSdkMetrics.MetricRegistry</span></td><td><code>b50327a1f3694067</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.MetricAdmin</span></td><td><code>67ee0c35312d98d4</code></td></tr><tr><td><span class="el_class">com.amazonaws.metrics.SimpleMetricType</span></td><td><code>ef6c926611742290</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.CsmConfigurationProviderChain</span></td><td><code>29d73c727292b9f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.DefaultCsmConfigurationProviderChain</span></td><td><code>82ecb0e6dfe398b1</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.EnvironmentVariableCsmConfigurationProvider</span></td><td><code>c5d577529eb87c71</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.ProfileCsmConfigurationProvider</span></td><td><code>7e08d1e0639da907</code></td></tr><tr><td><span class="el_class">com.amazonaws.monitoring.SystemPropertyCsmConfigurationProvider</span></td><td><code>07c37250c3b97646</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionMetadataProvider</span></td><td><code>e931480214eb0c0f</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionRegionImpl</span></td><td><code>0a2583a2117011f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.PartitionsLoader</span></td><td><code>37e3a9d4944efcf3</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.CredentialScope</span></td><td><code>3121429d8a2741d2</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Endpoint</span></td><td><code>ef195f6d65e7d99c</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Partition</span></td><td><code>c0e1819b06f325e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Partitions</span></td><td><code>9ddb37b7811333e2</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Region</span></td><td><code>5b14165097bd9694</code></td></tr><tr><td><span class="el_class">com.amazonaws.partitions.model.Service</span></td><td><code>e4b63455dffa3347</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsDirectoryBasePathProvider</span></td><td><code>66c51f7011e0bff0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsProfileFileLocationProvider</span></td><td><code>4d296960a1e9e0dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.AwsProfileFileLocationProviderChain</span></td><td><code>c4a28f0ff52607b0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.config.ConfigEnvVarOverrideLocationProvider</span></td><td><code>9ad04cae49945420</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.config.SharedConfigDefaultLocationProvider</span></td><td><code>7263a778761b5193</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsDefaultLocationProvider</span></td><td><code>92b8a4b3a5f02919</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsEnvVarOverrideLocationProvider</span></td><td><code>a8935b0adc2a04e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.profile.path.cred.CredentialsLegacyConfigLocationProvider</span></td><td><code>65d108782cc221af</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AbstractRegionMetadataProvider</span></td><td><code>9ec233df55bcef70</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsEnvVarOverrideRegionProvider</span></td><td><code>0d479bcab48ccff0</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsProfileRegionProvider</span></td><td><code>a85451b6639b9b93</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsRegionProvider</span></td><td><code>eba3622ab12edbb9</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsRegionProviderChain</span></td><td><code>67cce1f7e4eb0581</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.AwsSystemPropertyRegionProvider</span></td><td><code>7477a3eb04e752ba</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.DefaultAwsRegionProviderChain</span></td><td><code>deb3928428940202</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.EndpointToRegion</span></td><td><code>6c48a64d655d3b49</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.EndpointToRegion.RegionOrRegionName</span></td><td><code>13ceb3a288610b9b</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.InstanceMetadataRegionProvider</span></td><td><code>5dd21d82290ab7f4</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.LegacyRegionXmlMetadataBuilder</span></td><td><code>3c9456e9fa9f902c</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.MetadataSupportedRegionFromEndpointProvider</span></td><td><code>8915f8673f8b37a4</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.Region</span></td><td><code>116a053783b45192</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionMetadata</span></td><td><code>34469e76dab70ea3</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionMetadataFactory</span></td><td><code>1cfcfcac5741643c</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.RegionUtils</span></td><td><code>e3536e1fcb617990</code></td></tr><tr><td><span class="el_class">com.amazonaws.regions.Regions</span></td><td><code>c4a5651105f2691d</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.ClockSkewAdjuster</span></td><td><code>81ca73c997b86305</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.EqualJitterBackoffStrategy</span></td><td><code>5b1eb75d4343ac9d</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.FullJitterBackoffStrategy</span></td><td><code>5aaef3317650c7f2</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedBackoffStrategies.SDKDefaultBackoffStrategy</span></td><td><code>047b21a6a17a10f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies</span></td><td><code>9d5431c25ea84254</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies.1</span></td><td><code>8da6f31ad44996fc</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.PredefinedRetryPolicies.SDKDefaultRetryCondition</span></td><td><code>74d4652d431d0a48</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryMode</span></td><td><code>d06cab468428df98</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy</span></td><td><code>6a4bafcff687c8da</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.BackoffStrategy</span></td><td><code>a8f89736179524bf</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.BackoffStrategy.1</span></td><td><code>0e567d224199fb96</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.RetryCondition</span></td><td><code>582fd7dd1407b948</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicy.RetryCondition.1</span></td><td><code>e0d8c9746c417e9e</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.RetryPolicyAdapter</span></td><td><code>f2f3b4974617a6f3</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.V2CompatibleBackoffStrategyAdapter</span></td><td><code>8414fa97290f5061</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.internal.MaxAttemptsResolver</span></td><td><code>f2c8b76ff90668fd</code></td></tr><tr><td><span class="el_class">com.amazonaws.retry.internal.RetryModeResolver</span></td><td><code>15570e943401c7b3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Builder</span></td><td><code>a9068fe55398663f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Builder.1</span></td><td><code>69c64866a23fc9c5</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Client</span></td><td><code>3faf7ad7b43b6b06</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3Client.1</span></td><td><code>79eba4b3587d0b7b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientBuilder</span></td><td><code>30641d2100c9ba98</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientConfigurationFactory</span></td><td><code>8ce28080ff243529</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientParams</span></td><td><code>136e214657b43c0f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.AmazonS3ClientParamsWrapper</span></td><td><code>b19f2f97cb011990</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3ClientOptions</span></td><td><code>b9558b36a36be046</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3ClientOptions.Builder</span></td><td><code>a2d783fe13916f76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.S3CredentialsProviderChain</span></td><td><code>756da7e0702846db</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.AWSS3V4Signer</span></td><td><code>bae8808ecefcecdf</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.AbstractS3ResponseHandler</span></td><td><code>3f6efa5c0ff2c6b0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.CompleteMultipartUploadRetryCondition</span></td><td><code>0614987f88860c50</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.CompleteMultipartUploadRetryablePredicate</span></td><td><code>6758e14397138a46</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.RegionalEndpointsOptionResolver</span></td><td><code>31a0d88d549a9d57</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.RegionalEndpointsOptionResolver.Option</span></td><td><code>c4c5e5993703f9cb</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.S3ErrorResponseHandler</span></td><td><code>49fac0b39ce87783</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.S3XmlResponseHandler</span></td><td><code>077caa9361b64640</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.ServiceUtils</span></td><td><code>181c64d92ef58fb0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.SkipMd5CheckStrategy</span></td><td><code>4c4fd16436b41da3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.UseArnRegionResolver</span></td><td><code>8d66ef9be551f835</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.internal.auth.S3SignerProvider</span></td><td><code>c03097ed7ba5957c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric</span></td><td><code>63e7bcd3153b8347</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.1</span></td><td><code>24f40b907e145c05</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.2</span></td><td><code>83f4169b1edc5949</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.metrics.S3ServiceMetric.S3ThroughputMetric</span></td><td><code>d4ee86ac919dcaa8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.model.transform.BucketConfigurationXmlFactory</span></td><td><code>3173faffce81bf4d</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.s3.model.transform.RequestPaymentConfigurationXmlFactory</span></td><td><code>9c5fcd3ab01de922</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSAsyncClient</span></td><td><code>35088a92f970a59b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSAsyncClientBuilder</span></td><td><code>ec373089e82aa03f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.AmazonSNSClient</span></td><td><code>e55d00bcc3a2cc59</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SignatureVerifier</span></td><td><code>c14e288a5836a2e8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SigningCertUrlVerifier</span></td><td><code>2300334f77dce74d</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageManager</span></td><td><code>10a604e09a24b2aa</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageManager.1</span></td><td><code>ecc3fa526d9bdf3c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.message.SnsMessageUnmarshaller</span></td><td><code>e26b79dfd5c64a29</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.AuthorizationErrorExceptionUnmarshaller</span></td><td><code>1cdd0528f8543041</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.BatchEntryIdsNotDistinctExceptionUnmarshaller</span></td><td><code>a76e943fdd049c12</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.BatchRequestTooLongExceptionUnmarshaller</span></td><td><code>cbf8a4a342cefd77</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ConcurrentAccessExceptionUnmarshaller</span></td><td><code>c0555a51a2e65b44</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.EmptyBatchRequestExceptionUnmarshaller</span></td><td><code>743ef12738cdddcd</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.EndpointDisabledExceptionUnmarshaller</span></td><td><code>a597b4b0677c1ad4</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.FilterPolicyLimitExceededExceptionUnmarshaller</span></td><td><code>e81c3f961018913b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InternalErrorExceptionUnmarshaller</span></td><td><code>e10d40ca110c5cc2</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidBatchEntryIdExceptionUnmarshaller</span></td><td><code>94f279df78870159</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidParameterExceptionUnmarshaller</span></td><td><code>11b97fd77f2e1594</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidParameterValueExceptionUnmarshaller</span></td><td><code>cdd2c287da8201bc</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.InvalidSecurityExceptionUnmarshaller</span></td><td><code>1a41fda4e922cae6</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSAccessDeniedExceptionUnmarshaller</span></td><td><code>7f5c0f3345bf5c76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSDisabledExceptionUnmarshaller</span></td><td><code>9ef24849e4fe5f76</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSInvalidStateExceptionUnmarshaller</span></td><td><code>915682984af74d22</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSNotFoundExceptionUnmarshaller</span></td><td><code>4b394354d937f041</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSOptInRequiredExceptionUnmarshaller</span></td><td><code>80213a1d8beec138</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.KMSThrottlingExceptionUnmarshaller</span></td><td><code>bac03462b4b017de</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.NotFoundExceptionUnmarshaller</span></td><td><code>de1c884399187efd</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.OptedOutExceptionUnmarshaller</span></td><td><code>b292746c8e03f543</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.PlatformApplicationDisabledExceptionUnmarshaller</span></td><td><code>fdde9e1ff43a3bf3</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ResourceNotFoundExceptionUnmarshaller</span></td><td><code>3dd4cc2bd9ec6692</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.StaleTagExceptionUnmarshaller</span></td><td><code>f558b1e319e95c16</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.SubscriptionLimitExceededExceptionUnmarshaller</span></td><td><code>f85b3f383a120084</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TagLimitExceededExceptionUnmarshaller</span></td><td><code>d1701deb0578561f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TagPolicyExceptionUnmarshaller</span></td><td><code>25f1e5391788a27e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ThrottledExceptionUnmarshaller</span></td><td><code>29dc82c111b74c4c</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TooManyEntriesInBatchRequestExceptionUnmarshaller</span></td><td><code>a69b5646bccffca8</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.TopicLimitExceededExceptionUnmarshaller</span></td><td><code>eb13861cee01463f</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.UserErrorExceptionUnmarshaller</span></td><td><code>4d50057c6de58c7e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.ValidationExceptionUnmarshaller</span></td><td><code>820f668237e2bbef</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.model.transform.VerificationExceptionUnmarshaller</span></td><td><code>e2832c82d93322e0</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker</span></td><td><code>4efd20ae108588d2</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker.1</span></td><td><code>a672d14b3992c26b</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sns.util.SignatureChecker.2</span></td><td><code>345ac8a4ae22630e</code></td></tr><tr><td><span class="el_class">com.amazonaws.services.sqs.AmazonSQSAsync.MockitoMock.EhvzUCQq</span></td><td><code>a7827ec19431af94</code></td></tr><tr><td><span class="el_class">com.amazonaws.transform.AbstractErrorUnmarshaller</span></td><td><code>c2e1cfe910397389</code></td></tr><tr><td><span class="el_class">com.amazonaws.transform.StandardErrorUnmarshaller</span></td><td><code>08eb31d653db7ff8</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AWSRequestMetrics.Field</span></td><td><code>e2ad48c283d34479</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AWSServiceMetrics</span></td><td><code>4dfabdd007c0dae9</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.AwsHostNameUtils</span></td><td><code>0c2936fad2175318</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Base16Codec</span></td><td><code>1d627ed666f922f0</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Base16Lower</span></td><td><code>d99355150bb1396c</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.BinaryUtils</span></td><td><code>44398a0d8aedcf5b</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.CapacityManager</span></td><td><code>2128ccc612ab32dd</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ClassLoaderHelper</span></td><td><code>6501e49befb3996e</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.Classes</span></td><td><code>778598068fa90110</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.CodecUtils</span></td><td><code>ef8e08cde07c2cff</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.DateUtils</span></td><td><code>aae53c2b4d70eea4</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.IOUtils</span></td><td><code>ba1d5fb88de49026</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser</span></td><td><code>f2cfacbe49b47c45</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser.JavaVersion</span></td><td><code>b1dbe698e47e7461</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.JavaVersionParser.KnownJavaVersions</span></td><td><code>da60a97d7da6a4e5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.NumberUtils</span></td><td><code>2d5d785083bf6d27</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ResponseMetadataCache</span></td><td><code>9d98adf5666b9bd5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ResponseMetadataCache.InternalCache</span></td><td><code>46193684640d95ee</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.RuntimeHttpUtils</span></td><td><code>763e125900674e61</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.SdkHttpUtils</span></td><td><code>53cb059ed9f66ab5</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.StringUtils</span></td><td><code>61348596f1a972f7</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.ValidationUtils</span></td><td><code>2f7a173706ee0e64</code></td></tr><tr><td><span class="el_class">com.amazonaws.util.VersionInfoUtils</span></td><td><code>16e695e19b6beefd</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.diff.compare.SynonymComparator</span></td><td><code>30b2848340ec288b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.markunused.change.MarkUnusedGenerator</span></td><td><code>321553fc4d3c7403</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.SynonymSnapshotGenerator</span></td><td><code>f07e6a7a575820ae</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.change.CreateSynonymGenerator</span></td><td><code>03727f454076a16d</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.appdba.synonym.change.DropSynonymGenerator</span></td><td><code>47cc14565e4991d4</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.LiquibaseProConfiguration</span></td><td><code>d80d1c63a88c0c09</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.NativeExecutorConfiguration</span></td><td><code>39411b4f8f6cb73e</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.SqlcmdConfiguration</span></td><td><code>83bddaba4d609224</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.config.SqlplusConfiguration</span></td><td><code>098739b664136be7</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.license.LicenseCheckingSnapshotGenerator</span></td><td><code>34f815a46961a7bb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.AbstractStoredDatabaseLogicSnapshotGenerator</span></td><td><code>a2187665baa2f0cb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.StoredLogicComparator</span></td><td><code>50cc3399151fafce</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.CheckConstraintComparator</span></td><td><code>6ac68818d4a1a0bc</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.CheckConstraintSnapshotGenerator</span></td><td><code>17d01a400cba022b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.AddCheckConstraintGenerator</span></td><td><code>803cac40ff44d151</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.DisableCheckConstraintGenerator</span></td><td><code>320245b86e830d9b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.DropCheckConstraintGenerator</span></td><td><code>1c6bc0614a84d7d2</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.change.EnableCheckConstraintGenerator</span></td><td><code>b031d34bb5652382</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.checkconstraint.postgres.PostgresCheckConstraintSnapshotGenerator</span></td><td><code>d9da95a256f53bfb</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.PackageBodySnapshotGenerator</span></td><td><code>aff58d1bf5c8ec3b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.PackageSnapshotGenerator</span></td><td><code>dbf97152bea55870</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.CreatePackageBodyGenerator</span></td><td><code>2a94534d6b3d8eaf</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.CreatePackageGenerator</span></td><td><code>da347d76e3f01499</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.DropPackageBodyGenerator</span></td><td><code>807236b4bf618bf1</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.databasepackage.change.DropPackageGenerator</span></td><td><code>219ebade501c89fe</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.FunctionSnapshotGenerator</span></td><td><code>00a58d2cfe273b6b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.change.CreateFunctionGenerator</span></td><td><code>4029ebb3f1d80f73</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.change.DropFunctionGenerator</span></td><td><code>492a68a59eaabdf6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.mysql.MySQLFunctionSnapshotGenerator</span></td><td><code>96cc71023fbcfc6a</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.postgres.EDBPostgresFunctionSnapshotGenerator</span></td><td><code>6c346b3e3210a1b6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.function.postgres.PostgresFunctionSnapshotGenerator</span></td><td><code>b6a3b1109c579dcf</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.MySQLStoredProcedureSnapshotGenerator</span></td><td><code>d8babc9961655475</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.PostgresStoredProcedureSnapshotGenerator</span></td><td><code>7653bb7e671a727b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.storedproc.StoredProcedureSnapshotGenerator</span></td><td><code>ffc81b4aa822c410</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.TriggerSnapshotGenerator</span></td><td><code>fe16ac13660433c5</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.CreateTriggerGenerator</span></td><td><code>88593bb7c2dab747</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.DisableTriggerGenerator</span></td><td><code>2628a5646bfd087b</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.DropTriggerGenerator</span></td><td><code>264f70dffef4ffc6</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.EnableTriggerGenerator</span></td><td><code>91c9a20b3ae11dc1</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.change.RenameTriggerGenerator</span></td><td><code>36fb9722c466280d</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.storedlogic.trigger.postgres.PostgresTriggerSnapshotGenerator</span></td><td><code>9beed04637456be9</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.AbstractNativeToolExecutor</span></td><td><code>4bf6be2f903d5b3a</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.MssqlSqlcmdExecutor</span></td><td><code>f46d77c1313a718e</code></td></tr><tr><td><span class="el_class">com.datical.liquibase.ext.tools.OracleSqlPlusExecutor</span></td><td><code>35034dd01a329e68</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationConfiguration</span></td><td><code>48627d31d1e7cc58</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationConfiguration.StdConfiguration</span></td><td><code>8066de299ba6fd23</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.AnnotationInclusion</span></td><td><code>2cd7cc19ca9ee402</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.Annotations</span></td><td><code>f10d18c1473139ac</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.MemberResolver</span></td><td><code>730dabe65dc59225</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedType</span></td><td><code>2ad603928e2650d9</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedTypeWithMembers</span></td><td><code>9f4dc97cf3f610ed</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.ResolvedTypeWithMembers.AnnotationHandler</span></td><td><code>7746a773399e6b7f</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.TypeBindings</span></td><td><code>dcbf06c8c7183f90</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.TypeResolver</span></td><td><code>d09b4b74c59c11c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.HierarchicType</span></td><td><code>37f26fb1b9dc7fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.RawMember</span></td><td><code>1ce775886aede4bc</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.RawMethod</span></td><td><code>970a18b6b6e1258c</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedMember</span></td><td><code>186cf0ddb43b3d5a</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedMethod</span></td><td><code>dd26050161dfc4d6</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.members.ResolvedParameterizedMember</span></td><td><code>0f405ca4f3c52650</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedInterfaceType</span></td><td><code>0dc926f39e347b86</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedObjectType</span></td><td><code>4d7f5e3ceba40146</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.types.ResolvedPrimitiveType</span></td><td><code>034de37e06583b7c</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ClassKey</span></td><td><code>375967f15b8a61aa</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ClassStack</span></td><td><code>45ff9549fe8dd5eb</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.LRUTypeCache</span></td><td><code>5053e773cfbd8cbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.LRUTypeCache.CacheMap</span></td><td><code>0f0286373be96557</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.MethodKey</span></td><td><code>6983f255b2d0a89e</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ResolvedTypeCache</span></td><td><code>7ebeb4ef1b798ce1</code></td></tr><tr><td><span class="el_class">com.fasterxml.classmate.util.ResolvedTypeKey</span></td><td><code>6e43c294f51b6aa2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonAutoDetect.1</span></td><td><code>6be52ec71dcf28a2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility</span></td><td><code>e56bcd385626eead</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonCreator.Mode</span></td><td><code>5e1d947ef261f336</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Feature</span></td><td><code>4821dea785bbd1d5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Features</span></td><td><code>8a42630725ca176f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Shape</span></td><td><code>c19c22f9661f3b7d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonFormat.Value</span></td><td><code>c867e2a0cd371606</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value</span></td><td><code>4f0da3cf85f6ca76</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonInclude.Include</span></td><td><code>c1668d3ffac61cc7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonInclude.Value</span></td><td><code>ac2f9088b123c9d2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonIncludeProperties.Value</span></td><td><code>7ed084480a07ee84</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonProperty.Access</span></td><td><code>fd3fb50c2a337fe9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonSetter.Value</span></td><td><code>6ee26ce006658a00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonTypeInfo.As</span></td><td><code>6078d3105bfa2045</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.JsonTypeInfo.Id</span></td><td><code>4872e9ad549a15ba</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.Nulls</span></td><td><code>724f990ec72b618f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.annotation.PropertyAccessor</span></td><td><code>a506c0b4a9292088</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variant</span></td><td><code>c0e8197f954dd06f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour</span></td><td><code>843a0ab5e9f9bc15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Base64Variants</span></td><td><code>706d40c092962881</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonEncoding</span></td><td><code>124995a58b48c11e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonFactory</span></td><td><code>92d2e770b8f35f8e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonFactory.Feature</span></td><td><code>8361ffaea30cff48</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonGenerator.Feature</span></td><td><code>5a49f8113c26ac2f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser</span></td><td><code>087ba07afe7d06ce</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser.Feature</span></td><td><code>004fd2ec010ce098</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonParser.NumberType</span></td><td><code>f7a23e271b922f44</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonStreamContext</span></td><td><code>8f79ce44d6acb1f0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.JsonToken</span></td><td><code>12337f269c55f88a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.ObjectCodec</span></td><td><code>bcfadd4a47d8d174</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.PrettyPrinter</span></td><td><code>522e543d2d203e0c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.StreamReadCapability</span></td><td><code>4961b524041bfae0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.TokenStreamFactory</span></td><td><code>eeb403e3105a4c39</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.TreeCodec</span></td><td><code>9b794ee2c027e6c5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.Version</span></td><td><code>0af4bf326090c50c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.base.ParserBase</span></td><td><code>09e44d2aba8e329d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.base.ParserMinimalBase</span></td><td><code>d1dfef4481f52146</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.CharTypes</span></td><td><code>3948d29ac237c8f4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.ContentReference</span></td><td><code>b7ba13bd0ff9bdf3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.IOContext</span></td><td><code>904cd3765ace74f5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.JsonStringEncoder</span></td><td><code>034ac13887946240</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.io.SerializedString</span></td><td><code>297ea024d97582cf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper</span></td><td><code>d00a9209449f0269</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.JsonReadContext</span></td><td><code>4a5d2465f91a7f95</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.json.UTF8StreamJsonParser</span></td><td><code>3b907ee12a7084dd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer</span></td><td><code>291229256a021e25</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.TableInfo</span></td><td><code>795012ec0e6c889b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer</span></td><td><code>35a1ac98a1bad939</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer.TableInfo</span></td><td><code>2e560d79a52cf0a8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.type.ResolvedType</span></td><td><code>15807997628a0aa4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.BufferRecycler</span></td><td><code>9b42a79424df3f8e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.BufferRecyclers</span></td><td><code>5fa617e1462e0caf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultIndenter</span></td><td><code>3b2beace17e888ee</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter</span></td><td><code>d1ebc5e64e35699e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter</span></td><td><code>4845911bdeabaf2a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter</span></td><td><code>23ef20344a80184e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.InternCache</span></td><td><code>5a30c73b3b03a45e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.JacksonFeatureSet</span></td><td><code>23f70a20c39e4603</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.Separators</span></td><td><code>2a5b790142732290</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.TextBuffer</span></td><td><code>789cefae4beae965</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.core.util.VersionUtil</span></td><td><code>1413be786bc77d26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector</span></td><td><code>af9daa2158870a32</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty</span></td><td><code>09f92466c78dd697</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type</span></td><td><code>d90a083248c5b3dc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.BeanDescription</span></td><td><code>c5613af91861c976</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.BeanProperty.Std</span></td><td><code>b4feecae05e99e22</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DatabindContext</span></td><td><code>171ac5f27083d860</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationConfig</span></td><td><code>beec5c0ed081b28e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationContext</span></td><td><code>63ca2b9e4cf1e650</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.DeserializationFeature</span></td><td><code>7892aa29da749006</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JavaType</span></td><td><code>6774433437db819f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JsonDeserializer</span></td><td><code>f155d5de89ce5a60</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.JsonSerializer</span></td><td><code>580d874493a44de7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.KeyDeserializer</span></td><td><code>57c3ce9990767641</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.MapperFeature</span></td><td><code>f1485765752306d7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.MappingJsonFactory</span></td><td><code>f3cae28c0c458d13</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.Module</span></td><td><code>bb66b81d910dbd05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper</span></td><td><code>9e2bf7d65aebeb2d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.1</span></td><td><code>d7d5c5df61482732</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder</span></td><td><code>ae6fc943a2f262b9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping</span></td><td><code>6a3011a4de84756b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ObjectReader</span></td><td><code>c5d27a3b52d43594</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.PropertyMetadata</span></td><td><code>169ed055a423a1c4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.PropertyName</span></td><td><code>f0fe669cc1f8057b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializationConfig</span></td><td><code>dd23e85db1772fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializationFeature</span></td><td><code>a7f6fb742e4bb5ac</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.SerializerProvider</span></td><td><code>e3847c31e373e473</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.BaseSettings</span></td><td><code>ee09f14529f6cfde</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionAction</span></td><td><code>9e15561f16680f97</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionConfig</span></td><td><code>ffad61191adeb87e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionConfigs</span></td><td><code>63f7b0f9840aafbd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.CoercionInputShape</span></td><td><code>90aad4e377b3dccd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverride</span></td><td><code>f1771a0d408303c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverride.Empty</span></td><td><code>3372ed519d9bafb4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConfigOverrides</span></td><td><code>6eccdb4ac13ab18a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConstructorDetector</span></td><td><code>9af1c9a41cb4b83d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ConstructorDetector.SingleArgConstructor</span></td><td><code>b0c67222cebc30be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ContextAttributes</span></td><td><code>216e6db5a97ae48a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl</span></td><td><code>7e49bf155839b753</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.DeserializerFactoryConfig</span></td><td><code>797011776bfed729</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.HandlerInstantiator</span></td><td><code>db4c0da38ae13f35</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MapperConfig</span></td><td><code>ec06db667daccfe8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MapperConfigBase</span></td><td><code>82a2129d5033ef15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.MutableCoercionConfig</span></td><td><code>0fd510ce548c5df5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.cfg.SerializerFactoryConfig</span></td><td><code>97a0b951463407ed</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory</span></td><td><code>35353283d28857e3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.ContainerDefaultMappings</span></td><td><code>6b760ad9e06a7e59</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.CreatorCollectionState</span></td><td><code>589901bf2de6cb73</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializer</span></td><td><code>1abdcde1c28a0481</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerBase</span></td><td><code>6f73fb66cef49338</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerBuilder</span></td><td><code>6017e2ecc1c5729c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.BeanDeserializerFactory</span></td><td><code>ebb2fb6497ab6fd1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.CreatorProperty</span></td><td><code>463e7e38167c7f14</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DefaultDeserializationContext</span></td><td><code>23471bff48f2d14a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.Impl</span></td><td><code>0c311b9cfe6a8407</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DeserializerCache</span></td><td><code>2d98eb7f38fe0ade</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.DeserializerFactory</span></td><td><code>2ebdf24d93849f1a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.Deserializers.Base</span></td><td><code>a3b8086adb6ca320</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.SettableBeanProperty</span></td><td><code>2209452aee2349d1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiator</span></td><td><code>7de15bbcecdec668</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiator.Base</span></td><td><code>74d442e4bb57cf15</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.ValueInstantiators.Base</span></td><td><code>409ddb33d4295a19</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.BeanPropertyMap</span></td><td><code>9a15afcbb27fa7d3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCandidate</span></td><td><code>4f4ddd9e1b38909b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCandidate.Param</span></td><td><code>c635ef4a61409ee4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.CreatorCollector</span></td><td><code>590fad3e8b67cf3b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.FailingDeserializer</span></td><td><code>4904d8577f214eb3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators</span></td><td><code>899467f4ced76f52</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators.ArrayListInstantiator</span></td><td><code>f835a690be876264</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.JDKValueInstantiators.LinkedHashMapInstantiator</span></td><td><code>2c8fe12c485f587f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.MethodProperty</span></td><td><code>d6354b9c19d5da76</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.NullsConstantProvider</span></td><td><code>ddb643ddeb01e747</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator</span></td><td><code>1d3ff8c84239a10e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValue</span></td><td><code>6f7a534faf2ca1fe</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValue.Regular</span></td><td><code>13468859ee1bd7fe</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.PropertyValueBuffer</span></td><td><code>ade888c0ce0ab08b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.impl.SetterlessProperty</span></td><td><code>cd526c2380240ba2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.CollectionDeserializer</span></td><td><code>68b7a77554bf6c94</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase</span></td><td><code>c68510ec00c11ce2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.FromStringDeserializer</span></td><td><code>bab8615bac5b2100</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.JdkDeserializers</span></td><td><code>6ed17d9e54e42f1d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.MapDeserializer</span></td><td><code>cb8fed36672f08c3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers</span></td><td><code>af4aa96d306dfbb7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BooleanDeserializer</span></td><td><code>b181afadc5e34b55</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.NumberDeserializer</span></td><td><code>acca61df8e576b9e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.NumberDeserializers.PrimitiveOrWrapperDeserializer</span></td><td><code>467caf19a87c057e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer</span></td><td><code>0ccebc66d12b1aa5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdDeserializer</span></td><td><code>1fef92d543fe2c09</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer</span></td><td><code>c80c89050723096c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringKD</span></td><td><code>b1203fb69e79d221</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers</span></td><td><code>e277ef5e873fdf87</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdScalarDeserializer</span></td><td><code>25286f364997b846</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StdValueInstantiator</span></td><td><code>899af61ed1fbec4e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StringCollectionDeserializer</span></td><td><code>c91d7b8ed05e21ec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.StringDeserializer</span></td><td><code>400a7aba0eeb3d31</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer</span></td><td><code>d9352f6cdc59b396</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.Vanilla</span></td><td><code>fda27ced3fcdd12f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7Handlers</span></td><td><code>4bf515a2bee6b089</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7HandlersImpl</span></td><td><code>d3addcc5a37b4ed8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7Support</span></td><td><code>b7ed61265dad1e05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.Java7SupportImpl</span></td><td><code>4bb02b62d1f4b08e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ext.OptionalHandlerFactory</span></td><td><code>03eabfe3ba4c3167</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy</span></td><td><code>3d3b7f563f5ca70a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy.Provider</span></td><td><code>6026222786456f26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.Annotated</span></td><td><code>47d3d49f2b832d54</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClass</span></td><td><code>d7618104caa817e7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClass.Creators</span></td><td><code>6d9ba5d6c00f185b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedClassResolver</span></td><td><code>b71c842acb1f38fa</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedConstructor</span></td><td><code>310aa86b631e7761</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedCreatorCollector</span></td><td><code>32f23f0c58479951</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedField</span></td><td><code>6f235f67cf02b948</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedFieldCollector</span></td><td><code>d69681a80eda3647</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedFieldCollector.FieldBuilder</span></td><td><code>f895fc382a882b32</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMember</span></td><td><code>5879537c033bd580</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethod</span></td><td><code>8ecedbb812546ee8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodCollector</span></td><td><code>af7b87497b71c1df</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodCollector.MethodBuilder</span></td><td><code>da6256a78b2d96c8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedMethodMap</span></td><td><code>d69be24a07cecf16</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedParameter</span></td><td><code>f6b3615f2ae1822c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotatedWithParams</span></td><td><code>03688e0164cf2879</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector</span></td><td><code>c389709d2ffbb364</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.EmptyCollector</span></td><td><code>a87b6b2439611ec7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.NoAnnotations</span></td><td><code>9173d7167a075d90</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationCollector.OneCollector</span></td><td><code>4d7ed4cd12d6011c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair</span></td><td><code>931c959a3112db6c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.AnnotationMap</span></td><td><code>4043d8fa37c478aa</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BasicBeanDescription</span></td><td><code>fcd042c4339e4ae6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BasicClassIntrospector</span></td><td><code>9b81bae8d2bdc7a9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.BeanPropertyDefinition</span></td><td><code>1ce6d250a172084a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.ClassIntrospector</span></td><td><code>b20a1133edfcf6b5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.CollectorBase</span></td><td><code>1c0f669109aac37e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase</span></td><td><code>6d846e8cdba7e7e6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.DefaultAccessorNamingStrategy</span></td><td><code>3b7b9e1fd9ca60c0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.DefaultAccessorNamingStrategy.Provider</span></td><td><code>279a8d9b45166f1b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector</span></td><td><code>6ee54de73eb44d10</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.MemberKey</span></td><td><code>8d4fd74968966d89</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.MethodGenericTypeResolver</span></td><td><code>2f53d000aae045ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector</span></td><td><code>4f79871528bc10f4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector.1</span></td><td><code>c19d5234b41a5c53</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector</span></td><td><code>1e1c8f2eaab4288a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder</span></td><td><code>5748055b97ffdfd3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.1</span></td><td><code>925ffe3a324d008c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.2</span></td><td><code>f9f5816009560a85</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.4</span></td><td><code>ccfa1b83e27ecd92</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.5</span></td><td><code>8bc5c843a115ba34</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.6</span></td><td><code>a868a4e7297a3d8d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.Linked</span></td><td><code>3591f89e48568c1d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.MemberIterator</span></td><td><code>ce3ce565feb3578f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.SimpleMixInResolver</span></td><td><code>05d0015e0b63d267</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.TypeResolutionContext.Basic</span></td><td><code>09190ef225acb240</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.VisibilityChecker.1</span></td><td><code>fcd169612237adbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std</span></td><td><code>dcf4500664436616</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator</span></td><td><code>ff1c7cc76de984ce</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator.Base</span></td><td><code>ea9ae0e64ce11069</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.SubtypeResolver</span></td><td><code>b2ed8bc0e5fe669c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator</span></td><td><code>d02dab29b87ed521</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.StdSubtypeResolver</span></td><td><code>353a51b197dba4be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.StdTypeResolverBuilder</span></td><td><code>80460793d55968d5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.jsontype.impl.SubTypeValidator</span></td><td><code>9e976019b6ad258e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleDeserializers</span></td><td><code>6399f6a0f689fbda</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleKeyDeserializers</span></td><td><code>a819432235e4437e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleModule</span></td><td><code>142df66a318ceef6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.module.SimpleSerializers</span></td><td><code>39516f87ef2c71bf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.node.JsonNodeFactory</span></td><td><code>0f18f4e6ce6152ad</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.BasicSerializerFactory</span></td><td><code>97a7135d9fa67778</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.BeanSerializerFactory</span></td><td><code>01c553b8a2e9ae12</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.DefaultSerializerProvider</span></td><td><code>94637395bab35717</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.Impl</span></td><td><code>53b6a802688e5c4a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.SerializerCache</span></td><td><code>c9e57915400fb429</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.SerializerFactory</span></td><td><code>a96ec5a87f2a9dec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.Serializers.Base</span></td><td><code>443d0df59bde7b26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.impl.FailingSerializer</span></td><td><code>96696f091a076f00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.impl.UnknownSerializer</span></td><td><code>97051ea56a50f09d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.BooleanSerializer</span></td><td><code>6d935809cc70dedf</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.CalendarSerializer</span></td><td><code>da6df272674c3c19</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.DateSerializer</span></td><td><code>dcf355b20d60965d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase</span></td><td><code>0f179763daa16b3e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NullSerializer</span></td><td><code>0db019a5d28b6525</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializer</span></td><td><code>b49271a382f5acb0</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers</span></td><td><code>dfe8936a5bca95d8</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base</span></td><td><code>e89fd22d3e157080</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.DoubleSerializer</span></td><td><code>b3b7c0a4dc5aa3c9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer</span></td><td><code>fd8000468d95d100</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntLikeSerializer</span></td><td><code>19a0e7c41fcbbb05</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer</span></td><td><code>3b0eb434a3630ccd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.LongSerializer</span></td><td><code>8b431cced5b1b076</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.NumberSerializers.ShortSerializer</span></td><td><code>8613a6cf439f0b06</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdJdkSerializers</span></td><td><code>b1d950d41858d3ba</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdScalarSerializer</span></td><td><code>c49a8b0a712a1383</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StdSerializer</span></td><td><code>4f003e0e5a335c53</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.StringSerializer</span></td><td><code>3d337f1cb01ba05b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToEmptyObjectSerializer</span></td><td><code>ee5696656f5b577b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToStringSerializer</span></td><td><code>b965af9d2adb22d7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.ToStringSerializerBase</span></td><td><code>c323d855ecbf9188</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.ser.std.UUIDSerializer</span></td><td><code>6409650c33e1c5b2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ArrayType</span></td><td><code>ad8a5b90ccf57379</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ClassKey</span></td><td><code>afd44456d80534c1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.ClassStack</span></td><td><code>7c85624aef6e3562</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.CollectionLikeType</span></td><td><code>160a6991673d32be</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.CollectionType</span></td><td><code>d93ee41eed402006</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.LogicalType</span></td><td><code>e0e08cb4c4d717b1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.MapLikeType</span></td><td><code>a930cb208bd12632</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.MapType</span></td><td><code>67ed0c0a97104570</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.SimpleType</span></td><td><code>6d6674d2612a166a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBase</span></td><td><code>30f634bc18651f68</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings</span></td><td><code>86a76fcb5c2bba33</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings.AsKey</span></td><td><code>8ebf3d4e93855157</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeBindings.TypeParamStash</span></td><td><code>4550b96ac1086bd3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeFactory</span></td><td><code>d3a3629803fd686e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeModifier</span></td><td><code>3fde83f0d245be4f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.type.TypeParser</span></td><td><code>2ce747808bc5c380</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.AccessPattern</span></td><td><code>44bf82acd8a3fffc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ArrayBuilders</span></td><td><code>8d854885f317f7a5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ArrayIterator</span></td><td><code>e4c9e4d38ac21c90</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.BeanUtil</span></td><td><code>2bb65aa725d7c668</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ClassUtil</span></td><td><code>fc6e81ed78dbbcd4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ClassUtil.Ctor</span></td><td><code>c595c310561c1b1e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.IgnorePropertiesUtil</span></td><td><code>2c9cb2f0c7499b84</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.LRUMap</span></td><td><code>7761915724985acc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.LinkedNode</span></td><td><code>73ca05873e25cb2e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.ObjectBuffer</span></td><td><code>22f0b3bc035ced26</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.RootNameLookup</span></td><td><code>0a1b6f208f22829a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.databind.util.StdDateFormat</span></td><td><code>c7d18d58ada26440</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORFactory</span></td><td><code>e4c3c3f11dd0e259</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORGenerator.Feature</span></td><td><code>1eeb51fa76ead90e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.dataformat.cbor.CBORParser.Feature</span></td><td><code>bf830786c5b4cbf9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Deserializers</span></td><td><code>ea126fa2e06c1dde</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Module</span></td><td><code>8e82333ec60d37e3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8Serializers</span></td><td><code>8e035f0805a72a0e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.Jdk8TypeModifier</span></td><td><code>e4d14414fff8e7f3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jdk8.PackageVersion</span></td><td><code>b49516a458b071ea</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.JavaTimeModule</span></td><td><code>4110e68e5dc8a33b</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.JavaTimeModule.1</span></td><td><code>6269c84e29480142</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.PackageVersion</span></td><td><code>21903845b80a2d37</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.DurationDeserializer</span></td><td><code>ab973e050cc98685</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.InstantDeserializer</span></td><td><code>9a2ebf5dc1053184</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310DateTimeDeserializerBase</span></td><td><code>451bbdbcdd0b2f3d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase</span></td><td><code>a42a100eb3db5063</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.JSR310StringParsableDeserializer</span></td><td><code>ec40549afa8898ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer</span></td><td><code>4ec9cd420b6efa6f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer</span></td><td><code>9cf25a0b2bde4767</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.LocalTimeDeserializer</span></td><td><code>7889361dabb08019</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.MonthDayDeserializer</span></td><td><code>d43b9f169fd06f00</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.OffsetTimeDeserializer</span></td><td><code>2a5d44e03892ea5c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.YearDeserializer</span></td><td><code>d56b6ecd9b0717ca</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.YearMonthDeserializer</span></td><td><code>f88f7121ace6966c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.DurationKeyDeserializer</span></td><td><code>86dee43d5fd8de58</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.InstantKeyDeserializer</span></td><td><code>c323cc187e10bdcd</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.Jsr310KeyDeserializer</span></td><td><code>64893f60684210d1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalDateKeyDeserializer</span></td><td><code>3639e2ff55da7fa1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalDateTimeKeyDeserializer</span></td><td><code>ed7e026ffd090c77</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.LocalTimeKeyDeserializer</span></td><td><code>c058ad0a221814f2</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.MonthDayKeyDeserializer</span></td><td><code>fe54a17b388e76da</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.OffsetDateTimeKeyDeserializer</span></td><td><code>1bfce89e8c6142a4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.OffsetTimeKeyDeserializer</span></td><td><code>7e7c73d8f28d4c13</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.PeriodKeyDeserializer</span></td><td><code>1fb27ade4fa213e5</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.YearKeyDeserializer</span></td><td><code>ded209cf80f75df6</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.YearMonthKeyDeserializer</span></td><td><code>bbb3a607d3512540</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZoneIdKeyDeserializer</span></td><td><code>010f3e4e2802434d</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZoneOffsetKeyDeserializer</span></td><td><code>b8b591cfa6cb7be9</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.deser.key.ZonedDateTimeKeyDeserializer</span></td><td><code>c3b6fe868b1396e4</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.DurationSerializer</span></td><td><code>1e922bfe151864ec</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializer</span></td><td><code>61c7dc946aa7e67a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializerBase</span></td><td><code>7878f0b5f564caa3</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase</span></td><td><code>bd4e59d7380ca96c</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.JSR310SerializerBase</span></td><td><code>2ad341990e9021dc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer</span></td><td><code>8f84db74e8d2427f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer</span></td><td><code>014d82d656c93b81</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer</span></td><td><code>30ef053f4ce38983</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.MonthDaySerializer</span></td><td><code>99c8e56bc8812c47</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.OffsetDateTimeSerializer</span></td><td><code>8a0e8bd7a69de71e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.OffsetTimeSerializer</span></td><td><code>ff84bad2852f3bf7</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.YearMonthSerializer</span></td><td><code>b9428592c48c4dbc</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.YearSerializer</span></td><td><code>0f06fc30937c7746</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.ZoneIdSerializer</span></td><td><code>04f155c4ebbe4db1</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.ZonedDateTimeSerializer</span></td><td><code>f3edd0908d04ed41</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.datatype.jsr310.ser.key.ZonedDateTimeKeySerializer</span></td><td><code>244ed33273b7bb0f</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.PackageVersion</span></td><td><code>1aa7c1c8ebe1734e</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterExtractor</span></td><td><code>33c12848ae24c025</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterNamesAnnotationIntrospector</span></td><td><code>26f4eb1794904d4a</code></td></tr><tr><td><span class="el_class">com.fasterxml.jackson.module.paramnames.ParameterNamesModule</span></td><td><code>5d5820ec8fffc7a8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.DockerClientDelegate</span></td><td><code>a9dd14a589635de8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.async.ResultCallbackTemplate</span></td><td><code>4fc75e346e7c1159</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.CreateContainerCmd</span></td><td><code>851588790efd9296</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.CreateContainerResponse</span></td><td><code>5615c43a384b60a7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.GraphData</span></td><td><code>d82120d32cd9c71f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.GraphDriver</span></td><td><code>1d06e5dbbf3f9a1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse</span></td><td><code>e7761d0bc2c057bc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse.ContainerState</span></td><td><code>163d1f162296890c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectContainerResponse.Mount</span></td><td><code>05c378117a36a836</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.InspectImageResponse</span></td><td><code>6eb708353c9c50a2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.command.RootFS</span></td><td><code>f5c14febd20645bc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.AccessMode</span></td><td><code>6ae5a6123282ed52</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.AuthConfig</span></td><td><code>70580c6150ed0e10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Bind</span></td><td><code>c6d44b47d74bcca0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.BindPropagation</span></td><td><code>304cd6e0289abaec</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Binds</span></td><td><code>790814c90ae74b7f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Capability</span></td><td><code>8f3fdd2c307b9cb5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ContainerConfig</span></td><td><code>697022c45fe186dc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ContainerNetwork</span></td><td><code>eb8d54f883894230</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.DockerObject</span></td><td><code>557852de89123528</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.DockerObjectAccessor</span></td><td><code>e2059dea34d529ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExposedPort</span></td><td><code>1178df063bb982c3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExposedPorts</span></td><td><code>bc81a6f2f9949380</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.ExternalCAProtocol</span></td><td><code>7a2691756a74cb28</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Frame</span></td><td><code>7dc8489497b804bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.HostConfig</span></td><td><code>103b6c6e7fa20dd3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Image</span></td><td><code>fd910998cbbb2d10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Info</span></td><td><code>2cdc458b12edc45b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InfoRegistryConfig</span></td><td><code>3fc9ed34f0f6a144</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InfoRegistryConfig.IndexConfig</span></td><td><code>9e8b65ba54a43b73</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.InternetProtocol</span></td><td><code>b973b59c7e9be3a1</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Isolation</span></td><td><code>c492158865d7a99c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Links</span></td><td><code>0d6bd71b3841daba</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LocalNodeState</span></td><td><code>cdc7a0302d551794</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LogConfig</span></td><td><code>6261994fdb3eb8fc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.LogConfig.LoggingType</span></td><td><code>b77412f3db86a0f6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.MountType</span></td><td><code>0581478361bc54f0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.NetworkSettings</span></td><td><code>52c5c2e196853df4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.PortBinding</span></td><td><code>d1f19697d2eaad98</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Ports</span></td><td><code>8a090962c57a1772</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Ports.Binding</span></td><td><code>67c501edc0bc1ca8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.PropagationMode</span></td><td><code>83faf858aef24464</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.RestartPolicy</span></td><td><code>ea0226a7d6627d81</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.SELContext</span></td><td><code>622b0ae2c820ddce</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.StreamType</span></td><td><code>6bb24baf46bb9eb2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.SwarmInfo</span></td><td><code>20b8ebd093f5dddc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Version</span></td><td><code>fe64a4451ae5eec5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.VersionComponent</span></td><td><code>31a21568988880e9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.VersionPlatform</span></td><td><code>d038c690966f2c86</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Volume</span></td><td><code>c9db8789811c511e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.api.model.Volumes</span></td><td><code>13216c6315c7b3df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.AbstractSocket</span></td><td><code>495e9e7499e263d8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request</span></td><td><code>f16d88731f13fd4b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request.Builder</span></td><td><code>73aed29d6d7f0cb8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.DockerHttpClient.Request.Method</span></td><td><code>d215504033a2eb71</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.ImmutableRequest</span></td><td><code>fa5d5cf09452ee50</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.ImmutableRequest.Builder</span></td><td><code>a5718c2d58dae13a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.UnixSocket</span></td><td><code>f2e40f3d8e007230</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.transport.UnixSocket.WrappedWritableByteChannel</span></td><td><code>8ef7f98bfbe891bf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl</span></td><td><code>0c115a17a149afb0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.1</span></td><td><code>ce9bc655247bcecc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.2</span></td><td><code>e4d022befc8e317e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl.ApacheResponse</span></td><td><code>b0ee86718bbe649d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.HijackingHttpRequestExecutor</span></td><td><code>ec0c5ea3f4c455df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ZerodepDockerHttpClient</span></td><td><code>80212d3cbfd7a18d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.ZerodepDockerHttpClient.Builder</span></td><td><code>ca7da4e6c41dac19</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.HttpRoute</span></td><td><code>5639b44f475a02b6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteInfo.LayerType</span></td><td><code>386e754f379b45ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteInfo.TunnelType</span></td><td><code>f38a4ed642d6d2c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.RouteTracker</span></td><td><code>a4e1c7c0b4d547cc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.SystemDefaultDnsResolver</span></td><td><code>f8785863521c0e3f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.AuthExchange</span></td><td><code>267e5be21b380522</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.AuthExchange.State</span></td><td><code>b0f6772b6b73daaf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.ChallengeType</span></td><td><code>b1bda1ce7fb39e8c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig</span></td><td><code>2b57d97db2006a9b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig.Builder</span></td><td><code>1d817214e4a08838</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.auth.KerberosConfig.Option</span></td><td><code>53055a041f204d0f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.classic.ExecChain.Scope</span></td><td><code>efb0dfb5f771963d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.classic.methods.HttpUriRequestBase</span></td><td><code>f0dd08ccae173739</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.config.RequestConfig</span></td><td><code>4d2b1f735b68d88c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.config.RequestConfig.Builder</span></td><td><code>315ee5b02dc853ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.BasicCookieStore</span></td><td><code>6d888c924efc8370</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.CookieIdentityComparator</span></td><td><code>d61ae0fec3deb484</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.cookie.CookieOrigin</span></td><td><code>3a457ca5e2f4b991</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.entity.DeflateInputStreamFactory</span></td><td><code>5ec4be2b8726c1f0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.entity.GZIPInputStreamFactory</span></td><td><code>32d2de7c36dd13b3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.AuthSupport</span></td><td><code>5bf4ee8c8d1063ed</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.ChainElement</span></td><td><code>5b26622b04e6e8f9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.CookieSpecSupport</span></td><td><code>9fe9c979d61fa283</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultAuthenticationStrategy</span></td><td><code>0b5aab05e814bc33</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultConnectionKeepAliveStrategy</span></td><td><code>7285648e70fca07e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultHttpRequestRetryStrategy</span></td><td><code>2fbcdfdb42e73857</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultRedirectStrategy</span></td><td><code>1b27322076f637c8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.DefaultSchemePortResolver</span></td><td><code>e7841ee08d7be5f8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.ExecSupport</span></td><td><code>9d01f4cc2e004f17</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.NoopUserTokenHandler</span></td><td><code>0b42e8493d6034eb</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.AuthChallengeParser</span></td><td><code>32bf8044f4051cc5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.BasicCredentialsProvider</span></td><td><code>1fc8304a29a098e5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.BasicSchemeFactory</span></td><td><code>e45b7bf9c58bba1a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.DigestSchemeFactory</span></td><td><code>75612bfb7f655b1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.HttpAuthenticator</span></td><td><code>ae401dd603e19e69</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.HttpAuthenticator.1</span></td><td><code>2880bcc49cc7654a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.KerberosSchemeFactory</span></td><td><code>c43a9be1636d3b6a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.NTLMSchemeFactory</span></td><td><code>81390b5d880b46c3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.auth.SPNegoSchemeFactory</span></td><td><code>eef805dd38e465d3</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ClassicRequestCopier</span></td><td><code>7eb65c1f1dbcf671</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpClient</span></td><td><code>79e8953b8e237287</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpResponse</span></td><td><code>78b58d209d4427f4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ConnectExec</span></td><td><code>c74bb40947cdff0f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ContentCompressionExec</span></td><td><code>d5ca1d974cf291ea</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ExecChainElement</span></td><td><code>d988f4d484a1c4a9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ExecChainElement.1</span></td><td><code>516b6a3968256a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpClientBuilder</span></td><td><code>b5c9a663459e1856</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpClients</span></td><td><code>fc576d6f2511cef8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.HttpRequestRetryExec</span></td><td><code>18ccb4bb28bf8064</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.InternalExecRuntime</span></td><td><code>bf17a1e369aa2c38</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.InternalHttpClient</span></td><td><code>1db05671b0e43299</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.MainClientExec</span></td><td><code>71629c5d1ef0de98</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ProtocolExec</span></td><td><code>c7f0fd4f606a2172</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.RedirectExec</span></td><td><code>fb53bfbe51b63e84</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.RequestEntityProxy</span></td><td><code>4b8d29767acbaa5e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.ResponseEntityProxy</span></td><td><code>08b170c16c0c5100</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.AbstractCookieAttributeHandler</span></td><td><code>68a2b0a8760fd57e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicDomainHandler</span></td><td><code>945a2fd1c591249a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicExpiresHandler</span></td><td><code>4c3e41295a2f8015</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicMaxAgeHandler</span></td><td><code>e0214bbe87fe1b04</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicPathHandler</span></td><td><code>024a27417b2166cd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.BasicSecureHandler</span></td><td><code>a22c022be3b55748</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.IgnoreCookieSpecFactory</span></td><td><code>b5b0a35b90717179</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.PublicSuffixDomainFilter</span></td><td><code>f6907cc80665d560</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpec</span></td><td><code>e8737c9683b4567f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecBase</span></td><td><code>3d276d773ab24341</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory</span></td><td><code>27e73f56ca95accc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory.2</span></td><td><code>71942189c6dd3c96</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265CookieSpecFactory.CompatibilityLevel</span></td><td><code>671aed441488a252</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.cookie.RFC6265StrictSpec</span></td><td><code>7bd3bc538aaa477c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultHttpClientConnectionOperator</span></td><td><code>e2ade76d3720b640</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultHttpResponseParserFactory</span></td><td><code>1ae3abbaca133105</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.DefaultManagedHttpClientConnection</span></td><td><code>9ff5ac67ef929932</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.LenientHttpResponseParser</span></td><td><code>b281ff44aea9a593</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.ManagedHttpClientConnectionFactory</span></td><td><code>64319a5a6f425763</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager</span></td><td><code>336265a9769a80e4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.1</span></td><td><code>d13488340b082e10</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.2</span></td><td><code>96f404d7a8c54170</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.InternalConnectionEndpoint</span></td><td><code>c3e231b64c052085</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.routing.BasicRouteDirector</span></td><td><code>b8598e29dd7b27ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.routing.DefaultRoutePlanner</span></td><td><code>1e46a900f1292eb4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.io.ConnectionEndpoint</span></td><td><code>dee11ec6945f170a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.HttpClientContext</span></td><td><code>c463709741b3863a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RedirectLocations</span></td><td><code>1309b7e42b68359e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestAddCookies</span></td><td><code>8efe5c4c45430a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestAuthCache</span></td><td><code>689fb82f44ff5361</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestClientConnControl</span></td><td><code>85e72cd67afeadfe</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestDefaultHeaders</span></td><td><code>4049e74fab1c28b8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.RequestExpectContinue</span></td><td><code>1ac647a174ef3dc0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.protocol.ResponseProcessCookies</span></td><td><code>d2ddf7b6e77d3e70</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.DomainType</span></td><td><code>abc54bc039342632</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixList</span></td><td><code>c9356014edebc1df</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixListParser</span></td><td><code>575b7174481d3e19</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixMatcher</span></td><td><code>94e70ef41285e08e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.psl.PublicSuffixMatcherLoader</span></td><td><code>ea848a4193f8a63b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.routing.RoutingSupport</span></td><td><code>73a0c3a51fe9b1fc</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.socket.PlainConnectionSocketFactory</span></td><td><code>b385986570c0a067</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.1</span></td><td><code>7cb3321a1b7b3ff1</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.concurrent.BasicFuture</span></td><td><code>822cbb102e2fb04b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.EndpointDetails</span></td><td><code>c0a12d6d4c578280</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.HttpHost</span></td><td><code>02b20aaef77f395b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.HttpVersion</span></td><td><code>618730361a1cd382</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.Method</span></td><td><code>d0a5400628e0a0a0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.ProtocolVersion</span></td><td><code>4933195216c6fd36</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.URIScheme</span></td><td><code>0e5e45e2a175778e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.CharCodingConfig</span></td><td><code>2469d3bfcba19d72</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.CharCodingConfig.Builder</span></td><td><code>a6d9af891feefa21</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Http1Config</span></td><td><code>08595348ffa5af1d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Http1Config.Builder</span></td><td><code>562d47f7cb16c26a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.NamedElementChain</span></td><td><code>615e8b4a459611a5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.NamedElementChain.Node</span></td><td><code>f9064f39a97271af</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.Registry</span></td><td><code>e6522bcb9b37a5d0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.config.RegistryBuilder</span></td><td><code>b94ae1892bcd2d54</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicEndpointDetails</span></td><td><code>9ab5ec19a218d9e0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicHttpConnectionMetrics</span></td><td><code>4b5720c65545ceb7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.BasicHttpTransportMetrics</span></td><td><code>8b4a24075ca160c2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.DefaultConnectionReuseStrategy</span></td><td><code>39342e995a48f243</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.DefaultContentLengthStrategy</span></td><td><code>4f01fe14113f01c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.EnglishReasonPhraseCatalog</span></td><td><code>a4a39ccfadd88a6a</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.AbstractMessageParser</span></td><td><code>42ba8f2efed589f8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.AbstractMessageWriter</span></td><td><code>e477a7b307a9ede5</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.BHttpConnectionBase</span></td><td><code>7884435ce1c0762b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream</span></td><td><code>f211697c725f1431</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.1</span></td><td><code>dd8ac481574b6c0e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.State</span></td><td><code>a920751bd065dbc7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ContentLengthOutputStream</span></td><td><code>f3e0cbd29144c48c</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultBHttpClientConnection</span></td><td><code>5342fa8b6eac388b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultClassicHttpResponseFactory</span></td><td><code>5c201fe195d8e59d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpRequestWriter</span></td><td><code>f66465424cac81bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpRequestWriterFactory</span></td><td><code>182bd9ad3ef9a17f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.DefaultHttpResponseParser</span></td><td><code>667929fa53dde2c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.EmptyInputStream</span></td><td><code>c4d0f4060f3bfe77</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.HttpRequestExecutor</span></td><td><code>b636217eb87e0d4d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.IncomingHttpEntity</span></td><td><code>aa50260928b07276</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl</span></td><td><code>712a2e3143485811</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionOutputBufferImpl</span></td><td><code>878c9ffaea8555cf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SocketHolder</span></td><td><code>5d483757d15af303</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.EofSensorInputStream</span></td><td><code>14845cf2f781c02f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.SocketConfig</span></td><td><code>db118248472906e7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.SocketConfig.Builder</span></td><td><code>7c1dfe92d53d2aca</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.AbstractHttpEntity</span></td><td><code>45f0fd151271e0d7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.ByteArrayEntity</span></td><td><code>511a35a2769c0307</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.HttpEntityWrapper</span></td><td><code>ef0fac7f6b9a246d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.AbstractHeaderElementIterator</span></td><td><code>9269305599ee4ff9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpRequest</span></td><td><code>463aa819d3e91c95</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpResponse</span></td><td><code>b5d600afbc79f0f6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeader</span></td><td><code>58a403c02c184b65</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeaderElementIterator</span></td><td><code>da6bf69b2cf62de4</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHeaderValueParser</span></td><td><code>62c7d9e722068365</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHttpRequest</span></td><td><code>133ff55a76ab3054</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicHttpResponse</span></td><td><code>d09033044e453653</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicLineFormatter</span></td><td><code>02a95f57482acf1e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicLineParser</span></td><td><code>04142a67916637b7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicListHeaderIterator</span></td><td><code>8c3706d78b0813a9</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicTokenIterator</span></td><td><code>6a5e20039b6d73fb</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BufferedHeader</span></td><td><code>0287c9c0fafa9a2d</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.HeaderGroup</span></td><td><code>0914f083b73d22de</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.LazyLineParser</span></td><td><code>aa228693251d30e2</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.MessageSupport</span></td><td><code>2301d5bc8fc538cf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.ParserCursor</span></td><td><code>41e24fbeea564aa0</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.RequestLine</span></td><td><code>171fd1a75f257e35</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.StatusLine</span></td><td><code>1df309f719bf3451</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.StatusLine.StatusClass</span></td><td><code>cdd21e86333af2bd</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.TokenParser</span></td><td><code>a5b3076fea4c3680</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.BasicHttpContext</span></td><td><code>e0b2c132546acab6</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.ChainBuilder</span></td><td><code>e03148917954dc59</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.DefaultHttpProcessor</span></td><td><code>48786f6ba95f7ce8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.HttpCoreContext</span></td><td><code>4b36eccd789a9adf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.HttpProcessorBuilder</span></td><td><code>546554a72cc3f837</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestContent</span></td><td><code>7a0c1d1af223dd68</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestTargetHost</span></td><td><code>0e809b8c79c439fe</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.protocol.RequestUserAgent</span></td><td><code>a0594e90863a7b2b</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.CloseMode</span></td><td><code>168f292b0e7de080</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer</span></td><td><code>79c86de1f1f7740f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.net.Ports</span></td><td><code>226adeea69f79632</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.net.URIAuthority</span></td><td><code>01205eaab5ed7b54</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolConcurrencyPolicy</span></td><td><code>a2e0e05340a53b79</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolEntry</span></td><td><code>5261dc32d6398e71</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.PoolReusePolicy</span></td><td><code>726cc311e8a76eae</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool</span></td><td><code>78fa8d1dee2f11c7</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.3</span></td><td><code>33c79afa299e8c3e</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.LeaseRequest</span></td><td><code>3d445177d5178ac8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.pool.StrictConnPool.PerRoutePool</span></td><td><code>a08b1a7717e793ab</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Args</span></td><td><code>247581dd475b4510</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Asserts</span></td><td><code>9696829f19000de8</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.ByteArrayBuffer</span></td><td><code>e7e65864fe0347fa</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.CharArrayBuffer</span></td><td><code>aaa0f3c50179f678</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Deadline</span></td><td><code>8601b20585c670bf</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.LangUtils</span></td><td><code>9d13c4eb192cf7de</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.TextUtils</span></td><td><code>96945fec48a46287</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.TimeValue</span></td><td><code>1d71a1744b92816f</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.Timeout</span></td><td><code>83147054a857cd83</code></td></tr><tr><td><span class="el_class">com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.util.VersionInfo</span></td><td><code>c55229b885a1a4dc</code></td></tr><tr><td><span class="el_class">com.google.common.base.Absent</span></td><td><code>0e98e570b062fe59</code></td></tr><tr><td><span class="el_class">com.google.common.base.Optional</span></td><td><code>eb22d289a64dc947</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy</span></td><td><code>a9ccb88e12628bab</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.1</span></td><td><code>74e60530f9dfd5a6</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.2</span></td><td><code>cca6591a7aa10fd3</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.3</span></td><td><code>a2f613527e2eaacb</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.4</span></td><td><code>139ef2624c75bbd3</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.5</span></td><td><code>6355fc1f4b132f3e</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.6</span></td><td><code>d2839c0903e98a16</code></td></tr><tr><td><span class="el_class">com.google.gson.FieldNamingPolicy.7</span></td><td><code>b15574aea5c36ec6</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson</span></td><td><code>84cf04b3f981b2c6</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.1</span></td><td><code>a54da7d249136d9c</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.2</span></td><td><code>0f5c6a06820aa4a8</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.4</span></td><td><code>6d64043c24e1e411</code></td></tr><tr><td><span class="el_class">com.google.gson.Gson.5</span></td><td><code>a2f7e6ff00fa88ea</code></td></tr><tr><td><span class="el_class">com.google.gson.GsonBuilder</span></td><td><code>0542674a7b5c4ca2</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy</span></td><td><code>0383e8018575dd2d</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy.1</span></td><td><code>cff239f5198750ee</code></td></tr><tr><td><span class="el_class">com.google.gson.LongSerializationPolicy.2</span></td><td><code>f8175a77e442ec4a</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy</span></td><td><code>6b3f5eb48341c0f7</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.1</span></td><td><code>3e28bcbd9e18f906</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.2</span></td><td><code>9ed1f6c68a8f7a31</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.3</span></td><td><code>78745d4a07673284</code></td></tr><tr><td><span class="el_class">com.google.gson.ToNumberPolicy.4</span></td><td><code>4f0bc632663193b9</code></td></tr><tr><td><span class="el_class">com.google.gson.TypeAdapter</span></td><td><code>09a301f116f23dc6</code></td></tr><tr><td><span class="el_class">com.google.gson.TypeAdapter.1</span></td><td><code>c6c289b4bd4187f1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal..Gson.Preconditions</span></td><td><code>2ad574710e4bd8e8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal..Gson.Types</span></td><td><code>f86f0e8ee8bf09df</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.ConstructorConstructor</span></td><td><code>a03e4ced9bed69a8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.Excluder</span></td><td><code>d7ab9e2a761c2e82</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ArrayTypeAdapter</span></td><td><code>ebce4a78f6b30b13</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ArrayTypeAdapter.1</span></td><td><code>3c5f19f1af83884f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.CollectionTypeAdapterFactory</span></td><td><code>c89f9bd47ce9b7e4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DateTypeAdapter</span></td><td><code>a918f4b3cc484a9e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DateTypeAdapter.1</span></td><td><code>1e1e04a31853ce1a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DefaultDateTypeAdapter.DateType</span></td><td><code>67600e175a04fa9c</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.DefaultDateTypeAdapter.DateType.1</span></td><td><code>95e6b44340ce7477</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.JsonAdapterAnnotationTypeAdapterFactory</span></td><td><code>f754ec6a28319d24</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.MapTypeAdapterFactory</span></td><td><code>26cec4b55889fec9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.NumberTypeAdapter</span></td><td><code>2c1c4b5a515ff5cc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.NumberTypeAdapter.1</span></td><td><code>d669ec06e8eb62d8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ObjectTypeAdapter</span></td><td><code>9ebf25805006560a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ObjectTypeAdapter.1</span></td><td><code>39c37c9644321ab5</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.ReflectiveTypeAdapterFactory</span></td><td><code>ad10c451ca83c1d1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters</span></td><td><code>78c1a094ed4fdeb0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.1</span></td><td><code>2ae19dadeff11dbe</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.10</span></td><td><code>48458b488550f3b0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.11</span></td><td><code>bf9c4f1b1dca896b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.12</span></td><td><code>aa13c9cdb1a53c8e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.13</span></td><td><code>42fbd5445c171038</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.14</span></td><td><code>741a8fb483adf9c2</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.15</span></td><td><code>62f5139bae16aa25</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.16</span></td><td><code>b007b18742872348</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.17</span></td><td><code>77d1fb19e7f815a9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.18</span></td><td><code>004a5836575aaa15</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.19</span></td><td><code>758b65b73745e3a4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.2</span></td><td><code>56232bab96587059</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.20</span></td><td><code>19c905ded284bf19</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.21</span></td><td><code>6e9bbe5466f1d0e0</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.22</span></td><td><code>c5dd3a44e3b9486b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.23</span></td><td><code>d79412a54d7878bb</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.24</span></td><td><code>342dea905fb076bc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.25</span></td><td><code>092297d95ef2d73d</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.26</span></td><td><code>376ffb7ff9997834</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.27</span></td><td><code>25c3851a58dade5e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.28</span></td><td><code>925a28b55aa7c1ea</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.29</span></td><td><code>806c498d6bc27245</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.3</span></td><td><code>7c4a5e89dda44ff5</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.31</span></td><td><code>e67ab9752e5e2ac4</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.32</span></td><td><code>a2226a3f7501418a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.33</span></td><td><code>904642f306b5f77e</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.34</span></td><td><code>850555ea6520cf3f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.4</span></td><td><code>476d80dfdaf927a9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.5</span></td><td><code>1aa4273bfb4a700a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.6</span></td><td><code>1b30212b5d9b9bb8</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.7</span></td><td><code>379c815c77bfb5c9</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.8</span></td><td><code>4194b15a375b9e4b</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.bind.TypeAdapters.9</span></td><td><code>a15d63bdfb43ec44</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlDateTypeAdapter</span></td><td><code>759c80a351806a6a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlDateTypeAdapter.1</span></td><td><code>5e8177dacb42fdcc</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimeTypeAdapter</span></td><td><code>c03cfadd1131b29a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimeTypeAdapter.1</span></td><td><code>38f494c57c386f02</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimestampTypeAdapter</span></td><td><code>685ac2966df2335f</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTimestampTypeAdapter.1</span></td><td><code>38e74c1f432005c2</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport</span></td><td><code>24f8c951b0c966e1</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport.1</span></td><td><code>85ef3fff6448d68a</code></td></tr><tr><td><span class="el_class">com.google.gson.internal.sql.SqlTypesSupport.2</span></td><td><code>0c921201327ae0f7</code></td></tr><tr><td><span class="el_class">com.google.gson.reflect.TypeToken</span></td><td><code>5ae7964eb1100f16</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Configuration</span></td><td><code>2401dbd750d28834</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Configuration.ConfigurationBuilder</span></td><td><code>2c6eca0db31ca57d</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.JsonPath</span></td><td><code>eb4e91662a59b621</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.Option</span></td><td><code>40891bb147661f72</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.internal.ParseContextImpl</span></td><td><code>8ac5a97bf22f2cfb</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.internal.Utils</span></td><td><code>f8ee92b9923a4484</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.AbstractJsonProvider</span></td><td><code>8893cb8865d9aca7</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.JacksonJsonProvider</span></td><td><code>da4781eab57c322f</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.json.JsonProvider</span></td><td><code>c22ff2858ce8fd40</code></td></tr><tr><td><span class="el_class">com.jayway.jsonpath.spi.mapper.JacksonMappingProvider</span></td><td><code>1c6758cb32a1af0c</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL</span></td><td><code>64616edb9a35b7d8</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL.1</span></td><td><code>0c5e6fbb019aaa08</code></td></tr><tr><td><span class="el_class">com.sun.security.sasl.gsskerb.JdkSASL.ProviderService</span></td><td><code>9b2beff76c2c0ad0</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.HikariConfig</span></td><td><code>8953450743ee4b80</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.HikariDataSource</span></td><td><code>5992a4f5451e078d</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool</span></td><td><code>154f98ab83d63f44</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.HouseKeeper</span></td><td><code>f478520d97529b30</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.MaxLifetimeTask</span></td><td><code>ef06d03502f55713</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariPool.PoolEntryCreator</span></td><td><code>d6b32389c1f40375</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyCallableStatement</span></td><td><code>4afa1004d5bb956c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyConnection</span></td><td><code>ced98f84c51ad30f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyDatabaseMetaData</span></td><td><code>2fe1695b0847b9d8</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyPreparedStatement</span></td><td><code>78e3216211f2b206</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyResultSet</span></td><td><code>f112093aff2c53e2</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.HikariProxyStatement</span></td><td><code>84742b56928ba903</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase</span></td><td><code>970b6cfceb4b6d45</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase.IMetricsTrackerDelegate</span></td><td><code>4a3b6ef7fd0813c6</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolBase.NopMetricsTrackerDelegate</span></td><td><code>cb47907bfacd6cbf</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.PoolEntry</span></td><td><code>1ebec30f1673f16f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyCallableStatement</span></td><td><code>4962fa3551796493</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyConnection</span></td><td><code>9a1082408a54a2c4</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyConnection.ClosedConnection</span></td><td><code>9a7724eefceaa28c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyDatabaseMetaData</span></td><td><code>642972d037d11e25</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyFactory</span></td><td><code>565ee10c145aa9c0</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTask</span></td><td><code>6afe9a99f2a2749a</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTask.1</span></td><td><code>eaf7af10fa978b4c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyLeakTaskFactory</span></td><td><code>a54eecc61fcd0374</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyPreparedStatement</span></td><td><code>d445ad8610bd3712</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyResultSet</span></td><td><code>a9f035effef039b5</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.pool.ProxyStatement</span></td><td><code>d88854512b92899f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource</span></td><td><code>b9f5d3120f27f553</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource.Factory</span></td><td><code>f123275c185a89bb</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ClockSource.MillisecondClockSource</span></td><td><code>768d9c39d69dd48f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.ConcurrentBag</span></td><td><code>21160ac953c51c4e</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.DriverDataSource</span></td><td><code>78f2554b899f3e3c</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.FastList</span></td><td><code>9c8091f2cadee0c2</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.SuspendResumeLock</span></td><td><code>08306a367e823d4a</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.SuspendResumeLock.1</span></td><td><code>679c81a431296d17</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.UtilityElf</span></td><td><code>f8142ee56f1f720f</code></td></tr><tr><td><span class="el_class">com.zaxxer.hikari.util.UtilityElf.DefaultThreadFactory</span></td><td><code>2796dcf22b5967fd</code></td></tr><tr><td><span class="el_class">feign.AsyncResponseHandler</span></td><td><code>8dc97d9db00baa8f</code></td></tr><tr><td><span class="el_class">feign.BaseBuilder</span></td><td><code>390d369be61c0b65</code></td></tr><tr><td><span class="el_class">feign.Client.Default</span></td><td><code>6c2f1335cd321c93</code></td></tr><tr><td><span class="el_class">feign.CollectionFormat</span></td><td><code>1352acd6f69c1972</code></td></tr><tr><td><span class="el_class">feign.Contract.BaseContract</span></td><td><code>c88ead77174dfde9</code></td></tr><tr><td><span class="el_class">feign.Contract.Default</span></td><td><code>d09d053951f82023</code></td></tr><tr><td><span class="el_class">feign.DeclarativeContract</span></td><td><code>b6f32fe8877a710e</code></td></tr><tr><td><span class="el_class">feign.DeclarativeContract.GuardedAnnotationProcessor</span></td><td><code>c0f7763a6e0435e4</code></td></tr><tr><td><span class="el_class">feign.ExceptionPropagationPolicy</span></td><td><code>dbcef08f023031f8</code></td></tr><tr><td><span class="el_class">feign.Feign</span></td><td><code>f9b1659d2bfc3f6b</code></td></tr><tr><td><span class="el_class">feign.Feign.Builder</span></td><td><code>eb9fc073c818093b</code></td></tr><tr><td><span class="el_class">feign.InvocationHandlerFactory.Default</span></td><td><code>c474750856699d05</code></td></tr><tr><td><span class="el_class">feign.Logger</span></td><td><code>83f957b993963c8f</code></td></tr><tr><td><span class="el_class">feign.Logger.Level</span></td><td><code>8d470c011260de1d</code></td></tr><tr><td><span class="el_class">feign.Logger.NoOpLogger</span></td><td><code>8b8e6833e9834a4d</code></td></tr><tr><td><span class="el_class">feign.MethodMetadata</span></td><td><code>21d162f88602bcd0</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign</span></td><td><code>6824b42ab3c14f06</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.BuildEncodedTemplateFromArgs</span></td><td><code>b855784a119b3074</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.BuildTemplateByResolvingArgs</span></td><td><code>b5e262d10dff4726</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.FeignInvocationHandler</span></td><td><code>1f20d409cb487a9b</code></td></tr><tr><td><span class="el_class">feign.ReflectiveFeign.ParseHandlersByName</span></td><td><code>8ac3ea92f8e7774b</code></td></tr><tr><td><span class="el_class">feign.Request.Body</span></td><td><code>21566a807e4bd2d0</code></td></tr><tr><td><span class="el_class">feign.Request.HttpMethod</span></td><td><code>185ace938fe2faf4</code></td></tr><tr><td><span class="el_class">feign.Request.Options</span></td><td><code>deb3587d621972e6</code></td></tr><tr><td><span class="el_class">feign.RequestTemplate</span></td><td><code>021ba6d55e4575c2</code></td></tr><tr><td><span class="el_class">feign.ResponseInterceptor</span></td><td><code>238b6528f2d58170</code></td></tr><tr><td><span class="el_class">feign.Retryer</span></td><td><code>041c0a87f9ce475a</code></td></tr><tr><td><span class="el_class">feign.Retryer.1</span></td><td><code>679fb91d151ed12a</code></td></tr><tr><td><span class="el_class">feign.Retryer.Default</span></td><td><code>fef4a600c91d24f3</code></td></tr><tr><td><span class="el_class">feign.SynchronousMethodHandler</span></td><td><code>e25b3f36ef03dc94</code></td></tr><tr><td><span class="el_class">feign.SynchronousMethodHandler.Factory</span></td><td><code>20089823daad8d8b</code></td></tr><tr><td><span class="el_class">feign.Target.HardCodedTarget</span></td><td><code>b0a6b4fd8858683b</code></td></tr><tr><td><span class="el_class">feign.Types</span></td><td><code>798e0e5864a4164b</code></td></tr><tr><td><span class="el_class">feign.Types.ParameterizedTypeImpl</span></td><td><code>9ddaf11846f13084</code></td></tr><tr><td><span class="el_class">feign.Types.WildcardTypeImpl</span></td><td><code>4ea8d4f3f923441b</code></td></tr><tr><td><span class="el_class">feign.Util</span></td><td><code>412b1b41f871ba9b</code></td></tr><tr><td><span class="el_class">feign.codec.Decoder.Default</span></td><td><code>b3e40fadbfe76a04</code></td></tr><tr><td><span class="el_class">feign.codec.Encoder.Default</span></td><td><code>750191ab05a7529d</code></td></tr><tr><td><span class="el_class">feign.codec.ErrorDecoder.Default</span></td><td><code>c6759fd9d3582bb1</code></td></tr><tr><td><span class="el_class">feign.codec.ErrorDecoder.RetryAfterDecoder</span></td><td><code>f9bee18846e0cb96</code></td></tr><tr><td><span class="el_class">feign.codec.StringDecoder</span></td><td><code>6eb508f0494bdbd4</code></td></tr><tr><td><span class="el_class">feign.form.ContentType</span></td><td><code>9c60e4fb5a56d8b8</code></td></tr><tr><td><span class="el_class">feign.form.FormEncoder</span></td><td><code>29667cc5b54b8f47</code></td></tr><tr><td><span class="el_class">feign.form.MultipartFormContentProcessor</span></td><td><code>9c33910572c4f6e4</code></td></tr><tr><td><span class="el_class">feign.form.UrlencodedFormContentProcessor</span></td><td><code>73b16bebbfba2cad</code></td></tr><tr><td><span class="el_class">feign.form.multipart.AbstractWriter</span></td><td><code>4652d5e403627309</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ByteArrayWriter</span></td><td><code>da7d76db507c87dc</code></td></tr><tr><td><span class="el_class">feign.form.multipart.DelegateWriter</span></td><td><code>7eba88b5df43269b</code></td></tr><tr><td><span class="el_class">feign.form.multipart.FormDataWriter</span></td><td><code>0c128a2e8feb938e</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ManyFilesWriter</span></td><td><code>429547dd86058434</code></td></tr><tr><td><span class="el_class">feign.form.multipart.ManyParametersWriter</span></td><td><code>a5c315a9a27d0567</code></td></tr><tr><td><span class="el_class">feign.form.multipart.PojoWriter</span></td><td><code>b859030b5d30b113</code></td></tr><tr><td><span class="el_class">feign.form.multipart.SingleFileWriter</span></td><td><code>8e1b1182a22cc8f3</code></td></tr><tr><td><span class="el_class">feign.form.multipart.SingleParameterWriter</span></td><td><code>a92c68325f16730a</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringFormEncoder</span></td><td><code>e3673615351fe8bc</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringManyMultipartFilesWriter</span></td><td><code>85aed832d6fee2dd</code></td></tr><tr><td><span class="el_class">feign.form.spring.SpringSingleMultipartFileWriter</span></td><td><code>0cc8d58965c0a9fb</code></td></tr><tr><td><span class="el_class">feign.optionals.OptionalDecoder</span></td><td><code>b6215e9faf519f7c</code></td></tr><tr><td><span class="el_class">feign.querymap.BeanQueryMapEncoder</span></td><td><code>a645a69f08db72ee</code></td></tr><tr><td><span class="el_class">feign.querymap.FieldQueryMapEncoder</span></td><td><code>e5e295cf04f6cffb</code></td></tr><tr><td><span class="el_class">feign.slf4j.Slf4jLogger</span></td><td><code>1b9c0c04f8142cd2</code></td></tr><tr><td><span class="el_class">feign.template.Expression</span></td><td><code>b518714d3e7cff7f</code></td></tr><tr><td><span class="el_class">feign.template.Expressions</span></td><td><code>ca8414054c7e0818</code></td></tr><tr><td><span class="el_class">feign.template.Expressions.SimpleExpression</span></td><td><code>72b8133e63158541</code></td></tr><tr><td><span class="el_class">feign.template.Literal</span></td><td><code>279d822a73c0efe1</code></td></tr><tr><td><span class="el_class">feign.template.QueryTemplate</span></td><td><code>ec8bdeb8086e7475</code></td></tr><tr><td><span class="el_class">feign.template.Template</span></td><td><code>71ca2e23c289b0fd</code></td></tr><tr><td><span class="el_class">feign.template.Template.ChunkTokenizer</span></td><td><code>d2069f8320936f9c</code></td></tr><tr><td><span class="el_class">feign.template.Template.EncodingOptions</span></td><td><code>d1d43de3bc7ba1d5</code></td></tr><tr><td><span class="el_class">feign.template.Template.ExpansionOptions</span></td><td><code>c95f99e560c6c22c</code></td></tr><tr><td><span class="el_class">feign.template.UriTemplate</span></td><td><code>d0a96c8a63fd0a9c</code></td></tr><tr><td><span class="el_class">feign.template.UriUtils</span></td><td><code>80e2cd211236016b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.SpringBootApp</span></td><td><code>d72fbd9bba9f11d0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.SpringBootApp..EnhancerBySpringCGLIB..7979b644</span></td><td><code>b874de4bd4866d30</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig</span></td><td><code>af472d3fec354869</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..EnhancerBySpringCGLIB..d30e7ba5</span></td><td><code>b86e98a5b39ce7e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..EnhancerBySpringCGLIB..d30e7ba5..FastClassBySpringCGLIB..35de66a6</span></td><td><code>6d5704917f353941</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.EnvironmentConfig..FastClassBySpringCGLIB..4739e156</span></td><td><code>d3252373a786ff2a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.LoggingConfig</span></td><td><code>376a19ee6c2ef548</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.Mapping</span></td><td><code>e6cac722fe05936d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.config.Mapping.1</span></td><td><code>3213b5068dc225aa</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.1NAZUTl0</span></td><td><code>42284d375ce78933</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.2BqfxJhD</span></td><td><code>154a9218a1e76c03</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.2fwqtdUT</span></td><td><code>62e5bd3ff3386b41</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.3kXH3bBq</span></td><td><code>ab5b1a20c563783a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.3tJPYDDp</span></td><td><code>eccacb6d1ff743ca</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4KPVuOeV</span></td><td><code>4d1f42cfd0a803c0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4clURWac</span></td><td><code>02bb560088de8217</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.4yvpcbFj</span></td><td><code>8f159693d4d1b530</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.5rldtkQD</span></td><td><code>e2d8606a574e4ef0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.65TQg3wn</span></td><td><code>baeaa28b8ae796f5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.6ws476Sc</span></td><td><code>763f42b571ebce6e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.71XQ1JIz</span></td><td><code>76ca4705c3fad729</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.7WqSlZwQ</span></td><td><code>b29c2ce74f1ba523</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.81EeE2A8</span></td><td><code>c26293a3ca299a1d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.8WDoAC3O</span></td><td><code>33023c7d2c65e160</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.8vP68NDh</span></td><td><code>e6d096e01b239d61</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.97sBtNTs</span></td><td><code>3900832666c318d5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.98Hjvk5H</span></td><td><code>1ebc76fc23ef4b9b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.9WZsqfEW</span></td><td><code>2962a6ad5938a338</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ALu0eIFh</span></td><td><code>b60fe12d2c81086c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.AXz4geHe</span></td><td><code>9c2470b1dd425ab9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CAbx32nL</span></td><td><code>bc79c41dc3016f7a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CAv7iyuS</span></td><td><code>207277ab3dab3260</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CMqur7GG</span></td><td><code>2fe260a89b4a16d1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.CrArw6wl</span></td><td><code>bf72961a14c65eb6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.E9qk7qvJ</span></td><td><code>4b5e1cff5c2b3bd1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.EspRtFtP</span></td><td><code>ae3a0ecb5a08d9fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Fzrac00h</span></td><td><code>f293324baf1e5214</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.G3gAjDVR</span></td><td><code>160ab754608e0453</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GEQ1FSN0</span></td><td><code>935d6d307eb72b27</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GGuFt1iZ</span></td><td><code>aaebe2cc3f960733</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.GMRd3HLV</span></td><td><code>ff292b133dff55e6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Gv6vtY3w</span></td><td><code>95e5a97f0077f45a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.HWNjFvyB</span></td><td><code>930f6ea8b3bdb878</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.HYgc2BB9</span></td><td><code>c33cfe203e48a9fb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Ixh1rYT5</span></td><td><code>7ba792d4430bdded</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.J4H8E9Lj</span></td><td><code>40903ee2a447696a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Jt3P7be5</span></td><td><code>784b961237fac03a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.K7ObvSdm</span></td><td><code>f280c1ad8012a770</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.L1gQIntG</span></td><td><code>feebf704bdc5800e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LGUb3FJI</span></td><td><code>5e31d48eb734dcd3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LKVCo34c</span></td><td><code>802fac94820f9bcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LOU03qmV</span></td><td><code>515d0e440fe44ddb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.LpWEWYmV</span></td><td><code>0c7a65cdab801c37</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.MOgEAWTM</span></td><td><code>6ad1e38006e458c5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.N4OyhoCa</span></td><td><code>fb542beb53232f6b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.NjgyfQCg</span></td><td><code>e84c85b6dcc16783</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.QCxerHA2</span></td><td><code>afe04dc27aad726c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.RyRkfPNz</span></td><td><code>10d4cb288d8e3fda</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TAnhnuxJ</span></td><td><code>3ca6efa5cf78922f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TO9qOm82</span></td><td><code>0097e48a37c6a8a6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.TXVCkyon</span></td><td><code>a89dcd4a5966e997</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ULHGz3hd</span></td><td><code>dacfbbad99dacfe3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.VlkmOjfn</span></td><td><code>31e153cfcc757a2b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.W6V6VgsD</span></td><td><code>dec958425a3e86ea</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.WXBNHHms</span></td><td><code>a5eac70e67ea13a8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.WruTg5CU</span></td><td><code>dfe0e4ed5f0f2be0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.XMzjr0Je</span></td><td><code>5b1c6c03fcda96b7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Xiv5cIS4</span></td><td><code>1f847ced09e76f88</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.XqAiXLD9</span></td><td><code>b510bbe3ba08410d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Y48dX48H</span></td><td><code>61d2fc18c87f45cf</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.YJhTcvEp</span></td><td><code>2e05ba5e0c416d83</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ZW9HYeSM</span></td><td><code>a0f4f10141413bfc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.Zy0nZBVA</span></td><td><code>b04ac2c8a5ad05f6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.aaxlMdbL</span></td><td><code>157b1623e9c1c057</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.bJuQgm9A</span></td><td><code>daab6991bd8cf942</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.bvA4beuj</span></td><td><code>97b0b18d7f90e55a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.cDxRnjBV</span></td><td><code>bf15a0e592393bed</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.cfwEsObE</span></td><td><code>85412b933199f52e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dPtumDEH</span></td><td><code>a42b158b49419744</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dhOZLnLD</span></td><td><code>09910942beee5c20</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dmdydC8m</span></td><td><code>0add9340927bdf1b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.dwvvgFA8</span></td><td><code>cb0c2da40190aac3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.e6eKcCNN</span></td><td><code>92f52e37f4b20562</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.gIsCYPGV</span></td><td><code>bbb6c642a183cf0e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.gS0heMFL</span></td><td><code>275582821f4d448c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.giyoUeht</span></td><td><code>e0716906ec1eba74</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.iObRMauk</span></td><td><code>716836664c3d892d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.iWZ6s6Ue</span></td><td><code>e478925e86bd928c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.kHkFLKyt</span></td><td><code>87a6db4f4249f829</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.kxgFpA5M</span></td><td><code>59bb5ba127027845</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.m01pJz0H</span></td><td><code>8a65a62ece98fc9d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.mPckbVwt</span></td><td><code>6844d56904e6ec40</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.nuqacccY</span></td><td><code>a5e7999161099f7e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oHxlk3ub</span></td><td><code>933f9db9ff7475ef</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oQHSlgCc</span></td><td><code>4de7bb450be71c0a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.oRRsZmQL</span></td><td><code>33a15b0e85ab5df9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.owTFK0JH</span></td><td><code>78fd2807dbaca3a7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pERB3TvZ</span></td><td><code>aa528b4ecefa7589</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pW74xi7n</span></td><td><code>9eaaaec24bcbe212</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.pyhdc4Un</span></td><td><code>05daf89d45b79d95</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.rKFHubud</span></td><td><code>e197dec271109148</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.rpcSixGu</span></td><td><code>2f5fe39e1393c62a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.tRisl71v</span></td><td><code>4bb5fe16e56e275f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vB4AzxJh</span></td><td><code>d22710d43a0387be</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vprGwd7N</span></td><td><code>318562c9b7e52f6c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.vu9nRByF</span></td><td><code>aaa21cf5b13d1230</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.w9UgoNXI</span></td><td><code>8e28b658e6eba6e5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yCNsfRTj</span></td><td><code>0ee8ecefd43f2495</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yE5OY6Oi</span></td><td><code>b6c0d6e1332bf9fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.yFImbtHu</span></td><td><code>1d69c25c2a8175c6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.ywhDuS48</span></td><td><code>8bfe41b27e1f3e8a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.zE7DDA9W</span></td><td><code>3f810029c01f75e7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.dto.PdpClientDTO.ByteBuddy.zLyABuG0</span></td><td><code>98b5e7756858528e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.health.PropertiesServiceAvailable</span></td><td><code>3a0dc17a6b35b792</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient</span></td><td><code>b55ba36001fe9ef7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.0unvaU5D</span></td><td><code>704f0344b22544f1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.0vLnxjt5</span></td><td><code>ca7b73252c66b0c5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.1dAzvVr8</span></td><td><code>bfa29ce2917f4ca6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.1rd9s5iW</span></td><td><code>3be17c56ac000f39</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.2PZr7L3V</span></td><td><code>c5329af5a69b31f8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.2bH44m2I</span></td><td><code>1bcad36bba088c01</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.3JGcZWR7</span></td><td><code>55f836318811a116</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.3YizcUfv</span></td><td><code>5933078e4f1a3c21</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.4YJckhyE</span></td><td><code>2b175fb1da9d02be</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.4ky0FyOQ</span></td><td><code>1ba8362b3494258c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.5EqmZL6J</span></td><td><code>5d7143c910aa4a4e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.7UrY7ET5</span></td><td><code>2893c6a4480e920e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.9l9ioRSw</span></td><td><code>56b32af83d8552e8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.9uCPHD8A</span></td><td><code>bf0ae27bc6f33178</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.A08xD82Y</span></td><td><code>977e4ada7465fc2d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AMs39YWi</span></td><td><code>c8aabd2b13a5eb41</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AVAfLMjt</span></td><td><code>3cb82214ac1f64a2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.AfvZHjdU</span></td><td><code>35f83107eb99b869</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Cgjm2ta2</span></td><td><code>6977a9c1deeb59bc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.D2r2uywn</span></td><td><code>433e6dbe33ac0c3d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.D9V1258P</span></td><td><code>5f6c19d501610132</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.FQNMHH8o</span></td><td><code>e57d91ec9a7dc63b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GXlDL7bx</span></td><td><code>1125652ed1f7be64</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GoqMbEZW</span></td><td><code>b1b1ae8d79e48289</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.GvGAhFFO</span></td><td><code>39551d9605f16e09</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.IDxwfKj1</span></td><td><code>c45400927100a477</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JJ7v5O3b</span></td><td><code>6df12ecdaebf7896</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JM9arvTB</span></td><td><code>277bf0e3b4af19d3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JfjNtV9g</span></td><td><code>606683666a9c1fcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JjOKZthy</span></td><td><code>0f2ec8a75e3f2c18</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JnEPltCj</span></td><td><code>bb7136871d42b2a3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.JusZ67Zd</span></td><td><code>cec909c56cfcb4c3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.LjGVDRLU</span></td><td><code>d0ff4c06a009a9a8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Mt35eLBu</span></td><td><code>b968ef33a2ccf5de</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.NQfNDVB3</span></td><td><code>3c6f3d6ffeed6b1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Nja84fS5</span></td><td><code>50d3600d2839c6d9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.NrbkRRlb</span></td><td><code>8a5598b95226c01d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.PqT5LNGI</span></td><td><code>ed0568f23d2134c0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.PzcDKBxk</span></td><td><code>bb042997571a6ac6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Q2E5dir5</span></td><td><code>edc0fe3e9cd27b31</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Qcdhpb8f</span></td><td><code>e8fdb8b9557d59a0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.QjO8LNlf</span></td><td><code>d0bd413d181aa71e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.S2hfatWA</span></td><td><code>6d906423f52096ab</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.SNZEsgpa</span></td><td><code>22510f7f677017d3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.TlrTQ1pU</span></td><td><code>f8396193f5f97960</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.TmxlT659</span></td><td><code>73cced4bc9f022f3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.UMvRI6Ln</span></td><td><code>ab30896fc8be6bcb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.V8SAE4zr</span></td><td><code>2e922e7068f3e85d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.VlgNAM4X</span></td><td><code>fd125f0cbf54a546</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.VpOoWiji</span></td><td><code>c5111674bbd1063c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.WfrL3tCE</span></td><td><code>1956f53643e12b8e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.X1ioFary</span></td><td><code>b0ac7f222e5c6c08</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.Y9hwQAx2</span></td><td><code>19d682e060e88ac5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.YCusH6P5</span></td><td><code>10860120051c1a76</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ZN8LdWll</span></td><td><code>6d9e5605adb3554f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ZqoC4hki</span></td><td><code>c61aa628b87b027f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.bDNPrQy6</span></td><td><code>c53706e02a086fc2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.bi05yoVq</span></td><td><code>358315c9b7b3693b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.cij6NM5d</span></td><td><code>358905680ca0eed6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.clFu3XhQ</span></td><td><code>7126163b05e06ac4</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.ct58Foug</span></td><td><code>2876638cc2df85ee</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.d8GaDFrU</span></td><td><code>3b8b89c1ab2b8e8a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.dkRpW7jD</span></td><td><code>a84669e3e61cb688</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.e04BwM2s</span></td><td><code>b94460d69e5ea43c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.gNo8MS4J</span></td><td><code>c4874fe6dacc1f33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.gayVz1A7</span></td><td><code>60b3f256c7961b2b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.hSQpFEZd</span></td><td><code>2e94860fef1b14de</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jJcOAq7r</span></td><td><code>29fb0cc466117079</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jVGzAvSk</span></td><td><code>22438cc107b4e4da</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jmQhPTpK</span></td><td><code>26d1735677bd63fe</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.jz3TDn1m</span></td><td><code>37787c8031e7dc31</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.lhOCoGbu</span></td><td><code>77ae949bf941e906</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.md2WjjVV</span></td><td><code>950a6f8f4da0be5b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.mrnlaEmm</span></td><td><code>55b1b254529d86eb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.nLoUMFLe</span></td><td><code>a8a7d50579c7984d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oE8mb8KG</span></td><td><code>72eb0288630855a0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oR6o9ELQ</span></td><td><code>e37dcbcc42c1fd62</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.oUd65Hm4</span></td><td><code>b4d3c5a057da0453</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.obAiCFMo</span></td><td><code>8792c9605037a825</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.on8Zo9hL</span></td><td><code>66e73c50b0bb7d5f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.paF0t6VM</span></td><td><code>ac1c1af96d741e9f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.pwKL9G8m</span></td><td><code>690c8ed48d1c9d1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.q5ftKEIB</span></td><td><code>a63f2d901e54e128</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qITO9duJ</span></td><td><code>b6e0f7a33d7d8693</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qxssMzfw</span></td><td><code>b09704bf430e9d3f</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.qyvnsIGd</span></td><td><code>49721e0b91ea16a5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.r49YwygE</span></td><td><code>c5b1480e25d4af3c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.rZHvDPnb</span></td><td><code>e0e558af3496aa33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.riae9MfC</span></td><td><code>1059cb577ab15503</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.s5P0YAHw</span></td><td><code>6d88aa93281898bb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.sIxbC5CR</span></td><td><code>ff770d82b24bd379</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.sujt6Drx</span></td><td><code>3861d56601b74fcc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.tMeFldqd</span></td><td><code>71ca029adce6c116</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.tyXLcFtj</span></td><td><code>90af39789968e6b8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.vDos0udM</span></td><td><code>56f86a0240468804</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.vvAABRdu</span></td><td><code>39d37a5d49d3d565</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.w7htM1kR</span></td><td><code>575a324c7403117c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.wBodVug9</span></td><td><code>7b8e29ca2b3d3d25</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.wsM6hJwO</span></td><td><code>bab36f45ebb5ea11</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xDm07pyd</span></td><td><code>5e252ab1a0f8254a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xsWHT4NM</span></td><td><code>4adf39e72b40909a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.xuABsRp5</span></td><td><code>fe16deeab65b7b71</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.yWIHEIVR</span></td><td><code>3ae197b6353b0768</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.PdpClient.ByteBuddy.zy4bCVsS</span></td><td><code>0b96216e6bfdfb35</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.Role</span></td><td><code>31c4f95e3001faf0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.SinceSource</span></td><td><code>f39395c805743710</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.TimestampBase</span></td><td><code>8dcdba78e3486b1a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.model.TooFrequentInvocations</span></td><td><code>3a42c8e963383d68</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.properties.PropertiesServiceImpl</span></td><td><code>0e361667415e0746</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceImpl</span></td><td><code>ad86a5d5566d19f0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceImpl..EnhancerBySpringCGLIB..e1857030</span></td><td><code>5abb13d3c3468fa8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ContractServiceStub</span></td><td><code>86c4632345671122</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl</span></td><td><code>6717b256e889593b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..EnhancerBySpringCGLIB..e84ea5d5</span></td><td><code>b519e499f56c479c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..EnhancerBySpringCGLIB..e84ea5d5..FastClassBySpringCGLIB..85e5092e</span></td><td><code>50b64ef02689de24</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.PdpClientServiceImpl..FastClassBySpringCGLIB..2f05934</span></td><td><code>3ad261966ea94ce5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.ResourceNotFoundException</span></td><td><code>c1dbf326fbf512e4</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.service.RoleServiceImpl</span></td><td><code>855d7c160b044703</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DPostgresqlContainer</span></td><td><code>ea92aedb4749868d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig</span></td><td><code>750478b47e5252e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..EnhancerBySpringCGLIB..155f405e</span></td><td><code>cf66fdd89860e924</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..EnhancerBySpringCGLIB..155f405e..FastClassBySpringCGLIB..358d91eb</span></td><td><code>f340c3bcd03d327b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.AB2DSQSMockConfig..FastClassBySpringCGLIB..aff467ef</span></td><td><code>853e156651c4603a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig</span></td><td><code>339ebed9f788f1ca</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..EnhancerBySpringCGLIB..6cde31c7</span></td><td><code>3670cf68182241cb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..EnhancerBySpringCGLIB..6cde31c7..FastClassBySpringCGLIB..58161a41</span></td><td><code>2962e8f3ef6e567a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.ContractServiceTestConfig..FastClassBySpringCGLIB..fc123538</span></td><td><code>660525c3b25cdde5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.DataSetup</span></td><td><code>9e74d3147898e543</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.common.util.DateUtil</span></td><td><code>0ee657f949290243</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract</span></td><td><code>d5213578f7cd152d</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract.ContractType</span></td><td><code>3b7b4fe6f0359810</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.Contract.UpdateMode</span></td><td><code>5bb0c2f09d65cd51</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.413XWEyS</span></td><td><code>702172e394aac64c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.Abck14VX</span></td><td><code>2be185d0c12c2851</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.AvJZYSZs</span></td><td><code>867dace998dcffda</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.BSwTiPtE</span></td><td><code>8f393e7e5a4edfc7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.CQZR0M1K</span></td><td><code>e1f72c40181fc51a</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.DHxDNUaK</span></td><td><code>bcf648619f769dc6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.FYv82cqa</span></td><td><code>402b0550ff5b38e2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.GZsnPpWm</span></td><td><code>ce55e07e30a7a587</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.I7MkikbB</span></td><td><code>e4e16387393d5d38</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.KaTYjiR6</span></td><td><code>dbe84afdd781d956</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.Nu5esgJq</span></td><td><code>444424873bd01763</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.QQDMZBzC</span></td><td><code>0acaa8e391518c8b</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.RRpCtOiH</span></td><td><code>e0f0c7f9f1c2b273</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.UAIu1YlQ</span></td><td><code>06bfce35810e7bf5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.VblF9rOq</span></td><td><code>351daa5b22f379ec</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.XOPveZOh</span></td><td><code>d84197d9e5473ada</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.YTTUrBD9</span></td><td><code>4eca1c6c9c244c98</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.ZqjWRVXd</span></td><td><code>881c9dd3f31ba513</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.e5YkS7sz</span></td><td><code>86dd452b14d131d2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.jeKlcTgY</span></td><td><code>371de93aa4af5c54</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.qYzf0LZD</span></td><td><code>10c99a9f910737b0</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.rGCx50IN</span></td><td><code>9b95f2ee51fb2989</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.sJwLj0NQ</span></td><td><code>d2d115ed118cfaeb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.sjrGn86d</span></td><td><code>c9f9ece450f42039</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.uNPAbt0V</span></td><td><code>f753ca5efdb296f1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.ContractDTO.ByteBuddy.uOs2YISU</span></td><td><code>73c755ce07f09afb</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.contracts.model.TimestampBase</span></td><td><code>98d3d71e16ca2649</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig</span></td><td><code>d1bbf3436d19819c</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..EnhancerBySpringCGLIB..d7dbd5c1</span></td><td><code>3f9af44e1df61c8e</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..EnhancerBySpringCGLIB..d7dbd5c1..FastClassBySpringCGLIB..f0d0ea57</span></td><td><code>f6881a9a2ff693fd</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSConfig..FastClassBySpringCGLIB..56df93f2</span></td><td><code>d3cb8811b880c9f5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.clients.SQSEventClient</span></td><td><code>eaf05804f6e524f7</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.config.Ab2dEnvironment</span></td><td><code>4e83aedecc0646b8</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.JobStatusChangeEvent</span></td><td><code>017daff7a9c2ab06</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.LoggableEvent</span></td><td><code>b5aac0c2c6d382c9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.eventclient.events.SlackEvents</span></td><td><code>998a7d6e51271dc3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.fhir.FhirVersion</span></td><td><code>e0d5d638201cfdc3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.fhir.Versions</span></td><td><code>8ee0e779cb2379e9</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.JobTestSpringBootApp</span></td><td><code>df32e7e7c3e4e2d6</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.JobTestSpringBootApp..EnhancerBySpringCGLIB..9cecf5c9</span></td><td><code>f1eebd1b3e03df33</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/JobPollResult.html" class="el_class">gov.cms.ab2d.job.dto.JobPollResult</a></td><td><code>169df12eba1d72f5</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/StaleJob.html" class="el_class">gov.cms.ab2d.job.dto.StaleJob</a></td><td><code>000e5132023ded2f</code></td></tr><tr><td><a href="gov.cms.ab2d.job.dto/StartJobDTO.html" class="el_class">gov.cms.ab2d.job.dto.StartJobDTO</a></td><td><code>f0a15b91d5fedd71</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/Job.html" class="el_class">gov.cms.ab2d.job.model.Job</a></td><td><code>2f57beff628ad983</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobOutput.html" class="el_class">gov.cms.ab2d.job.model.JobOutput</a></td><td><code>2bd4f8d1b6911fe4</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStartedBy.html" class="el_class">gov.cms.ab2d.job.model.JobStartedBy</a></td><td><code>2b0fe7460ae306f5</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus.html" class="el_class">gov.cms.ab2d.job.model.JobStatus</a></td><td><code>371057992d3b6a49</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$1.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.1</a></td><td><code>41fd2321b7d0b691</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$2.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.2</a></td><td><code>556f7ee3ae6c72cc</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$3.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.3</a></td><td><code>161a7b73c14b4a34</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$4.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.4</a></td><td><code>9a656652e1b8ef3a</code></td></tr><tr><td><a href="gov.cms.ab2d.job.model/JobStatus$5.html" class="el_class">gov.cms.ab2d.job.model.JobStatus.5</a></td><td><code>0f20640f46136df2</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.model.JobTest</span></td><td><code>b4dc2186bc63e435</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/InvalidJobAccessException.html" class="el_class">gov.cms.ab2d.job.service.InvalidJobAccessException</a></td><td><code>76da73823d0164b6</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/InvalidJobStateTransition.html" class="el_class">gov.cms.ab2d.job.service.InvalidJobStateTransition</a></td><td><code>daf5e86dbe1942b5</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobCleanup</span></td><td><code>0dd1aae13c75998f</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobOutputMissingException.html" class="el_class">gov.cms.ab2d.job.service.JobOutputMissingException</a></td><td><code>ea2d4888f5bf12db</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobOutputServiceImpl.html" class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl</a></td><td><code>74057a92b17791cc</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..EnhancerBySpringCGLIB..8ec30a3e</span></td><td><code>beaa37bf5fb21330</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..EnhancerBySpringCGLIB..8ec30a3e..FastClassBySpringCGLIB..4e42a082</span></td><td><code>697a4fd501a562d1</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceImpl..FastClassBySpringCGLIB..ec078cb7</span></td><td><code>4ab5b840e3553998</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobOutputServiceTest</span></td><td><code>9fc4414581d252ab</code></td></tr><tr><td><a href="gov.cms.ab2d.job.service/JobServiceImpl.html" class="el_class">gov.cms.ab2d.job.service.JobServiceImpl</a></td><td><code>0dcbb2aad10f60c3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..EnhancerBySpringCGLIB..b06190e1</span></td><td><code>cac3a6f109c6eac3</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..EnhancerBySpringCGLIB..b06190e1..FastClassBySpringCGLIB..4400f50d</span></td><td><code>5bac0c678acf4b33</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceImpl..FastClassBySpringCGLIB..385276b8</span></td><td><code>81041e7cee30f652</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.JobServiceTest</span></td><td><code>ad00826271a3e2db</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.service.MaxJobsTest</span></td><td><code>0903682bee65914a</code></td></tr><tr><td><a href="gov.cms.ab2d.job.util/JobUtil.html" class="el_class">gov.cms.ab2d.job.util.JobUtil</a></td><td><code>1d3e5fbcaf6d78ed</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.job.util.JobUtilTest</span></td><td><code>b1522dea279fa270</code></td></tr><tr><td><span class="el_class">gov.cms.ab2d.properties.client.PropertiesClientImpl</span></td><td><code>630329cdcc654d63</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.condition.OnAwsCloudEnvironmentCondition</span></td><td><code>eccf47c546d4cdb7</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextCredentialsAutoConfiguration</span></td><td><code>554171c127512f0f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextCredentialsAutoConfiguration.Registrar</span></td><td><code>5b58543aaf7c9995</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextRegionProviderAutoConfiguration</span></td><td><code>ee3eb11a73c406af</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextRegionProviderAutoConfiguration.Registrar</span></td><td><code>602fb2b6584f0ef4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextResourceLoaderAutoConfiguration</span></td><td><code>42bff6f302202dcd</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.ContextResourceLoaderAutoConfiguration.Registrar</span></td><td><code>580f7e2ca0c27b42</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsCredentialsProperties</span></td><td><code>d3179a2449dcaa31</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsRegionProperties</span></td><td><code>2d0e288106d738a4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.context.properties.AwsS3ResourceLoaderProperties</span></td><td><code>a2f7de5058963f33</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration</span></td><td><code>79f0a33aff65ad20</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration.SnsWebConfiguration</span></td><td><code>b592a511c074cd51</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration.SnsWebConfiguration.1</span></td><td><code>ba0a2d60af5dd2ce</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SnsProperties</span></td><td><code>eb4a9a9f3f3b3057</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration</span></td><td><code>ca2ea2e3ce2fb52c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration.SqsClientConfiguration</span></td><td><code>e446ea899a659032</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsAutoConfiguration.SqsConfiguration</span></td><td><code>5c5328b1730247fd</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties</span></td><td><code>c4e4b72ba87f1c87</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties.HandlerProperties</span></td><td><code>3ab31f7c45165a82</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.messaging.SqsProperties.ListenerProperties</span></td><td><code>a0c57f0a3ac6e207</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.autoconfigure.security.CognitoAuthenticationAutoConfiguration.OnUserPoolIdAndRegionPropertiesCondition</span></td><td><code>528138b716fe0cc6</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.annotation.OnMissingAmazonClientCondition</span></td><td><code>f32344994f3eaa6d</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.config.annotation.ContextResourceLoaderConfiguration.Registrar</span></td><td><code>3d9e83361904b453</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.context.support.io.SimpleStorageProtocolResolverConfigurer</span></td><td><code>59398fcdb40deb29</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.SpringCloudClientConfiguration</span></td><td><code>f6eec74a4a355348</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AmazonWebserviceClientConfigurationUtils</span></td><td><code>fa5c6a3f92d4f16d</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AmazonWebserviceClientFactoryBean</span></td><td><code>57b461a6f4f79317</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.config.AwsClientProperties</span></td><td><code>62961bfc4748acca</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.io.s3.SimpleStorageNameUtils</span></td><td><code>cb4ebd7b30214750</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.io.s3.SimpleStorageProtocolResolver</span></td><td><code>93cbadb32d64c89f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.core.region.StaticRegionProvider</span></td><td><code>3ccdc670fbaf096c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.config.QueueMessageHandlerFactory</span></td><td><code>aff51f1e91e411f0</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.config.SimpleMessageListenerContainerFactory</span></td><td><code>af632973a7fd3bb5</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.core.QueueMessagingTemplate</span></td><td><code>4d3d6b31f3766161</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.core.support.AbstractMessageChannelMessagingSendingTemplate</span></td><td><code>ca1c56cd5304a17b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.AbstractNotificationMessageHandlerMethodArgumentResolver</span></td><td><code>9163c5b5c28c3a06</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationMessageHandlerMethodArgumentResolver</span></td><td><code>36a1e346604a0a76</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationStatusHandlerMethodArgumentResolver</span></td><td><code>f5b475247911b237</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.NotificationSubjectHandlerMethodArgumentResolver</span></td><td><code>e460fbb72c424de6</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.endpoint.config.NotificationHandlerMethodArgumentResolverConfigurationUtils</span></td><td><code>d61148fc3f309e56</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.AbstractMessageListenerContainer</span></td><td><code>fd78ed31ae20f29f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.QueueMessageHandler</span></td><td><code>0ca476ee3fa60bce</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.QueueMessageHandler.NoOpValidator</span></td><td><code>a3d325f9bbe7501b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SendToHandlerMethodReturnValueHandler</span></td><td><code>b01aca0392c4cb64</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SimpleMessageListenerContainer</span></td><td><code>69545d24bd1e29c4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SqsMessageDeletionPolicy</span></td><td><code>ee52f9c759739e2c</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.SqsMessageMethodArgumentResolver</span></td><td><code>6b6320bced425df2</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.support.AcknowledgmentHandlerMethodArgumentResolver</span></td><td><code>966ae62baacb1b8e</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.listener.support.VisibilityHandlerMethodArgumentResolver</span></td><td><code>42724e0c10a39dc4</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.NotificationMessageArgumentResolver</span></td><td><code>b2d0a52e19442f9b</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.NotificationSubjectArgumentResolver</span></td><td><code>ce9cb5e9346cdfd2</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.SqsHeadersMethodArgumentResolver</span></td><td><code>61d1352dbbb2cd39</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.converter.NotificationRequestConverter</span></td><td><code>1843f52db95e2e7f</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.converter.ObjectMessageConverter</span></td><td><code>86e2a599b8e2fadf</code></td></tr><tr><td><span class="el_class">io.awspring.cloud.messaging.support.destination.DynamicQueueUrlDestinationResolver</span></td><td><code>9e9fa514743494cc</code></td></tr><tr><td><span class="el_class">io.netty.util.AbstractConstant</span></td><td><code>0f040c9c0d06c7a3</code></td></tr><tr><td><span class="el_class">io.netty.util.AttributeKey</span></td><td><code>75cb5b176dc487c1</code></td></tr><tr><td><span class="el_class">io.netty.util.AttributeKey.1</span></td><td><code>21d1e71eb5b0c66a</code></td></tr><tr><td><span class="el_class">io.netty.util.ConstantPool</span></td><td><code>f136ff447d5c0a93</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.CleanerJava9</span></td><td><code>c3217a004b2cb445</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.CleanerJava9.1</span></td><td><code>715f0315895648ab</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.ObjectUtil</span></td><td><code>f761d0f0aaff1a5b</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent</span></td><td><code>06e808f0efd2a309</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.1</span></td><td><code>6de9e3bec6d77e49</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.2</span></td><td><code>bec19bd2b2a422a6</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent.4</span></td><td><code>65e7a0a6d8af0738</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0</span></td><td><code>192d501cb5e4c9da</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.1</span></td><td><code>f03ff3a49bff1101</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.2</span></td><td><code>e854371902d30ab4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.3</span></td><td><code>0df1a05674ffc3c4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.4</span></td><td><code>df80102c32cdcaf6</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.5</span></td><td><code>3cd7e2a765c36019</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.6</span></td><td><code>684e777e0bee3ca8</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.7</span></td><td><code>5beb42d1db3de883</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.PlatformDependent0.9</span></td><td><code>19a1250c80b0d417</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.ReflectionUtil</span></td><td><code>c494a7a84e352d17</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.SystemPropertyUtil</span></td><td><code>eda8201dbf84e815</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.AbstractInternalLogger</span></td><td><code>4ed6b1fea48925d4</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.InternalLoggerFactory</span></td><td><code>fc75e15d1bb35362</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.LocationAwareSlf4JLogger</span></td><td><code>06cccddcab82d498</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.Slf4JLoggerFactory</span></td><td><code>1042cae2dcaea037</code></td></tr><tr><td><span class="el_class">io.netty.util.internal.logging.Slf4JLoggerFactory.NopInstanceHolder</span></td><td><code>2dfbd24a979764a5</code></td></tr><tr><td><span class="el_class">java.sql.DriverInfo</span></td><td><code>eb5e9effe229e19a</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager</span></td><td><code>c36bb91292800306</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager.1</span></td><td><code>4d9905a690b31323</code></td></tr><tr><td><span class="el_class">java.sql.DriverManager.2</span></td><td><code>82075f840596abb3</code></td></tr><tr><td><span class="el_class">java.sql.SQLException</span></td><td><code>70f019c57e2fb6e1</code></td></tr><tr><td><span class="el_class">java.sql.SQLPermission</span></td><td><code>54412b8d052da6b6</code></td></tr><tr><td><span class="el_class">java.sql.Timestamp</span></td><td><code>a63c1c76a5380acd</code></td></tr><tr><td><span class="el_class">javax.annotation.meta.When</span></td><td><code>584296a1ba8ea611</code></td></tr><tr><td><span class="el_class">javax.el.ELManager</span></td><td><code>a12387794d838f22</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory</span></td><td><code>8af382a33040e370</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory.CacheKey</span></td><td><code>9ae5b8172ab611f9</code></td></tr><tr><td><span class="el_class">javax.el.ExpressionFactory.CacheValue</span></td><td><code>f3c4077141a2308d</code></td></tr><tr><td><span class="el_class">javax.el.Util</span></td><td><code>de5656582166fafa</code></td></tr><tr><td><span class="el_class">javax.el.Util.CacheKey</span></td><td><code>63faabc22e2fd964</code></td></tr><tr><td><span class="el_class">javax.el.Util.CacheValue</span></td><td><code>213084bee75afc60</code></td></tr><tr><td><span class="el_class">javax.persistence.CacheRetrieveMode</span></td><td><code>273bd91184737933</code></td></tr><tr><td><span class="el_class">javax.persistence.CacheStoreMode</span></td><td><code>736c4a51d1a49265</code></td></tr><tr><td><span class="el_class">javax.persistence.CascadeType</span></td><td><code>b5dcba77401134f8</code></td></tr><tr><td><span class="el_class">javax.persistence.ConstraintMode</span></td><td><code>3e699fe68739c682</code></td></tr><tr><td><span class="el_class">javax.persistence.DiscriminatorType</span></td><td><code>6b1671936519c1dc</code></td></tr><tr><td><span class="el_class">javax.persistence.EnumType</span></td><td><code>52b3f8e8d0f8bad9</code></td></tr><tr><td><span class="el_class">javax.persistence.FetchType</span></td><td><code>a4d3e24993e21060</code></td></tr><tr><td><span class="el_class">javax.persistence.FlushModeType</span></td><td><code>607eb60219b1a13e</code></td></tr><tr><td><span class="el_class">javax.persistence.GenerationType</span></td><td><code>4c62a706c2ffa234</code></td></tr><tr><td><span class="el_class">javax.persistence.InheritanceType</span></td><td><code>f8d4b7e7055576f3</code></td></tr><tr><td><span class="el_class">javax.persistence.LockModeType</span></td><td><code>6a6d75bdc9e5ac41</code></td></tr><tr><td><span class="el_class">javax.persistence.NoResultException</span></td><td><code>720fb171df10bc10</code></td></tr><tr><td><span class="el_class">javax.persistence.Persistence</span></td><td><code>216045b6f0a93b9e</code></td></tr><tr><td><span class="el_class">javax.persistence.Persistence.PersistenceUtilImpl</span></td><td><code>e31045726852dfe8</code></td></tr><tr><td><span class="el_class">javax.persistence.PersistenceContextType</span></td><td><code>33022ffbba0e3bfb</code></td></tr><tr><td><span class="el_class">javax.persistence.PersistenceException</span></td><td><code>f7ba9f9693e93073</code></td></tr><tr><td><span class="el_class">javax.persistence.PessimisticLockScope</span></td><td><code>c07a815215710a6c</code></td></tr><tr><td><span class="el_class">javax.persistence.RollbackException</span></td><td><code>ac7526fc0be9db0b</code></td></tr><tr><td><span class="el_class">javax.persistence.SharedCacheMode</span></td><td><code>31e581cfc81eb206</code></td></tr><tr><td><span class="el_class">javax.persistence.SynchronizationType</span></td><td><code>3e49777a7c0f37e2</code></td></tr><tr><td><span class="el_class">javax.persistence.TemporalType</span></td><td><code>e4593e83ade1734a</code></td></tr><tr><td><span class="el_class">javax.persistence.ValidationMode</span></td><td><code>7b6e77cd751c7f51</code></td></tr><tr><td><span class="el_class">javax.persistence.criteria.JoinType</span></td><td><code>64720838777121e6</code></td></tr><tr><td><span class="el_class">javax.persistence.criteria.Predicate.BooleanOperator</span></td><td><code>ef69fb07afeb45ab</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Attribute.PersistentAttributeType</span></td><td><code>b8358747980c390a</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Bindable.BindableType</span></td><td><code>c8a4b006cca9f9da</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.PluralAttribute.CollectionType</span></td><td><code>2b4a348bbe532b3f</code></td></tr><tr><td><span class="el_class">javax.persistence.metamodel.Type.PersistenceType</span></td><td><code>f7e21cadc0ce09b7</code></td></tr><tr><td><span class="el_class">javax.persistence.spi.PersistenceUnitTransactionType</span></td><td><code>983aa44b000e5bb2</code></td></tr><tr><td><span class="el_class">javax.servlet.DispatcherType</span></td><td><code>ee110897cc14a56f</code></td></tr><tr><td><span class="el_class">javax.servlet.GenericServlet</span></td><td><code>ed7d65aabb6e22e1</code></td></tr><tr><td><span class="el_class">javax.servlet.MultipartConfigElement</span></td><td><code>8a88686f5909a372</code></td></tr><tr><td><span class="el_class">javax.servlet.ServletInputStream</span></td><td><code>9210b1a3c6e801bc</code></td></tr><tr><td><span class="el_class">javax.servlet.ServletOutputStream</span></td><td><code>3919a67b4b56f729</code></td></tr><tr><td><span class="el_class">javax.servlet.SessionTrackingMode</span></td><td><code>4728805721f3b238</code></td></tr><tr><td><span class="el_class">javax.servlet.http.HttpServlet</span></td><td><code>37bbd38a827afbc4</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintTarget</span></td><td><code>ac805a75a8daa5a7</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintValidator</span></td><td><code>c10dc7b1141cc822</code></td></tr><tr><td><span class="el_class">javax.validation.ConstraintViolationException</span></td><td><code>42a247eeee013328</code></td></tr><tr><td><span class="el_class">javax.validation.ElementKind</span></td><td><code>0f8ad4fec70a4a77</code></td></tr><tr><td><span class="el_class">javax.validation.Validation</span></td><td><code>abc4ea9938d7fa94</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.DefaultValidationProviderResolver</span></td><td><code>00a6fa0b850d03ff</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.GenericBootstrapImpl</span></td><td><code>0f9c2e6ab70940c2</code></td></tr><tr><td><span class="el_class">javax.validation.Validation.GetValidationProviderListAction</span></td><td><code>fd32dbde6072ceae</code></td></tr><tr><td><span class="el_class">javax.validation.ValidationException</span></td><td><code>181bc43b3b6fbe05</code></td></tr><tr><td><span class="el_class">javax.validation.constraintvalidation.ValidationTarget</span></td><td><code>d5f8ccab5b116560</code></td></tr><tr><td><span class="el_class">javax.validation.executable.ExecutableType</span></td><td><code>fba9bc85de946dde</code></td></tr><tr><td><span class="el_class">javax.validation.metadata.ValidateUnwrappedValue</span></td><td><code>3d1c7ece025c0687</code></td></tr><tr><td><span class="el_class">kotlin.DeprecationLevel</span></td><td><code>55f7095ae1aec5fc</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersion</span></td><td><code>9fbc7386c90d0af4</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersion.Companion</span></td><td><code>434d4b13b54b168a</code></td></tr><tr><td><span class="el_class">kotlin.KotlinVersionCurrentValue</span></td><td><code>5bf8c4393b965df4</code></td></tr><tr><td><span class="el_class">kotlin.annotation.AnnotationRetention</span></td><td><code>7bbe3b678e9908fe</code></td></tr><tr><td><span class="el_class">kotlin.annotation.AnnotationTarget</span></td><td><code>12f6a905b338b488</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractCollection</span></td><td><code>d5263d9c0000663a</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractList</span></td><td><code>bb17e23cb871a039</code></td></tr><tr><td><span class="el_class">kotlin.collections.AbstractList.Companion</span></td><td><code>c58a8c2d20ee730a</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArrayAsCollection</span></td><td><code>fdebeca9a0243472</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysKt___ArraysJvmKt</span></td><td><code>42eb3fe86b4ad4a0</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysKt___ArraysKt</span></td><td><code>3ec92cdd5f4b3dde</code></td></tr><tr><td><span class="el_class">kotlin.collections.ArraysUtilJVM</span></td><td><code>9595b65dba34e5b6</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__CollectionsJVMKt</span></td><td><code>03e0a0357f0bc3b3</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__CollectionsKt</span></td><td><code>e4e1208a66288323</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt__MutableCollectionsJVMKt</span></td><td><code>2ed61bceedb93d4a</code></td></tr><tr><td><span class="el_class">kotlin.collections.CollectionsKt___CollectionsKt</span></td><td><code>1cdce47d79685212</code></td></tr><tr><td><span class="el_class">kotlin.collections.EmptySet</span></td><td><code>58a1426bea9aaa9f</code></td></tr><tr><td><span class="el_class">kotlin.collections.SetsKt__SetsKt</span></td><td><code>e5504b460d14b879</code></td></tr><tr><td><span class="el_class">kotlin.comparisons.ComparisonsKt__ComparisonsKt</span></td><td><code>e3e49a4d49c05bc3</code></td></tr><tr><td><span class="el_class">kotlin.internal.ProgressionUtilKt</span></td><td><code>5eaee631f07b15e2</code></td></tr><tr><td><span class="el_class">kotlin.jvm.internal.Intrinsics</span></td><td><code>842f06f411842f7e</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntProgression</span></td><td><code>d0542f70884d71c0</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntProgression.Companion</span></td><td><code>8a2231aef68bed7b</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntRange</span></td><td><code>f64ded03573c7202</code></td></tr><tr><td><span class="el_class">kotlin.ranges.IntRange.Companion</span></td><td><code>30a380b0dced0df5</code></td></tr><tr><td><span class="el_class">kotlin.ranges.RangesKt__RangesKt</span></td><td><code>76b2c81500d7d69a</code></td></tr><tr><td><span class="el_class">kotlin.ranges.RangesKt___RangesKt</span></td><td><code>6f2fbc845c3873a4</code></td></tr><tr><td><span class="el_class">kotlin.text.Regex</span></td><td><code>6bee4dae530801fc</code></td></tr><tr><td><span class="el_class">kotlin.text.Regex.Companion</span></td><td><code>bcfa89c12e9e13c2</code></td></tr><tr><td><span class="el_class">kotlin.text.StringsKt__StringsJVMKt</span></td><td><code>c68ee1189adf9c3b</code></td></tr><tr><td><span class="el_class">kotlin.text.StringsKt__StringsKt</span></td><td><code>6b790c2539737b4b</code></td></tr><tr><td><span class="el_class">liquibase.AbstractExtensibleObject</span></td><td><code>02a2ceaa90277dd2</code></td></tr><tr><td><span class="el_class">liquibase.CatalogAndSchema</span></td><td><code>3afda14d0ab815af</code></td></tr><tr><td><span class="el_class">liquibase.CatalogAndSchema.CatalogAndSchemaCase</span></td><td><code>9de4acd38cc56070</code></td></tr><tr><td><span class="el_class">liquibase.ContextExpression</span></td><td><code>d190b2220da7e8f8</code></td></tr><tr><td><span class="el_class">liquibase.Contexts</span></td><td><code>360b55cc555ed0d6</code></td></tr><tr><td><span class="el_class">liquibase.GlobalConfiguration</span></td><td><code>66846a398ad9c8ea</code></td></tr><tr><td><span class="el_class">liquibase.LabelExpression</span></td><td><code>6c976fd0590afc2a</code></td></tr><tr><td><span class="el_class">liquibase.Labels</span></td><td><code>2d38831717e52ab0</code></td></tr><tr><td><span class="el_class">liquibase.Liquibase</span></td><td><code>f9f0ebbd35147838</code></td></tr><tr><td><span class="el_class">liquibase.RuntimeEnvironment</span></td><td><code>47d372d4d489e269</code></td></tr><tr><td><span class="el_class">liquibase.Scope</span></td><td><code>4151a916e260dbc2</code></td></tr><tr><td><span class="el_class">liquibase.Scope.Attr</span></td><td><code>2f0b4853bd9b7d0e</code></td></tr><tr><td><span class="el_class">liquibase.ScopeManager</span></td><td><code>34f2063d190bda20</code></td></tr><tr><td><span class="el_class">liquibase.SingletonScopeManager</span></td><td><code>4ca760b3f45e77ee</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractChange</span></td><td><code>ac4968be46eb3cbb</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractSQLChange</span></td><td><code>09dc22c44013f73e</code></td></tr><tr><td><span class="el_class">liquibase.change.AbstractSQLChange.NormalizingStream</span></td><td><code>00db93189f150c2f</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeFactory</span></td><td><code>c87497ef40bbdabb</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeMetaData</span></td><td><code>43480eac9974f9e7</code></td></tr><tr><td><span class="el_class">liquibase.change.ChangeParameterMetaData</span></td><td><code>d4ab6ad604aa9f5b</code></td></tr><tr><td><span class="el_class">liquibase.change.CheckSum</span></td><td><code>dba0b23ad31524a5</code></td></tr><tr><td><span class="el_class">liquibase.change.ColumnConfig</span></td><td><code>c679daf22963494a</code></td></tr><tr><td><span class="el_class">liquibase.change.core.RawSQLChange</span></td><td><code>f1d5c14bd6978102</code></td></tr><tr><td><span class="el_class">liquibase.changelog.AbstractChangeLogHistoryService</span></td><td><code>e86ffb69b370c4b5</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogHistoryServiceFactory</span></td><td><code>15204ca889ac4c5c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogHistoryServiceFactory.1</span></td><td><code>919b49f91316a203</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogIterator</span></td><td><code>82e43cabc9759f8b</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogIterator.2</span></td><td><code>e56132a04b8a705a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters</span></td><td><code>9c3e5084a19a8014</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters.ChangeLogParameter</span></td><td><code>8190406a00c0acae</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeLogParameters.ExpressionExpander</span></td><td><code>3a6b572188804cda</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet</span></td><td><code>4fd012037b30f195</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.ExecType</span></td><td><code>b90e8d7444351e21</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.RunStatus</span></td><td><code>89a22a55e07ca12c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.ChangeSet.ValidationFailOption</span></td><td><code>8b5616e7e39f851b</code></td></tr><tr><td><span class="el_class">liquibase.changelog.DatabaseChangeLog</span></td><td><code>05d9b7b69545db97</code></td></tr><tr><td><span class="el_class">liquibase.changelog.DatabaseChangeLog.GlobalPreconditionContainer</span></td><td><code>0d6870b0b0ae0d69</code></td></tr><tr><td><span class="el_class">liquibase.changelog.MockChangeLogHistoryService</span></td><td><code>d767ef59deac85fc</code></td></tr><tr><td><span class="el_class">liquibase.changelog.RanChangeSet</span></td><td><code>57e097c14925d3e0</code></td></tr><tr><td><span class="el_class">liquibase.changelog.RollbackContainer</span></td><td><code>b2d0962b7a503af1</code></td></tr><tr><td><span class="el_class">liquibase.changelog.StandardChangeLogHistoryService</span></td><td><code>b28da4f45ccc0a96</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ChangeSetFilterResult</span></td><td><code>b454bde355151a3c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ContextChangeSetFilter</span></td><td><code>7c2c2a9f7b171b6a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.DbmsChangeSetFilter</span></td><td><code>5001a26d067cc51f</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.IgnoreChangeSetFilter</span></td><td><code>c300e69c4125d862</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.LabelChangeSetFilter</span></td><td><code>f45e650eb12e318c</code></td></tr><tr><td><span class="el_class">liquibase.changelog.filter.ShouldRunChangeSetFilter</span></td><td><code>1312dc33482d6bf5</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.ChangeSetVisitor.Direction</span></td><td><code>6c31c394a06b194a</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.UpdateVisitor</span></td><td><code>b7441806531c80ed</code></td></tr><tr><td><span class="el_class">liquibase.changelog.visitor.ValidatingVisitor</span></td><td><code>52c15b79bbba3333</code></td></tr><tr><td><span class="el_class">liquibase.configuration.AbstractConfigurationValueProvider</span></td><td><code>deab989a4f9150a8</code></td></tr><tr><td><span class="el_class">liquibase.configuration.AbstractMapConfigurationValueProvider</span></td><td><code>5a576dd76ef840c0</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition</span></td><td><code>cd85e6d315a0a502</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.Builder</span></td><td><code>e9e7b1d8e118cd8d</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.Building</span></td><td><code>d54724bbf1b72b52</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationDefinition.DefaultValueProvider</span></td><td><code>34a2e240ac1d9e50</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationValueConverter</span></td><td><code>9933799300eee540</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfigurationValueObfuscator</span></td><td><code>7dc1ee5bcc9e3eab</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfiguredValue</span></td><td><code>41b33785ca091456</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ConfiguredValue.NoValueProvider</span></td><td><code>247f98e53ed535f5</code></td></tr><tr><td><span class="el_class">liquibase.configuration.LiquibaseConfiguration</span></td><td><code>c1866df8a69ed3d9</code></td></tr><tr><td><span class="el_class">liquibase.configuration.ProvidedValue</span></td><td><code>1dfdafef6060f100</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.DeprecatedConfigurationValueProvider</span></td><td><code>c52148dc2dc496d0</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.ScopeValueProvider</span></td><td><code>e0cca000533c7d4d</code></td></tr><tr><td><span class="el_class">liquibase.configuration.core.SystemPropertyValueProvider</span></td><td><code>f50f8513abde3bcf</code></td></tr><tr><td><span class="el_class">liquibase.configuration.pro.EnvironmentValueProvider</span></td><td><code>04215ed24484d37c</code></td></tr><tr><td><span class="el_class">liquibase.database.AbstractJdbcDatabase</span></td><td><code>43488964edc81e19</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseFactory</span></td><td><code>2948ce128ff2af88</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseFactory.DatabaseComparator</span></td><td><code>b0c4e3d5a20bcc6c</code></td></tr><tr><td><span class="el_class">liquibase.database.DatabaseList</span></td><td><code>8891e93bc1c5905c</code></td></tr><tr><td><span class="el_class">liquibase.database.MockDatabaseConnection</span></td><td><code>1c2d24ce48aa8a1c</code></td></tr><tr><td><span class="el_class">liquibase.database.ObjectQuotingStrategy</span></td><td><code>41e0d6c475859d1c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.AbstractDb2Database</span></td><td><code>607e324210a93118</code></td></tr><tr><td><span class="el_class">liquibase.database.core.CockroachDatabase</span></td><td><code>507609905970504d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.DB2Database</span></td><td><code>e6446b7ca7c5204d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Db2zDatabase</span></td><td><code>4b7c69611df60f67</code></td></tr><tr><td><span class="el_class">liquibase.database.core.DerbyDatabase</span></td><td><code>d57931a1c59420a9</code></td></tr><tr><td><span class="el_class">liquibase.database.core.EnterpriseDBDatabase</span></td><td><code>bf589104ee9d632c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Firebird3Database</span></td><td><code>8c6df98ae2ee190c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.FirebirdDatabase</span></td><td><code>d78ec923e15c322f</code></td></tr><tr><td><span class="el_class">liquibase.database.core.H2Database</span></td><td><code>7eccc2a86e339bd5</code></td></tr><tr><td><span class="el_class">liquibase.database.core.HsqlDatabase</span></td><td><code>c5047d7123efb57c</code></td></tr><tr><td><span class="el_class">liquibase.database.core.InformixDatabase</span></td><td><code>fd74c7ce6277d2b8</code></td></tr><tr><td><span class="el_class">liquibase.database.core.Ingres9Database</span></td><td><code>23a404cd7c63e4d4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MSSQLDatabase</span></td><td><code>e261cacc6bb7771f</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MariaDBDatabase</span></td><td><code>a2992671530e267a</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MockDatabase</span></td><td><code>994f9793fb1e21a4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.MySQLDatabase</span></td><td><code>f52eb17fc2af1fdd</code></td></tr><tr><td><span class="el_class">liquibase.database.core.OracleDatabase</span></td><td><code>4b1f63c2c80578d4</code></td></tr><tr><td><span class="el_class">liquibase.database.core.PostgresDatabase</span></td><td><code>8992946a689beb15</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SQLiteDatabase</span></td><td><code>f202b244f77d9a9d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SybaseASADatabase</span></td><td><code>836e04da9ac6ae21</code></td></tr><tr><td><span class="el_class">liquibase.database.core.SybaseDatabase</span></td><td><code>b14aab295bc9343d</code></td></tr><tr><td><span class="el_class">liquibase.database.core.UnsupportedDatabase</span></td><td><code>f937e9ac691ff8b6</code></td></tr><tr><td><span class="el_class">liquibase.database.jvm.JdbcConnection</span></td><td><code>b5964a0d2637c5e4</code></td></tr><tr><td><span class="el_class">liquibase.database.jvm.JdbcConnection.PatternPair</span></td><td><code>f4656b526ed8aad4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.DataTypeFactory</span></td><td><code>976dd421ce3f29f4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.DatabaseDataType</span></td><td><code>bb3012c8899c9533</code></td></tr><tr><td><span class="el_class">liquibase.datatype.LiquibaseDataType</span></td><td><code>2618811fc53dab15</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BigIntType</span></td><td><code>73526f2f80e70083</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BlobType</span></td><td><code>76b40badf5b54691</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.BooleanType</span></td><td><code>8ce42b24e6f3ee9b</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.CharType</span></td><td><code>891c7f7977e1bd41</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.ClobType</span></td><td><code>ad91d8c5952dcb48</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.CurrencyType</span></td><td><code>3c5643e63400d1b2</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DatabaseFunctionType</span></td><td><code>8fc10339d99b2ee9</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DateTimeType</span></td><td><code>cc7cb8efc5b5e22a</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DateType</span></td><td><code>19c195b59b3a765e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DecimalType</span></td><td><code>dd7b45442b414bbc</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.DoubleType</span></td><td><code>5912b41e472c0539</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.FloatType</span></td><td><code>89393da5f2bf949e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.IntType</span></td><td><code>69319486ee4832dc</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.MediumIntType</span></td><td><code>447b66868ee33509</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NCharType</span></td><td><code>d943396f38e051b2</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NVarcharType</span></td><td><code>a8544c25150335a4</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.NumberType</span></td><td><code>5dddf688d929b58e</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.SmallIntType</span></td><td><code>3c23aac28f02b2ea</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TimeType</span></td><td><code>4a50b20c40fb833f</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TimestampType</span></td><td><code>bd8c8add262d5164</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.TinyIntType</span></td><td><code>2a9d1f98fb517623</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.UUIDType</span></td><td><code>667b15f2db105d04</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.UnknownType</span></td><td><code>6f3ba1db2dfd34a0</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.VarcharType</span></td><td><code>7eb0f8213aaf7e9f</code></td></tr><tr><td><span class="el_class">liquibase.datatype.core.XMLType</span></td><td><code>ded5cdfbd61d84ec</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorChain</span></td><td><code>c729ba7f551376b1</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorComparator</span></td><td><code>7c36a260f838b1a6</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.DatabaseObjectComparatorFactory</span></td><td><code>9acfa7ffdfb5f3c8</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.CatalogComparator</span></td><td><code>0faf76fbaebd44b3</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.ColumnComparator</span></td><td><code>a2fb5282f39b9497</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.CommonCatalogSchemaComparator</span></td><td><code>150ec8e7c71134cc</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.DefaultDatabaseObjectComparator</span></td><td><code>d5c267640cdc127e</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.ForeignKeyComparator</span></td><td><code>a50e13d0dc6c2024</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.IndexComparator</span></td><td><code>2e31069e74d2957c</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.PrimaryKeyComparator</span></td><td><code>ee375e9e8751df1a</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.SchemaComparator</span></td><td><code>42cd2be5dda7a2ef</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.TableComparator</span></td><td><code>c3f9bb80f8b8aa53</code></td></tr><tr><td><span class="el_class">liquibase.diff.compare.core.UniqueConstraintComparator</span></td><td><code>3cb8df70248890c9</code></td></tr><tr><td><span class="el_class">liquibase.exception.DatabaseException</span></td><td><code>f64db69a716e7896</code></td></tr><tr><td><span class="el_class">liquibase.exception.LiquibaseException</span></td><td><code>89ab8987fb1470d2</code></td></tr><tr><td><span class="el_class">liquibase.exception.ValidationErrors</span></td><td><code>bda9492d441d9b1a</code></td></tr><tr><td><span class="el_class">liquibase.exception.Warnings</span></td><td><code>b207b9bdec7f2a8c</code></td></tr><tr><td><span class="el_class">liquibase.executor.AbstractExecutor</span></td><td><code>f434e22435994a1e</code></td></tr><tr><td><span class="el_class">liquibase.executor.Executor</span></td><td><code>71f0f531d57276d9</code></td></tr><tr><td><span class="el_class">liquibase.executor.ExecutorService</span></td><td><code>3a339993796c3c3b</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.ColumnMapRowMapper</span></td><td><code>4b62d9e5fe7d04a2</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor</span></td><td><code>d1aaa7a37dd49ff4</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.1UpdateStatementCallback</span></td><td><code>1882f19b35ce8c22</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.ExecuteStatementCallback</span></td><td><code>002b90d18131b675</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.QueryCallableStatementCallback</span></td><td><code>338f6ff456c895bf</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.JdbcExecutor.QueryStatementCallback</span></td><td><code>24587f5003aa5c38</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.RowMapperResultSetExtractor</span></td><td><code>dd5e75d188c9c791</code></td></tr><tr><td><span class="el_class">liquibase.executor.jvm.SingleColumnRowMapper</span></td><td><code>66e21f4e9a6a6179</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubConfiguration</span></td><td><code>a621d87e44615758</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubConfiguration.HubMode</span></td><td><code>348e549a90e790c8</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubServiceFactory</span></td><td><code>590c7fcf7a55d34e</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubServiceFactory.FallbackHubService</span></td><td><code>77eb14d59b23ff58</code></td></tr><tr><td><span class="el_class">liquibase.hub.HubUpdater</span></td><td><code>19ea372f1d45ff2a</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.HttpClient</span></td><td><code>80bf4e37273b5740</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.HttpClient.HubRepresenter</span></td><td><code>93c718918ad005fc</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.MockHubService</span></td><td><code>489bd33ac0ce2c48</code></td></tr><tr><td><span class="el_class">liquibase.hub.core.StandardHubService</span></td><td><code>994f188db2fc3c74</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.Connection</span></td><td><code>3cb19f7fe2530cab</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.HubChangeLog</span></td><td><code>a93e889978abbc9f</code></td></tr><tr><td><span class="el_class">liquibase.hub.model.Project</span></td><td><code>92ebae42ec01a536</code></td></tr><tr><td><span class="el_class">liquibase.integration.commandline.LiquibaseCommandLineConfiguration</span></td><td><code>fda6155a62744fc1</code></td></tr><tr><td><span class="el_class">liquibase.integration.spring.SpringLiquibase</span></td><td><code>d15671591f19ec88</code></td></tr><tr><td><span class="el_class">liquibase.integration.spring.SpringResourceAccessor</span></td><td><code>41e7379ecf713d93</code></td></tr><tr><td><span class="el_class">liquibase.license.LicenseServiceFactory</span></td><td><code>8d272d83f692f7c3</code></td></tr><tr><td><span class="el_class">liquibase.license.LicenseServiceUtils</span></td><td><code>efc0a44cc43f1659</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.DaticalTrueLicenseService</span></td><td><code>d7751456f423f672</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.LicensingSchema</span></td><td><code>916a1f229f2a72cd</code></td></tr><tr><td><span class="el_class">liquibase.license.pro.LicensingSchema.Lazy</span></td><td><code>da97537e5477622f</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceFactory</span></td><td><code>3f47bbb48707c69b</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceFactory.1</span></td><td><code>964090b33a8e5bc4</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.LockServiceImpl</span></td><td><code>bee67d31b6890e6a</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.MockLockService</span></td><td><code>3b8d098e4106eaa8</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.OfflineLockService</span></td><td><code>5e3543a1c79e370a</code></td></tr><tr><td><span class="el_class">liquibase.lockservice.StandardLockService</span></td><td><code>fa36d5f9af350b46</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.AbstractLogService</span></td><td><code>5aadd4940946b66a</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.AbstractLogger</span></td><td><code>3f8ddbf9e14e62c5</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogService</span></td><td><code>0243f2a200606a39</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogService.BufferedLogMessage</span></td><td><code>f710382a00588bbe</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.BufferedLogger</span></td><td><code>36282e73da5817b7</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.CompositeLogService</span></td><td><code>c48cb3082e7885cd</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.CompositeLogger</span></td><td><code>eb2106a23283863f</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.DefaultLogMessageFilter</span></td><td><code>102539ebebc8ee70</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.DefaultLoggerConfiguration</span></td><td><code>e6fb1ee5dcd7d388</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.JavaLogService</span></td><td><code>aa0296b83409d5b2</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.JavaLogger</span></td><td><code>a8eb085810c81d64</code></td></tr><tr><td><span class="el_class">liquibase.logging.core.LogServiceFactory</span></td><td><code>e53285433492c7d9</code></td></tr><tr><td><span class="el_class">liquibase.osgi.Activator.OSGIContainerChecker</span></td><td><code>a76a88f9a24577dc</code></td></tr><tr><td><span class="el_class">liquibase.parser.ChangeLogParserConfiguration</span></td><td><code>4c6f84d994540262</code></td></tr><tr><td><span class="el_class">liquibase.parser.ChangeLogParserFactory</span></td><td><code>debfd5421eb46f1f</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.ParsedNode</span></td><td><code>c7bf6d218a9cae92</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.formattedsql.FormattedSqlChangeLogParser</span></td><td><code>52ac06ff6f50c732</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.json.JsonChangeLogParser</span></td><td><code>7d06712980f9f569</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.sql.SqlChangeLogParser</span></td><td><code>e84237aa626a4a2e</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.AbstractChangeLogParser</span></td><td><code>0806867b05416205</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.LiquibaseEntityResolver</span></td><td><code>29746467a1625ffe</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.xml.XMLChangeLogSAXParser</span></td><td><code>aec944c1f9d03b1c</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.yaml.YamlChangeLogParser</span></td><td><code>41dab82a22cf7381</code></td></tr><tr><td><span class="el_class">liquibase.parser.core.yaml.YamlParser</span></td><td><code>0697948e26fddf2a</code></td></tr><tr><td><span class="el_class">liquibase.plugin.AbstractPlugin</span></td><td><code>9028ddfdc9dee17f</code></td></tr><tr><td><span class="el_class">liquibase.plugin.AbstractPluginFactory</span></td><td><code>28dadae5eb15c9be</code></td></tr><tr><td><span class="el_class">liquibase.precondition.AbstractPrecondition</span></td><td><code>4cc4dcd1e8dd0426</code></td></tr><tr><td><span class="el_class">liquibase.precondition.PreconditionLogic</span></td><td><code>e052ae0e6db674b9</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.AndPrecondition</span></td><td><code>c6c20d17290fe2a5</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer</span></td><td><code>41c052ad27a6c317</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.ErrorOption</span></td><td><code>5c37368911e7645c</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.FailOption</span></td><td><code>8654d215a5c1d9f6</code></td></tr><tr><td><span class="el_class">liquibase.precondition.core.PreconditionContainer.OnSqlOutputOption</span></td><td><code>000deed29b9f1bb7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.C</span></td><td><code>4bb8da311eca5350</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.D</span></td><td><code>1fff28b787e6cfb6</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.N</span></td><td><code>6391bd62bc3ad7b0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.Z</span></td><td><code>63f4109663983e0e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aA</span></td><td><code>bd521a23bec021c2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aB</span></td><td><code>8da894463572e87d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aC</span></td><td><code>a33551aab5f9129d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aE</span></td><td><code>5b03f8a7f4e1d433</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aG</span></td><td><code>e825dd9380fe8500</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ak</span></td><td><code>71e4be0ad3efbb13</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.al</span></td><td><code>417aaa0e6ff8dd6e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.an</span></td><td><code>d260f0c94ee657c0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ao</span></td><td><code>e2d17ba9ffb068bf</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ar</span></td><td><code>8a5884576f9d6f25</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.av</span></td><td><code>fa905c32a7fbffa9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.aw</span></td><td><code>88628e189a92cfb4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bG</span></td><td><code>c2df2e8742a0d164</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bH</span></td><td><code>7d4650c26a2885d7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bI</span></td><td><code>034200368bf6a8ba</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bK</span></td><td><code>bfde17780d304225</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bR</span></td><td><code>9596e8716cedea7c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bV</span></td><td><code>08d62438ce89a0da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bW</span></td><td><code>d765bc12a7f9a412</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bX</span></td><td><code>1c5ee3d8a9744e0d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bc</span></td><td><code>913df1812729abdc</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bf</span></td><td><code>17499ce91d5fa92a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bu</span></td><td><code>02004e81ec5223ae</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bv</span></td><td><code>e6d44b5663ec927a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bw</span></td><td><code>9a16d4f7bc8c92dd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.by</span></td><td><code>dea5569d3c2a2eaa</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.bz</span></td><td><code>7bdb715af3719157</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cA</span></td><td><code>206dc331c6f52917</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cA.1</span></td><td><code>29ef50209a14d10c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cJ</span></td><td><code>e05310487fb2ff26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cS</span></td><td><code>62c762c8f5b6f50a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cT</span></td><td><code>839d15a49e76312e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cU</span></td><td><code>b27253cdf54cb275</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ca</span></td><td><code>3f37febba3b014d4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ce</span></td><td><code>9028e57743cfe246</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cf</span></td><td><code>f82f9faef0d9e732</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cg</span></td><td><code>086e0d7b4e181ee3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ch</span></td><td><code>c9718d24cfbc3984</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cj</span></td><td><code>eb44023f40909dd4</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ck</span></td><td><code>84b61ce00f2ccec6</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cr</span></td><td><code>bdd66cb6c26931eb</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cv</span></td><td><code>3928988778aa2a9f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cx</span></td><td><code>cff2c340c5d803ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.cy</span></td><td><code>ad0e7f169ff0f819</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dE</span></td><td><code>30c7449189a7dd10</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dM</span></td><td><code>b6928601d42c6ad7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dN</span></td><td><code>6ec79f312aca899b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dP</span></td><td><code>093f0c581cb68d1d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dQ</span></td><td><code>6989a0bed3e734db</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.de</span></td><td><code>6939b913663b44b0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dk</span></td><td><code>85830ee90f1fb94b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dm</span></td><td><code>98426534a74007b9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dn</span></td><td><code>7148a863d885fa74</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.do</span></td><td><code>90ede11180480639</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dp</span></td><td><code>860f45b4cc29aac5</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dq</span></td><td><code>442c1af4e25dbf1e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dr</span></td><td><code>8599b21c8aea10d9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dt</span></td><td><code>586cafdd9eb87f33</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.du</span></td><td><code>fa92ce017f264b9f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dx</span></td><td><code>d19399130a1673da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.dz</span></td><td><code>29f005f3c28129b2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.fX</span></td><td><code>6a5d17d0b41052c9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gC</span></td><td><code>9befff3215e1668b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gD</span></td><td><code>7f189ca489bd0be2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gE</span></td><td><code>086b9a4b53383038</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gF</span></td><td><code>4a55c277c0584b14</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gV</span></td><td><code>773477520a361c70</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gY</span></td><td><code>c71ae38c80dd9e24</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ge</span></td><td><code>2982a4a0ea1bf291</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gf</span></td><td><code>728c6b5bb8e63588</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gx</span></td><td><code>59797f1d34a99d8e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.gy</span></td><td><code>56ea5fc426297c6a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hN</span></td><td><code>29a28cfaba065e18</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hc</span></td><td><code>9b1f860446c26b58</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.he</span></td><td><code>f07845cf98afe0ee</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hf</span></td><td><code>3dc722b1a0fe02db</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hh</span></td><td><code>8edb5d420e789698</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hl</span></td><td><code>19c29ab235aefdb9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hu</span></td><td><code>9111bd65b64ae94d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.hz</span></td><td><code>25dc722cf0367b64</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.i</span></td><td><code>6cb9caada90da36e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iA</span></td><td><code>eb476973961ffa5b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iR</span></td><td><code>b418d84907cd43cd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iW</span></td><td><code>da7844fadeeebb93</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.iZ</span></td><td><code>a2e97afd698eb2e8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.id</span></td><td><code>d24633bf364f9ebc</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ik</span></td><td><code>e0bf01676fe40944</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.in</span></td><td><code>823e9cefb76556f2</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jK</span></td><td><code>0c40c4ddbbd5f945</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jS</span></td><td><code>655888c6773157ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jW</span></td><td><code>a918a9238452020c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jZ</span></td><td><code>086a8013d0c1810d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ja</span></td><td><code>6c00701d3382a873</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jc.1</span></td><td><code>f39f5e0ad29af5e9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jg</span></td><td><code>63c1cac75d4716da</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.jm</span></td><td><code>9c310eff2f008558</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kM</span></td><td><code>a78f3cf24c4f24a9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kW</span></td><td><code>19aea4465753762a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kX</span></td><td><code>6dad02abff3effff</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kY</span></td><td><code>3140d86c6f92fed1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ka</span></td><td><code>63b71f3bf0c3c084</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kl</span></td><td><code>d1fc749066ba4b73</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.km</span></td><td><code>2cba72f0e15b3f5f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kn</span></td><td><code>a3d8c99a337072f7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ko</span></td><td><code>9aee79512ea6a96c</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kp</span></td><td><code>dd34e5086fd49cc7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kq</span></td><td><code>51db3727e21c21a8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kr</span></td><td><code>8824bff8eec9b90d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ks</span></td><td><code>dd93289692fb668d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.kt</span></td><td><code>d6e621a4bb29b5d9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ku</span></td><td><code>61ec6e4168c52e02</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lJ</span></td><td><code>696eedd4b7d971e0</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lS</span></td><td><code>9ea48a4b9e2e708b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.la</span></td><td><code>350b0384d76ca300</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lc</span></td><td><code>4d98f0ea153e0359</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.le</span></td><td><code>b6259d04f45d0c26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lm</span></td><td><code>9729549301d4d96a</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ln</span></td><td><code>b3ccca1df2f6a548</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lo</span></td><td><code>9df4130005b8cc26</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lr</span></td><td><code>83c13e63a4ec0759</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lt</span></td><td><code>a3add68c0da6de8d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.lx</span></td><td><code>540fdfa7895948c9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mB</span></td><td><code>3803f6f63bc9fc11</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mC</span></td><td><code>7ad3dcd932ef0a39</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mD</span></td><td><code>d07011f3a4abe499</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mE</span></td><td><code>f272ba4cbb4a10cb</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mF</span></td><td><code>977a955c53b60306</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mL</span></td><td><code>897468cffc05f583</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mb</span></td><td><code>1825a90c011a606d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.me</span></td><td><code>06439529c50dc5ba</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mo</span></td><td><code>f20a99b99e9bfc66</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mp</span></td><td><code>9f5ceb7bb2f2f88f</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mp.1</span></td><td><code>b7327bf18738482e</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mq</span></td><td><code>905082e98d5178ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mr</span></td><td><code>d313b6a146471224</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.ms</span></td><td><code>6b000fe730251a95</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mt</span></td><td><code>cea150d7e1329972</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu</span></td><td><code>8b89add3197b6609</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.1</span></td><td><code>bdd41ef94986acd1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.2</span></td><td><code>36be0db0fe41c817</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mu.3</span></td><td><code>15060aff5180ac18</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv</span></td><td><code>c5deab8916d6cf86</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.1</span></td><td><code>5d1de7ea0fcf5a70</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a</span></td><td><code>5562745d808cbd5d</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.1</span></td><td><code>b0db20e11170c53b</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.2</span></td><td><code>effb150d808b4db3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mv.a.3</span></td><td><code>a4e929682bc1a4b3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mw</span></td><td><code>de27fe835c1b8038</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mx</span></td><td><code>68e4ab94abd6f065</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.my</span></td><td><code>93c070e5007d15d7</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.mz</span></td><td><code>4850de6425c3e8ca</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nC</span></td><td><code>839e8fa2990009f5</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nC.1</span></td><td><code>e138d952984ed558</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nH</span></td><td><code>bb06203190223760</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nQ</span></td><td><code>a1ddb463227ee717</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nR</span></td><td><code>8511ebf8d0b78555</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nR.2</span></td><td><code>19d91ae1f41a77fd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nS</span></td><td><code>064f933956814617</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nb</span></td><td><code>5fb46fc3b5fb6ea8</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nc</span></td><td><code>2b5ad1be415ecfbd</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nj</span></td><td><code>df79e593030d6605</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nw</span></td><td><code>e4fcd2bbc1e52413</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.nz</span></td><td><code>d81edfed8b49d3b1</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.r</span></td><td><code>708a30ad8464a1b9</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.s</span></td><td><code>71072d46223a55e3</code></td></tr><tr><td><span class="el_class">liquibase.pro.packaged.t</span></td><td><code>ce75846996a2a181</code></td></tr><tr><td><span class="el_class">liquibase.resource.AbstractResourceAccessor</span></td><td><code>4bb7789bb3768498</code></td></tr><tr><td><span class="el_class">liquibase.resource.ClassLoaderResourceAccessor</span></td><td><code>12dee763de54525d</code></td></tr><tr><td><span class="el_class">liquibase.resource.InputStreamList</span></td><td><code>e5fc8e90380efddf</code></td></tr><tr><td><span class="el_class">liquibase.serializer.AbstractLiquibaseSerializable</span></td><td><code>1bb893cc6eaedc05</code></td></tr><tr><td><span class="el_class">liquibase.serializer.LiquibaseSerializable.SerializationType</span></td><td><code>4a81f984b860f518</code></td></tr><tr><td><span class="el_class">liquibase.servicelocator.PrioritizedService</span></td><td><code>11693c5a9ca95cc9</code></td></tr><tr><td><span class="el_class">liquibase.servicelocator.StandardServiceLocator</span></td><td><code>9bf32abe27aecc76</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.CachedRow</span></td><td><code>a70d139f0ba829cd</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.DatabaseSnapshot</span></td><td><code>91101d85272a48b2</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot</span></td><td><code>be7cd1d7e643c0bd</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData</span></td><td><code>17d0d0c941e102c5</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData.2</span></td><td><code>3bb60883f499fa5c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.JdbcDatabaseSnapshot.CachingDatabaseMetaData.GetColumnResultSetCache</span></td><td><code>8937dbece614403f</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache</span></td><td><code>b70706c12db4ca64</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.ResultSetExtractor</span></td><td><code>fa39ff258601a683</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.ResultSetExtractor.1</span></td><td><code>894557bfa9001a2a</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.RowData</span></td><td><code>d6d2462d9f0e1a33</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.ResultSetCache.SingleResultSetExtractor</span></td><td><code>94b28655eda304da</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotControl</span></td><td><code>3e472c4a9024367c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorChain</span></td><td><code>607b2c206f5fb6a7</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorComparator</span></td><td><code>61c0da6be148d431</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotGeneratorFactory</span></td><td><code>de43d4408b2c2f7d</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.SnapshotIdService</span></td><td><code>0c4e0b52562c3413</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.CatalogSnapshotGenerator</span></td><td><code>6836ffe7bc8bf3e3</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGenerator</span></td><td><code>b093300fa61a61f5</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorH2</span></td><td><code>8b9682f1d26efe88</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorInformix</span></td><td><code>ba8d8eb98bac4dea</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ColumnSnapshotGeneratorOracle</span></td><td><code>cd7727e6371d1b27</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.DataSnapshotGenerator</span></td><td><code>e44dcf1ed53a19d8</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ForeignKeySnapshotGenerator</span></td><td><code>e8b29fbdfda2d32c</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.IndexSnapshotGenerator</span></td><td><code>643412e06441f561</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.JdbcSnapshotGenerator</span></td><td><code>04e2354cda23b236</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.PrimaryKeySnapshotGenerator</span></td><td><code>f21ff824f6c2c732</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.SchemaSnapshotGenerator</span></td><td><code>139715ad6b82595f</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.SequenceSnapshotGenerator</span></td><td><code>86a4f77d787f3818</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.TableSnapshotGenerator</span></td><td><code>721107a8f2bda960</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.UniqueConstraintSnapshotGenerator</span></td><td><code>e5dfbbd834c61073</code></td></tr><tr><td><span class="el_class">liquibase.snapshot.jvm.ViewSnapshotGenerator</span></td><td><code>d3e82cb2a37b1332</code></td></tr><tr><td><span class="el_class">liquibase.sql.SqlConfiguration</span></td><td><code>545a2e1f11a9107d</code></td></tr><tr><td><span class="el_class">liquibase.sql.UnparsedSql</span></td><td><code>81d815af28a1d5f1</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorChain</span></td><td><code>c48bc1a103e08dd1</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorComparator</span></td><td><code>4f30cd87c63c601e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.SqlGeneratorFactory</span></td><td><code>8eb58899dbe683fb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AbstractSqlGenerator</span></td><td><code>19cdd537d37c78fd</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGenerator</span></td><td><code>8fa20c1f749f668f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorDB2</span></td><td><code>68aebab08090de14</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorHsqlH2</span></td><td><code>c00054f53850d452</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorInformix</span></td><td><code>6fbc099571b4f959</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorMySQL</span></td><td><code>532cfcc19c22072a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddAutoIncrementGeneratorSQLite</span></td><td><code>31ac7dd428a3e58f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGenerator</span></td><td><code>2f6bc49645484bd2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGeneratorDefaultClauseBeforeNotNull</span></td><td><code>ca05b30d2d0d1784</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddColumnGeneratorSQLite</span></td><td><code>5490a624ab750f5f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGenerator</span></td><td><code>ab021232b78a9b76</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorDerby</span></td><td><code>fcd62d2f2444730e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorInformix</span></td><td><code>5759a7b416cfbffa</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorMSSQL</span></td><td><code>f051a57690e74d70</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorMySQL</span></td><td><code>b69a39d2301c8bcb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorOracle</span></td><td><code>fc51042519278848</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorPostgres</span></td><td><code>5368d5f2ede93434</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSQLite</span></td><td><code>bf8d70504f8cfb6e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSybase</span></td><td><code>68e70b6c742ecb9b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddDefaultValueGeneratorSybaseASA</span></td><td><code>71a8fadaf09ddb1b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddForeignKeyConstraintGenerator</span></td><td><code>ce3e1a3dab4764c6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddPrimaryKeyGenerator</span></td><td><code>14c12c8ed8adec1d</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddPrimaryKeyGeneratorInformix</span></td><td><code>c86064d013e7ed9d</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGenerator</span></td><td><code>fa510c865ad35a0a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGeneratorInformix</span></td><td><code>7bed2b1753aecd9e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AddUniqueConstraintGeneratorTDS</span></td><td><code>b7a41440db59b047</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.AlterSequenceGenerator</span></td><td><code>c733197a0b2ff939</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.BatchDmlExecutablePreparedStatementGenerator</span></td><td><code>87aa6ed550d7070e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ClearDatabaseChangeLogTableGenerator</span></td><td><code>dc01dba2efd47473</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CommentGenerator</span></td><td><code>0bbbc79f515d0ce3</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CopyRowsGenerator</span></td><td><code>0a2c8871b48d2b0b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogLockTableGenerator</span></td><td><code>f2c17b638f0a74ff</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogTableGenerator</span></td><td><code>43a5faa227be4d48</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateDatabaseChangeLogTableGeneratorSybase</span></td><td><code>611ec4a8f670bb38</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGenerator</span></td><td><code>38ee1c6de8783d1b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGeneratorFirebird</span></td><td><code>c96d35b2aac92267</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateIndexGeneratorPostgres</span></td><td><code>7e65213fece9cef6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateProcedureGenerator</span></td><td><code>ab16d2421d2b6734</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateSequenceGenerator</span></td><td><code>c0594e01543bd57e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateTableGenerator</span></td><td><code>aa26e88da446030b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateTableGeneratorInformix</span></td><td><code>a69b1127d60cd1dc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateViewGenerator</span></td><td><code>8f15d71f4361cdbc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.CreateViewGeneratorInformix</span></td><td><code>835176f0b5567e5e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DeleteGenerator</span></td><td><code>e342751ddaa728bb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropColumnGenerator</span></td><td><code>50548da6a3ac711f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropDefaultValueGenerator</span></td><td><code>98c860728f896866</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropForeignKeyConstraintGenerator</span></td><td><code>949522492e4a0403</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropIndexGenerator</span></td><td><code>768d5ff27b0e210f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropPrimaryKeyGenerator</span></td><td><code>928555779afde53f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropProcedureGenerator</span></td><td><code>7a86b8dbc4ff32cb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropSequenceGenerator</span></td><td><code>1746184ae02c5432</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropTableGenerator</span></td><td><code>3574f11a71e11870</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropUniqueConstraintGenerator</span></td><td><code>59101a674391a7d2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.DropViewGenerator</span></td><td><code>608c3ddc9b896840</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetNextChangeSetSequenceValueGenerator</span></td><td><code>72b1c904aaa32211</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGenerator</span></td><td><code>7a4ffc6037676da2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorDB2</span></td><td><code>1dfe8247deea3f6c</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorDerby</span></td><td><code>dd6d09a0f06c562f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorFirebird</span></td><td><code>b4974c9ac7396875</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorHsql</span></td><td><code>0cf90f877a172276</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorInformix</span></td><td><code>ac44cb9c8aae9325</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorMSSQL</span></td><td><code>15f616959a40e9df</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorOracle</span></td><td><code>d06e29596ada9449</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorPostgres</span></td><td><code>bd34cf015ec63d77</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorSybase</span></td><td><code>5441ec122612c844</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.GetViewDefinitionGeneratorSybaseASA</span></td><td><code>20947ceac4c171d4</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InitializeDatabaseChangeLogLockTableGenerator</span></td><td><code>df5958bd976890b8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertDataChangeGenerator</span></td><td><code>e885c017ddf26fdf</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertGenerator</span></td><td><code>37086bc81a3c3e39</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGenerator</span></td><td><code>c2b56a95b4f03ce8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorDB2</span></td><td><code>8c2578dd1096304f</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorH2</span></td><td><code>c43eee7a35df802b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorHsql</span></td><td><code>903eb4bd2bffac94</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorInformix</span></td><td><code>75308f1a1f82c629</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorMSSQL</span></td><td><code>d64945fccc0aba79</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorMySQL</span></td><td><code>3f13b18ca96154df</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorOracle</span></td><td><code>aba4b5af001a18cf</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorPostgres</span></td><td><code>0d8a5c2da92dbdc6</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorSQLite</span></td><td><code>2e31adbaf6ecb5b2</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertOrUpdateGeneratorSybaseASA</span></td><td><code>351899840e449688</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.InsertSetGenerator</span></td><td><code>d98ee86566726988</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.LockDatabaseChangeLogGenerator</span></td><td><code>131121314cae7335</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.MarkChangeSetRanGenerator</span></td><td><code>870cab213c952aa7</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ModifyDataTypeGenerator</span></td><td><code>5e608be391dba4a5</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RawSqlGenerator</span></td><td><code>558592556920ec59</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ReindexGeneratorSQLite</span></td><td><code>235db6c32f3e0d3e</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RemoveChangeSetRanStatusGenerator</span></td><td><code>3ff4c4fa5bb001c8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameColumnGenerator</span></td><td><code>7fde6cdcec9f3603</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameSequenceGenerator</span></td><td><code>efb6fa46d9eec122</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameTableGenerator</span></td><td><code>906e928142b59f97</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RenameViewGenerator</span></td><td><code>4b962e7cac17494b</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.ReorganizeTableGeneratorDB2</span></td><td><code>a3e038664e6cc6aa</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.RuntimeGenerator</span></td><td><code>925ee39f4cf53802</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogGenerator</span></td><td><code>19de3aa6b2504d1a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogGenerator.1</span></td><td><code>127ec49c5fea2f2a</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogLockGenerator</span></td><td><code>1fc160088c75f5eb</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SelectFromDatabaseChangeLogLockGenerator.1</span></td><td><code>5194e9d4efb0f0ef</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetColumnRemarksGenerator</span></td><td><code>1044eb76144276f8</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetNullableGenerator</span></td><td><code>0b0ff1b204bfd3e5</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.SetTableRemarksGenerator</span></td><td><code>dfc122dbabd57abc</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.StoredProcedureGenerator</span></td><td><code>faf0e954430dae03</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.TableRowCountGenerator</span></td><td><code>f115dae0e358e7ed</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.TagDatabaseGenerator</span></td><td><code>532c0c9404fd26f0</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UnlockDatabaseChangeLogGenerator</span></td><td><code>bf32eb7efcb47077</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateChangeSetChecksumGenerator</span></td><td><code>7848509886a9faf7</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateDataChangeGenerator</span></td><td><code>4c86a73b327f0e71</code></td></tr><tr><td><span class="el_class">liquibase.sqlgenerator.core.UpdateGenerator</span></td><td><code>96515dcbc0d6bf03</code></td></tr><tr><td><span class="el_class">liquibase.statement.AbstractSqlStatement</span></td><td><code>ee4d9a2fa8844998</code></td></tr><tr><td><span class="el_class">liquibase.statement.DatabaseFunction</span></td><td><code>4933ae1a8ef1673f</code></td></tr><tr><td><span class="el_class">liquibase.statement.NotNullConstraint</span></td><td><code>70268e5cd6146be6</code></td></tr><tr><td><span class="el_class">liquibase.statement.PrimaryKeyConstraint</span></td><td><code>6fa09fa75984be72</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateDatabaseChangeLogLockTableStatement</span></td><td><code>bb87e1a39a1526ea</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateDatabaseChangeLogTableStatement</span></td><td><code>019bf015ca8dd488</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.CreateTableStatement</span></td><td><code>f2f8a9e1853c638b</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.DeleteStatement</span></td><td><code>764c09865d365b85</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.GetNextChangeSetSequenceValueStatement</span></td><td><code>8a393ff3860ec738</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.InitializeDatabaseChangeLogLockTableStatement</span></td><td><code>be25fbe774647c88</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.InsertStatement</span></td><td><code>54da958ad6b50753</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.LockDatabaseChangeLogStatement</span></td><td><code>4b39a4e422e5fbc3</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.MarkChangeSetRanStatement</span></td><td><code>7fca178c33f6ae46</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.RawCallStatement</span></td><td><code>dba4a54d893ce198</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.RawSqlStatement</span></td><td><code>b3cb380cdded3808</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogLockStatement</span></td><td><code>1b3e26cd36555299</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogStatement</span></td><td><code>552cafba76861d8d</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.SelectFromDatabaseChangeLogStatement.ByNotNullCheckSum</span></td><td><code>b0b31e24c159105e</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.UnlockDatabaseChangeLogStatement</span></td><td><code>6babe4397deb08e8</code></td></tr><tr><td><span class="el_class">liquibase.statement.core.UpdateStatement</span></td><td><code>bf552359fdd5d7ec</code></td></tr><tr><td><span class="el_class">liquibase.structure.AbstractDatabaseObject</span></td><td><code>4348fb2f92537b0c</code></td></tr><tr><td><span class="el_class">liquibase.structure.DatabaseObjectCollection</span></td><td><code>b8f6cd876ffc3430</code></td></tr><tr><td><span class="el_class">liquibase.structure.DatabaseObjectCollection.1</span></td><td><code>53a8eb1a7e7b3e98</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Catalog</span></td><td><code>3c187342fe0d8bc1</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Column</span></td><td><code>b6d6a7494ebab28f</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.DataType</span></td><td><code>caf6a808d491749c</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.DataType.ColumnSizeUnit</span></td><td><code>baf77bd8b8fb12e0</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Relation</span></td><td><code>3bc6a643a439e621</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Schema</span></td><td><code>66ae6cb80b91ab76</code></td></tr><tr><td><span class="el_class">liquibase.structure.core.Table</span></td><td><code>499e1feea720c98a</code></td></tr><tr><td><span class="el_class">liquibase.ui.ConsoleUIService</span></td><td><code>473d07df3537d593</code></td></tr><tr><td><span class="el_class">liquibase.ui.ConsoleUIService.ConsoleWrapper</span></td><td><code>2d47143cea3806f4</code></td></tr><tr><td><span class="el_class">liquibase.util.BomAwareInputStream</span></td><td><code>c12f43ce033b9219</code></td></tr><tr><td><span class="el_class">liquibase.util.BooleanUtil</span></td><td><code>e6207a3945b26145</code></td></tr><tr><td><span class="el_class">liquibase.util.ExpressionMatcher</span></td><td><code>6f9e67f0bc66ed3b</code></td></tr><tr><td><span class="el_class">liquibase.util.JdbcUtil</span></td><td><code>c8a646c80f1988cb</code></td></tr><tr><td><span class="el_class">liquibase.util.LiquibaseUtil</span></td><td><code>53953fdb7a3b05ac</code></td></tr><tr><td><span class="el_class">liquibase.util.MD5Util</span></td><td><code>ad6d9d06d1b47e88</code></td></tr><tr><td><span class="el_class">liquibase.util.NetUtil</span></td><td><code>1f33168a177cc111</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil</span></td><td><code>73f8e0d772b4ca8c</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.DefaultBeanIntrospector</span></td><td><code>08f239c863526997</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.FluentPropertyBeanIntrospector</span></td><td><code>dc977cbf6741481e</code></td></tr><tr><td><span class="el_class">liquibase.util.ObjectUtil.IntrospectionContext</span></td><td><code>71bf3fcbf5efaa5e</code></td></tr><tr><td><span class="el_class">liquibase.util.SmartMap</span></td><td><code>1a66046fe81af4c2</code></td></tr><tr><td><span class="el_class">liquibase.util.SqlParser</span></td><td><code>98142d45444ddf0f</code></td></tr><tr><td><span class="el_class">liquibase.util.SqlUtil</span></td><td><code>27e768da2cff155f</code></td></tr><tr><td><span class="el_class">liquibase.util.StreamUtil</span></td><td><code>bc81783e25e34915</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses</span></td><td><code>88062096494d0e38</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses.Comment</span></td><td><code>09c4231307d6fd1f</code></td></tr><tr><td><span class="el_class">liquibase.util.StringClauses.Whitespace</span></td><td><code>f8f8f2c712386bea</code></td></tr><tr><td><span class="el_class">liquibase.util.StringUtil</span></td><td><code>286ad9c4d64aaef5</code></td></tr><tr><td><span class="el_class">liquibase.util.StringUtil.ToStringFormatter</span></td><td><code>4858ac9ca8f40da2</code></td></tr><tr><td><span class="el_class">liquibase.util.Validate</span></td><td><code>f7d5e0a57ed39143</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleCharStream</span></td><td><code>08d0c57e1fdd0570</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleSqlGrammar</span></td><td><code>7adedb2fd5185f34</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.SimpleSqlGrammarTokenManager</span></td><td><code>74ef95e42a237244</code></td></tr><tr><td><span class="el_class">liquibase.util.grammar.Token</span></td><td><code>02da3e93ee69518c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ByteBuddy</span></td><td><code>d4e5f2084d659ff9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion</span></td><td><code>907fca1b89111e0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion.VersionLocator.Resolved</span></td><td><code>c8b4f3ffa3a708cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.ClassFileVersion.VersionLocator.Resolver</span></td><td><code>575662f2862fb481</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.AbstractBase</span></td><td><code>77e9d686c976f6e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing</span></td><td><code>65bfa03c85847dc9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForFixedValue</span></td><td><code>e388f70646ddfaa7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType</span></td><td><code>1fb9c5c929a4a173</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.SuffixingRandom</span></td><td><code>cdbdedcf0cea0a02</code></td></tr><tr><td><span class="el_class">net.bytebuddy.NamingStrategy.SuffixingRandom.BaseNameResolver.ForFixedValue</span></td><td><code>6b3551ea310c5dc8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache</span></td><td><code>d02df3631a17fa08</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.LookupKey</span></td><td><code>b75da15a4577d948</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.SimpleKey</span></td><td><code>99731a44c3f39c30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort</span></td><td><code>3f135d4f310abf3c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.1</span></td><td><code>3be4336e35a8cbfd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.2</span></td><td><code>5a2bb9e71930a24a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.Sort.3</span></td><td><code>5792db85826ac4ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.StorageKey</span></td><td><code>da984e48de27d4a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.TypeCache.WithInlineExpunction</span></td><td><code>5c74d69cd94d649e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent</span></td><td><code>6521ae6f4fb8e332</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AgentProvider.ForByteBuddyAgent</span></td><td><code>e91ab95d7c39b139</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider</span></td><td><code>6ee52ecc6379effa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment</span></td><td><code>cfe13f1c5e96a232</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Simple</span></td><td><code>a3b5cacaf8429640</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Simple.WithExternalAttachment</span></td><td><code>b602b861147e031f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Compound</span></td><td><code>5c9a4568ff101685</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForEmulatedAttachment</span></td><td><code>65059e338f64eb55</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJ9Vm</span></td><td><code>f27145f94d568553</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForModularizedVm</span></td><td><code>619abbfe88e81fad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForStandardToolsJarVm</span></td><td><code>f059931c5e7e6755</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForUserDefinedToolsJar</span></td><td><code>384dea4cf5e16afd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentTypeEvaluator.ForJava9CapableVm</span></td><td><code>0efc5136ccb7b3ec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.AttachmentTypeEvaluator.InstallationAction</span></td><td><code>16bc84b273a6923b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm</span></td><td><code>2ade5134cc92220d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVm</span></td><td><code>feb37df41e4b9de5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.agent.Installer</span></td><td><code>9e98232f904ea6a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice</span></td><td><code>fafdd893a19dbad9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor</span></td><td><code>f2b03776da96f358</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor.WithExitAdvice</span></td><td><code>045f62084935ddaf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.AdviceVisitor.WithExitAdvice.WithoutExceptionHandling</span></td><td><code>e742ad16a8ed334e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory</span></td><td><code>e457d0c581ac501c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory.1</span></td><td><code>679d5cf8aeda8445</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.Factory.2</span></td><td><code>0032dc52c3b7120c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default</span></td><td><code>18e5aa2522c28deb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default.ForMethodEnter</span></td><td><code>edf2fdcd0d0dde4e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForAdvice.Default.ForMethodExit</span></td><td><code>2f8c4b953622d123</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForInstrumentedMethod.Default</span></td><td><code>3d7d485d55b58179</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ArgumentHandler.ForInstrumentedMethod.Default.Copying</span></td><td><code>e2c8324e03ea998a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Delegator.ForStaticInvocation</span></td><td><code>ab51ba6c32dfcaf8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher</span></td><td><code>5971377d4c02ba88</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inactive</span></td><td><code>ac3f64fa3a2c48bf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining</span></td><td><code>29366a0c64cfbce3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.CodeTranslationVisitor</span></td><td><code>51d11cbdf1100c95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved</span></td><td><code>8c3a54ffa4d7d16e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner</span></td><td><code>c9b14874b193264d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableCollector</span></td><td><code>1ff8865f981e7ec9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableExtractor</span></td><td><code>9b4ac2fa43c8f7f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.AdviceMethodInliner.ExceptionTableSubstitutor</span></td><td><code>a6f422c86511a502</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodEnter</span></td><td><code>2cb1aa8f7949ebd0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodEnter.WithRetainedEnterType</span></td><td><code>362d455cff4f2b0e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodExit</span></td><td><code>f52b5a843c156d0d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Inlining.Resolved.ForMethodExit.WithoutExceptionHandler</span></td><td><code>3c99eb4ddbdf41ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.Disabled</span></td><td><code>107d2adfebe20ada</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForType</span></td><td><code>f73e560374ff4750</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue</span></td><td><code>5b8a6404ba7b033e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.1</span></td><td><code>af4ae73d545c680d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.2</span></td><td><code>d9f01336c2b1b5a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.3</span></td><td><code>5d4df3b91437a7da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.4</span></td><td><code>b8cac1580b9f52a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.5</span></td><td><code>255258b8377dc404</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.Bound</span></td><td><code>5f9bcb622b93c561</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.ForValue.Inverted</span></td><td><code>cb361573d72ca0cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.RelocationHandler.Relocation.ForLabel</span></td><td><code>45a0cb5b2b57add4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.Resolved.AbstractBase</span></td><td><code>4cc3354bbb1cf8c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.SuppressionHandler.NoOp</span></td><td><code>dcc16bac660004dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.Dispatcher.SuppressionHandler.Suppressing</span></td><td><code>d12838aa61a470bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default</span></td><td><code>4eebff7becb12c11</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.1</span></td><td><code>687050010a11eab9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.2</span></td><td><code>276e11996418515b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.ExceptionHandler.Default.3</span></td><td><code>cc2955ef4c26538c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default</span></td><td><code>823020fb81eff481</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default.ForAdvice</span></td><td><code>73aceb933c70d6f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.MethodSizeHandler.Default.WithCopiedArguments</span></td><td><code>b309d0b59511cc7c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.NoExceptionHandler</span></td><td><code>02b45f94c15479e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Factory.AdviceType</span></td><td><code>5436adacd265f976</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Factory.Illegal</span></td><td><code>9f50378c3340586e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForAllArguments</span></td><td><code>b8e284399f58ef5c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForAllArguments.Factory</span></td><td><code>66166243eb9aab20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument</span></td><td><code>b8e82a63154819c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument.Unresolved</span></td><td><code>afe1f1bf2651e093</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForArgument.Unresolved.Factory</span></td><td><code>cc1dcc2d968d307e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForEnterValue</span></td><td><code>28d6e9ff8ed3c3e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForEnterValue.Factory</span></td><td><code>7d380bffb92b3278</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForExitValue.Factory</span></td><td><code>3d70f02bb85960ae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForField.Unresolved.Factory</span></td><td><code>493f3e8cf9e6db96</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod</span></td><td><code>17d11f0b21d8e4ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.1</span></td><td><code>5c4e9d5bd7728646</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.2</span></td><td><code>1cc551b345fb637b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod.3</span></td><td><code>9d7f62ccdcb54699</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedType</span></td><td><code>ef5f749a1a10e356</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForLocalValue.Factory</span></td><td><code>bff25561afd03a4b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForOrigin.Factory</span></td><td><code>cc0ccce12225b68d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForReturnValue</span></td><td><code>edc0c146162e2a27</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForReturnValue.Factory</span></td><td><code>fc5a6081db74f50f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStackManipulation</span></td><td><code>ca5dd0df49741a75</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStackManipulation.Factory</span></td><td><code>6e2243b91d8e65dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForStubValue</span></td><td><code>f738dd3dd3f020fa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThisReference</span></td><td><code>65f6f370f3ae3d8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThisReference.Factory</span></td><td><code>393a848dcbef6bee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForThrowable.Factory</span></td><td><code>1ab16d2e43df3537</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.ForUnusedValue.Factory</span></td><td><code>2965981bfbb196c8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort</span></td><td><code>140190dac4b520bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort.1</span></td><td><code>ae0372e05b4aeef8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Sort.2</span></td><td><code>03028cda0d177ded</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForArray</span></td><td><code>0d85aa6b490e1f31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForArray.ReadOnly</span></td><td><code>f34cd325f7bd9ab5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForDefaultValue</span></td><td><code>27027067bd626366</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForDefaultValue.ReadWrite</span></td><td><code>922d546b593c91a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForStackManipulation</span></td><td><code>980460e553976f4f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable</span></td><td><code>1cd71b18dbb6101a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable.ReadOnly</span></td><td><code>993f2ea5d00f838e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.OffsetMapping.Target.ForVariable.ReadWrite</span></td><td><code>2db8333c6a9c37da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.PostProcessor.NoOp</span></td><td><code>b86bdee4006d122a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default</span></td><td><code>1216447a48b7f4ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.ForAdvice</span></td><td><code>22bb3b1552f983da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization</span></td><td><code>54098c3f1a13c6ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization.1</span></td><td><code>413691c7b7dc8ef2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.Initialization.2</span></td><td><code>069fa028c89254eb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode</span></td><td><code>8fb8d33aa53eefdb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.1</span></td><td><code>92d2c5d916c2b57c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.2</span></td><td><code>d89d79352a7ac1ca</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.TranslationMode.3</span></td><td><code>5ff292330643a375</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.WithPreservedArguments</span></td><td><code>2f5d944eb33c7e5c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.StackMapFrameHandler.Default.WithPreservedArguments.WithArgumentCopy</span></td><td><code>ff070c8b1b37ffef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.Advice.WithCustomMapping</span></td><td><code>254aa3f19a5eafb0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.AbstractBase</span></td><td><code>3cd03b050731d22c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.Compound</span></td><td><code>7b1e520e5f4262e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods</span></td><td><code>573191880a5a4e0d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods.DispatchingVisitor</span></td><td><code>ac51d486f8ec0e4b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods.Entry</span></td><td><code>28eb46b4467366d6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.AsmVisitorWrapper.NoOp</span></td><td><code>a613c160b15bbc65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.MemberRemoval</span></td><td><code>005cb62907cc0df7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.asm.MemberRemoval.MemberRemovingClassVisitor</span></td><td><code>fe382217ff7273dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.ByteCodeElement.Token.TokenList</span></td><td><code>1070489264457774</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.ModifierReviewable.AbstractBase</span></td><td><code>0b625f401d945e23</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.NamedElement.WithDescriptor</span></td><td><code>69f25e85d31086f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.TypeVariableSource.AbstractBase</span></td><td><code>b8003891860323ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription</span></td><td><code>7e080fcc4ab41eb1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription.AbstractBase</span></td><td><code>55a8b2f7b58a15aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationDescription.ForLoadedAnnotation</span></td><td><code>a2b247526c4d26ca</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.AbstractBase</span></td><td><code>c3dca45e359b717d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.Empty</span></td><td><code>10e1e01ec4afb6b0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.Explicit</span></td><td><code>b96636e855735fc3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationList.ForLoadedAnnotations</span></td><td><code>a6be8b00fa72ab7a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationSource.Empty</span></td><td><code>034fcbd435657d97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue</span></td><td><code>e46e60f3e4357d8a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.AbstractBase</span></td><td><code>6b46c288929d794a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant</span></td><td><code>650f7b88da7502df</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType</span></td><td><code>8683233734d98d81</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.1</span></td><td><code>ecf694f5c718a013</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.2</span></td><td><code>113fe247f14fdcdd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.3</span></td><td><code>ad40ce4c8d647d57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.4</span></td><td><code>649136274570c878</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.5</span></td><td><code>25519a3723562b18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.6</span></td><td><code>d0a4ee1eb78e8925</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.7</span></td><td><code>5cc6d38c7688ce9e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.8</span></td><td><code>542fa217a5fe4c51</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForConstant.PropertyDelegate.ForNonArrayType.9</span></td><td><code>9adc51229ebb26c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForDescriptionArray</span></td><td><code>198e8cb892ebb0c6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription</span></td><td><code>451401174e8ca82f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription.Loaded</span></td><td><code>fda0610025cc12ff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.ForTypeDescription</span></td><td><code>256f9475d7baab5e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase</span></td><td><code>1a834bbf25c86ab4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.annotation.AnnotationValue.State</span></td><td><code>db0e0a0878d7e335</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.enumeration.EnumerationDescription.AbstractBase</span></td><td><code>36efae2fe3237ba9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.enumeration.EnumerationDescription.ForLoadedEnumeration</span></td><td><code>5b47cbeca30adac0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription</span></td><td><code>68bfcf27b64f643e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.AbstractBase</span></td><td><code>8e18b7d4e1ceddcb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.ForLoadedField</span></td><td><code>60b2439cfc69a4cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.InDefinedShape.AbstractBase</span></td><td><code>e1174a0c69da5a57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.Latent</span></td><td><code>f267c31e54d89fa1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.SignatureToken</span></td><td><code>3fabeebea84ce146</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldDescription.Token</span></td><td><code>3f20efc75bd15e42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.AbstractBase</span></td><td><code>78739d279005d8a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.Explicit</span></td><td><code>323b76a02a64f9a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.ForLoadedFields</span></td><td><code>fc8cc870e5f42b89</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.field.FieldList.ForTokens</span></td><td><code>ea98dba6ef4eb758</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription</span></td><td><code>cb9472a3dd295bbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.AbstractBase</span></td><td><code>deaeb62afc98ead8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.ForLoadedConstructor</span></td><td><code>f8e1111441309268</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.ForLoadedMethod</span></td><td><code>d9fe344c56539dc6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase</span></td><td><code>673ca3d2d56a4b0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase.ForLoadedExecutable</span></td><td><code>db01999a48adc399</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Latent</span></td><td><code>20e100c8a3802774</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Latent.TypeInitializer</span></td><td><code>d5f8ea2d4fb9f2a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.SignatureToken</span></td><td><code>5888f2557f6a88e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.Token</span></td><td><code>a89fdbfb13002946</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.TypeSubstituting</span></td><td><code>8dc21d2e259d2c0f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodDescription.TypeToken</span></td><td><code>f7f14b8ac76ebd98</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.AbstractBase</span></td><td><code>b054427f9b6a48f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.Explicit</span></td><td><code>b03ab4c21a93dfd0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.ForLoadedMethods</span></td><td><code>38bd1bf17eb05676</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.ForTokens</span></td><td><code>40aa960dc7616ac5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.MethodList.TypeSubstituting</span></td><td><code>f1f510557a04392e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.AbstractBase</span></td><td><code>173e1a83772e6071</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter</span></td><td><code>8dd9bfdcb695c00c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfConstructor</span></td><td><code>a18e1a81fc7465d0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfMethod</span></td><td><code>811597af8855d53c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.InDefinedShape.AbstractBase</span></td><td><code>717f5d8d90c005f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Latent</span></td><td><code>1aa2e08f2ad0d5c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Token</span></td><td><code>36549650fa40d54b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.Token.TypeList</span></td><td><code>1890975119bdb094</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterDescription.TypeSubstituting</span></td><td><code>6cc95e3ea064743d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.AbstractBase</span></td><td><code>6fe6f7a3a2c191ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.Empty</span></td><td><code>8f4a45d2f54ed28b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.Explicit.ForTypes</span></td><td><code>75d84e0b4fcd99a9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable</span></td><td><code>1456c072c3be7105</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfConstructor</span></td><td><code>6d7eaa8911075319</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfMethod</span></td><td><code>f0835708e2d15fb4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.ForTokens</span></td><td><code>b77d0ee711552f0c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.method.ParameterList.TypeSubstituting</span></td><td><code>293f1f350b97c439</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.FieldManifestation</span></td><td><code>61ed9ad5f460d425</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.ModifierContributor.Resolver</span></td><td><code>4c37457cc5fe415c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Ownership</span></td><td><code>03978521bbedeaac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.SynchronizationState</span></td><td><code>1ee1e76d573ad75b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.SyntheticState</span></td><td><code>0ea0b3d14a159257</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.TypeManifestation</span></td><td><code>823497b74af56cf0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Visibility</span></td><td><code>eddec8671a9488f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.modifier.Visibility.1</span></td><td><code>d7e383ada6123e01</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.AbstractBase</span></td><td><code>fbc5f3918eb9463b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.ForLoadedPackage</span></td><td><code>647cf445f49b7cf5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.PackageDescription.Simple</span></td><td><code>0cb49b8e5cdceb1d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.AbstractBase</span></td><td><code>fa2d664156de0c87</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.Empty</span></td><td><code>facb71157fa46ed2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.RecordComponentList.ForTokens</span></td><td><code>b72447d1fcbe18bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDefinition.Sort</span></td><td><code>e252ac8a021f4082</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDefinition.SuperClassIterator</span></td><td><code>dcc41092c6176f54</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription</span></td><td><code>36fd0fa20ad52135</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.AbstractBase</span></td><td><code>258559cdb4b6404f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.AbstractBase.OfSimpleType</span></td><td><code>c72c2e5e6e03df99</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.ArrayProjection</span></td><td><code>a900e473d864b2b5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.ForLoadedType</span></td><td><code>8fa35f44ace50391</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic</span></td><td><code>5601518ac3dba89e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AbstractBase</span></td><td><code>3e49593313e4528f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator</span></td><td><code>b0fc4c110c19aecd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Chained</span></td><td><code>ce5936070db33961</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableExceptionType</span></td><td><code>83ae335cad65ee98</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableParameterType</span></td><td><code>3db4d13b1a55ffe8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedField</span></td><td><code>bc47da1b7672770d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedInterface</span></td><td><code>25bcc5acc7d6039e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedMethodReturnType</span></td><td><code>68fd86a349490e9d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedSuperClass</span></td><td><code>64cbe4cf03033a19</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedTypeVariable</span></td><td><code>607805b81a44c1a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Simple</span></td><td><code>58348630fb7f5660</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForComponentType</span></td><td><code>0f95408415168381</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForOwnerType</span></td><td><code>dbe792b296842cfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeArgument</span></td><td><code>c4c5a6817a5b11ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeVariableBoundType</span></td><td><code>260242c433f7db80</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeVariableBoundType.OfFormalTypeVariable</span></td><td><code>14bd8a3cecc2168a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForWildcardUpperBoundType</span></td><td><code>3ebd458a5a263baf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.NoOp</span></td><td><code>7d262d1efdc1a658</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection</span></td><td><code>0ee749354388952f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedFieldType</span></td><td><code>1724bc9738037670</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedReturnType</span></td><td><code>09e831a0a48649e7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedSuperClass</span></td><td><code>4097c89a98a6a8c7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfConstructorParameter</span></td><td><code>268259d971f079da</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfMethodParameter</span></td><td><code>cc35cbb5a12db70b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation</span></td><td><code>ba4ed13a2c16fa27</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation.OfAnnotatedElement</span></td><td><code>5bccd0ca3c6cf39e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation</span></td><td><code>5734f0b82230f143</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation.OfAnnotatedElement</span></td><td><code>2203d6c2cc2e43d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithResolvedErasure</span></td><td><code>5656afa8f8c7fa04</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.LazyProxy</span></td><td><code>837c46ba31dd9215</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray</span></td><td><code>d13b176c2d3dc84b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray.ForLoadedType</span></td><td><code>a6c044aee537c5ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfGenericArray.Latent</span></td><td><code>5d23c8971e97c94c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType</span></td><td><code>ffefd02f303394e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForErasure</span></td><td><code>d952d613f637b449</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForLoadedType</span></td><td><code>f00423b3668c6a6d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.Latent</span></td><td><code>7f6b65eac82ccacd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType</span></td><td><code>91d595189a038777</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForGenerifiedErasure</span></td><td><code>4fa1e7c89c00c97f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType</span></td><td><code>68b564e96aa7b7f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType.ParameterArgumentTypeList</span></td><td><code>186a3e289af3008c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.Latent</span></td><td><code>0563e8e02d018d81</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable</span></td><td><code>c522788ac45e74aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.ForLoadedType</span></td><td><code>e9a761f5db6d7559</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.ForLoadedType.TypeVariableBoundList</span></td><td><code>732848281d848591</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.Symbolic</span></td><td><code>7fc3f163d6308332</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfTypeVariable.WithAnnotationOverlay</span></td><td><code>ff4f9bd6f4dd76ad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType</span></td><td><code>eb4830fed7178b97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType</span></td><td><code>db7fcf43960281f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardLowerBoundTypeList</span></td><td><code>24942c2b7fad7535</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardUpperBoundTypeList</span></td><td><code>5882d1d8d1e8b70d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.Latent</span></td><td><code>cbb90f0dea0557f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.AnnotationStripper</span></td><td><code>1b14e58accc4a72d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.AnnotationStripper.NonAnnotatedTypeVariable</span></td><td><code>8301b694bbcc7961</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForRawType</span></td><td><code>2730ba635b3e4dae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor</span></td><td><code>7c9ee6e3c386d02f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument</span></td><td><code>d8e6035b10ed1222</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reducing</span></td><td><code>6646869e65b4683e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying</span></td><td><code>f695f950ef96d452</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.1</span></td><td><code>3887b35198c64c3f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.2</span></td><td><code>dda2c47b308dfe77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor</span></td><td><code>65dc96c548e3e991</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForAttachment</span></td><td><code>da6e736f271084bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForDetachment</span></td><td><code>84581ab83cefe0ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForTypeVariableBinding</span></td><td><code>eee2707f84480265</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForTypeVariableBinding.TypeVariableSubstitutor</span></td><td><code>f090db409dd7659d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.WithoutTypeSubstitution</span></td><td><code>17ef049604f02334</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator</span></td><td><code>13ff0a7ec71a9596</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.1</span></td><td><code>3122adbd7aaaeca9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.2</span></td><td><code>36d36c5061f2243e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.3</span></td><td><code>ca3595549a574d77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.ForTypeAnnotations</span></td><td><code>f22bf42b89621378</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.Latent</span></td><td><code>5790060e779aeaed</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeDescription.LazyProxy</span></td><td><code>12b49bec0a736b32</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList</span></td><td><code>da60a7cfb717d0a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.AbstractBase</span></td><td><code>4700315364477234</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Empty</span></td><td><code>59d00ad7b53c811a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Explicit</span></td><td><code>81495dfc3a359dfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.ForLoadedTypes</span></td><td><code>4356a7471aec6f20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.AbstractBase</span></td><td><code>5376e1d2298a6512</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.Empty</span></td><td><code>df9431d33e66dbb4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.Explicit</span></td><td><code>1ab8c93e54ee2ac6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes</span></td><td><code>1b6544725fdb45a6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables</span></td><td><code>05b85732c40f12b7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables.AttachedTypeVariable</span></td><td><code>8133514c5d90955c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.WithResolvedErasure</span></td><td><code>3ae7efc80de7c3db</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes</span></td><td><code>c603bfa8790b860c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes.OfTypeVariables</span></td><td><code>d713fc161a8b3c83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfConstructorExceptionTypes</span></td><td><code>41a985dd07ed867c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes</span></td><td><code>99d4f3faf0ed1337</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes.TypeProjection</span></td><td><code>7f6f3c7654719119</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes</span></td><td><code>74966b175ac75ab9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes.TypeProjection</span></td><td><code>2d651d381fd3d0a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.description.type.TypeVariableToken</span></td><td><code>0b904605bce2d673</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.ForClassLoader</span></td><td><code>3d93d02aae11ab20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.ForClassLoader.BootLoaderProxyCreationAction</span></td><td><code>92592514e911da0a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.Resolution.Explicit</span></td><td><code>0d4fd821f05a20f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.ClassFileLocator.Simple</span></td><td><code>f699c5335eed704c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase</span></td><td><code>531a2e961b13325b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter</span></td><td><code>5f4faab3b408ec94</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.FieldDefinitionAdapter</span></td><td><code>fd8d7a11be3c9ede</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter</span></td><td><code>e75374fa15e452ff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.AnnotationAdapter</span></td><td><code>baf66768a8ba7010</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.SimpleParameterAnnotationAdapter</span></td><td><code>24c4f03b22480ac9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter</span></td><td><code>5914cb1a77b4c084</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter.AnnotationAdapter</span></td><td><code>8becc0d3a2f579f7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.OptionalMethodMatchAdapter</span></td><td><code>1e5cba284e697ff2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Delegator</span></td><td><code>cd65d88864fb9551</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.UsingTypeWriter</span></td><td><code>2c521e681717b547</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.AbstractBase</span></td><td><code>ae345146b4ff4937</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase</span></td><td><code>bbf864ab6ae58db5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase.Adapter</span></td><td><code>c094da12c027af78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase</span></td><td><code>9c472892ce0a50bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase.Adapter</span></td><td><code>d3915da6e1e1de4c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ExceptionDefinition.AbstractBase</span></td><td><code>5d66e82b417f9b46</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ImplementationDefinition.AbstractBase</span></td><td><code>e0513b10037138a8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.AbstractBase</span></td><td><code>ce292c22036f8154</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Initial.AbstractBase</span></td><td><code>75703fad010e1cc6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.AbstractBase</span></td><td><code>0a7a2334f6a9b15d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase</span></td><td><code>c67240824c7cd31a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase.Adapter</span></td><td><code>f1f199a3d7662651</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ReceiverTypeDefinition.AbstractBase</span></td><td><code>a20cd2a086e77441</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.TypeVariableDefinition.AbstractBase</span></td><td><code>b010816c4e7b6513</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default</span></td><td><code>ca6748217ece3884</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default.Loaded</span></td><td><code>e63ea06339154cad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.DynamicType.Default.Unloaded</span></td><td><code>876286f205b44199</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.TargetType</span></td><td><code>26c139b5f2f58862</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.Compound</span></td><td><code>a5a52522b43091ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod</span></td><td><code>22ab387d59f6c970</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.MethodModifierTransformer</span></td><td><code>829c18ff395159ba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod</span></td><td><code>083bfd5734c4504d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.AttachmentVisitor</span></td><td><code>43014c50e1310fbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.TransformedParameter</span></td><td><code>84642c4a6f0d1bdc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.ForMethod.TransformedMethod.TransformedParameterList</span></td><td><code>54d561afbee57f99</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.Transformer.NoOp</span></td><td><code>49cd89a2b3b975a3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.TypeResolutionStrategy.Passive</span></td><td><code>d5784ee7fb36ce53</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default</span></td><td><code>ae8d9f7fd85c6aad</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.1</span></td><td><code>63c0d42260c7599e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.2</span></td><td><code>a8389e9d32c4ecd7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.3</span></td><td><code>30f7afc5a8be245c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader</span></td><td><code>02cd98561e41388f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.ClassDefinitionAction</span></td><td><code>ae3b3260cea35a93</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PackageLookupStrategy.CreationAction</span></td><td><code>ed99761ea2821fe6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PackageLookupStrategy.ForJava9CapableVm</span></td><td><code>938d777edfb5f306</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler</span></td><td><code>811732d1db761cc5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler.1</span></td><td><code>c9ee72578a4d55a4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler.2</span></td><td><code>f7eb2a49ccc0c5d4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.SynchronizationStrategy.CreationAction</span></td><td><code>787a86bd317e5dc4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ByteArrayClassLoader.SynchronizationStrategy.ForJava8CapableVm</span></td><td><code>02e95f14cee748d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassFilePostProcessor.NoOp</span></td><td><code>3c8088887326744a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.AbstractBase</span></td><td><code>331215a38873f162</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingLookup</span></td><td><code>4aaf3011645f367c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection</span></td><td><code>9b4c6d016e86d89d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.Dispatcher.CreationAction</span></td><td><code>e95efd9bc7c2fbec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.Dispatcher.UsingUnsafeInjection</span></td><td><code>ee369f8a9915cac0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe</span></td><td><code>0fe8982cff47681a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe.Dispatcher.CreationAction</span></td><td><code>ef15ca0109cc8f56</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassInjector.UsingUnsafe.Dispatcher.Enabled</span></td><td><code>fe60291c22873865</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy</span></td><td><code>17fb081ccc92f99c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default</span></td><td><code>7390ec8634515594</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default.InjectionDispatcher</span></td><td><code>759cb7a298fc98b7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default.WrappingDispatcher</span></td><td><code>88c49bdd78533ba6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.ForUnsafeInjection</span></td><td><code>fae0995eb7740944</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.ClassLoadingStrategy.UsingLookup</span></td><td><code>2907954eb970dda6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.InjectionClassLoader</span></td><td><code>cbd809288c0dad36</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.MultipleParentClassLoader.Builder</span></td><td><code>c6fb9f2d63f216f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Definition.Trivial</span></td><td><code>6512673aa8423352</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Definition.Undefined</span></td><td><code>1b8dafe51f80088c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.NoOp</span></td><td><code>31480ec85144aa31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.loading.PackageDefinitionStrategy.Trivial</span></td><td><code>d0ed587787d4d89f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default</span></td><td><code>f0774d4bbe85a809</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.1</span></td><td><code>09a3c2cfe88a5ae4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.2</span></td><td><code>76afb59bd5abdd5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.ClassWriterStrategy.FrameComputingClassWriter</span></td><td><code>52e278e8d81b4dc4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.AbstractBase</span></td><td><code>db8c5004661a0bd8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.ForClassHierarchy</span></td><td><code>0e8431af1152b965</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.ForClassHierarchy.Factory</span></td><td><code>d97235dbbc3871e9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldLocator.Resolution.Simple</span></td><td><code>7e3dca01a01498d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default</span></td><td><code>cc5265630d0906f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled</span></td><td><code>00933225bc77b175</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled.Entry</span></td><td><code>0ec1361a69a955fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Entry</span></td><td><code>a7413622fd851aa9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Default</span></td><td><code>83177f7ca587cf30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default</span></td><td><code>cd900ae01efd903f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.1</span></td><td><code>a7ce85bb2f37ff77</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.2</span></td><td><code>ad157a47dace4f55</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler</span></td><td><code>fc88be698cc4a50f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.AbstractBase</span></td><td><code>ad55505e167100d9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default</span></td><td><code>a37bac0e0eceb0c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod</span></td><td><code>4b92bfc82ab49b25</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod.Token</span></td><td><code>e2da236960e0a189</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key</span></td><td><code>421619c0f44567f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Detached</span></td><td><code>82540bbf94c15922</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Harmonized</span></td><td><code>5d9ad1d55d82a355</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store</span></td><td><code>f948e4de58324a0f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous</span></td><td><code>9e2928a385a525ac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Initial</span></td><td><code>1fc852958287c36a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved</span></td><td><code>6672a261c5f5dd2e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node</span></td><td><code>0f0b18948cce4159</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Graph</span></td><td><code>f50e2614e64a132c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Merger.Directional</span></td><td><code>0ba0f74ab7d66be7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.ForDeclaredMethods</span></td><td><code>80835a5a4610b1d3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Empty</span></td><td><code>de57d507ae61b464</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Linked.Delegation</span></td><td><code>7341085250d5f338</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Simple</span></td><td><code>f9767f80e7124acc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Sort</span></td><td><code>8e20af4bf9dad8a0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Unresolved</span></td><td><code>c42332646fb3e771</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.NodeList</span></td><td><code>3f435ec381113f00</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodGraph.Simple</span></td><td><code>9a1f1f9d25ac44be</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default</span></td><td><code>35ae92274e85ac88</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled</span></td><td><code>dd840dc4ea29fc06</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled.Entry</span></td><td><code>827864e42dc177c2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Entry</span></td><td><code>66b9b2c39c4a08ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared</span></td><td><code>3c270a20a21353d7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared.Entry</span></td><td><code>e96586202cb119f0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation</span></td><td><code>ea77701fcbc47e2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation.Compiled</span></td><td><code>7b000ab44a4af2cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default</span></td><td><code>eec49897d441dcbe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default.Compiled</span></td><td><code>1d64a300c478cbd4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.Drain.Default</span></td><td><code>a3bc2736d5ad95f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.None</span></td><td><code>d062b02ed3f4d342</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeInitializer.Simple</span></td><td><code>3429322f4d42e2d4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeValidation</span></td><td><code>b9ab70dc0d5e3c60</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default</span></td><td><code>c13cf997e386f3cc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ClassDumpAction.Dispatcher.Disabled</span></td><td><code>d4f0d2e7fbcab045</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForCreation</span></td><td><code>fc9ad618be46b3c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining</span></td><td><code>299c2478af802227</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.ContextRegistry</span></td><td><code>dfee6deed9a49e33</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing</span></td><td><code>bf4cd0530bebc828</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending</span></td><td><code>03ffbfbd5ac70e17</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.FrameWriter.NoOp</span></td><td><code>70807074f147a5bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.WithoutDrain</span></td><td><code>436b27df1089d96d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Appending.WithoutDrain.WithoutActiveRecord</span></td><td><code>aaf90f0ba38344fb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.InitializationHandler.Creating</span></td><td><code>b01ca83867dc0a50</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.OpenedClassRemapper</span></td><td><code>9e0d8af34c811602</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForInlining.WithFullProcessing.RedefinitionClassVisitor</span></td><td><code>f41a382ab3215f3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.SignatureKey</span></td><td><code>d20a5d7220afbb42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.UnresolvedType</span></td><td><code>3f5380fd3549f07e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor</span></td><td><code>0449b85d73902e5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.Compound</span></td><td><code>522fa4e49e512828</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClass</span></td><td><code>73e7f3e477121987</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClassFileVersion</span></td><td><code>9e87393ba441dbdc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingFieldVisitor</span></td><td><code>32779ab29633e9ef</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingMethodVisitor</span></td><td><code>a412717a1b97aba3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForExplicitField</span></td><td><code>a03e0587988aae1f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForImplicitField</span></td><td><code>b7f49ad994b5b989</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.AccessBridgeWrapper</span></td><td><code>9527fd76169900c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod</span></td><td><code>e3fde8a86929682d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod.WithBody</span></td><td><code>963047d43410ba83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForNonImplementedMethod</span></td><td><code>28a00d78fb553a8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.Sort</span></td><td><code>928d954d831a88bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.AbstractInliningDynamicTypeBuilder</span></td><td><code>3dcbe96c7737ffda</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.InliningImplementationMatcher</span></td><td><code>385ec334716921a9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.MethodRebaseResolver.Disabled</span></td><td><code>687ef4457dff2d12</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.inline.RedefinitionDynamicTypeBuilder</span></td><td><code>4aecc0ffde9ceecf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default</span></td><td><code>0d114e09a2faac83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.1</span></td><td><code>16fc5c99e02d7f9f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.2</span></td><td><code>dd199479878d5739</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.3</span></td><td><code>792ea5ce51475037</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.4</span></td><td><code>98fceb895a262b45</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.5</span></td><td><code>f0898605f9020c16</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder</span></td><td><code>16995528b814abfb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.InstrumentableMatcher</span></td><td><code>c2850d79fc87446b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget</span></td><td><code>17f509a8b52b39f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.Factory</span></td><td><code>f6c0a700d93e9d10</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver</span></td><td><code>282c73cc811d5b71</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.1</span></td><td><code>2eb773d398b87160</code></td></tr><tr><td><span class="el_class">net.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.2</span></td><td><code>903a99da03746eb8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor</span></td><td><code>0174e94238af9d2f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldLocation.Relative</span></td><td><code>e3f1a92ea73df3a5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldLocation.Relative.Prepared</span></td><td><code>c55029896988613b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldNameExtractor.ForBeanProperty</span></td><td><code>751b847060c7cd95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.FieldNameExtractor.ForFixedValue</span></td><td><code>37f6e575b29ba057</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.ForImplicitProperty</span></td><td><code>623c50de803e8dff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.FieldAccessor.ForImplicitProperty.Appender</span></td><td><code>db2e4aeceee38d5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default</span></td><td><code>d63040bc175192ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AbstractPropertyAccessorMethod</span></td><td><code>4a69ecc69149f327</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AccessorMethod</span></td><td><code>147ddbd116dc5018</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.AccessorMethodDelegation</span></td><td><code>4ecb89b1b8e43487</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.CacheValueField</span></td><td><code>091aa1cc83b89353</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.DelegationRecord</span></td><td><code>7772d9b1460b4444</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.Factory</span></td><td><code>329a9c16f45fea72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Default.FieldCacheEntry</span></td><td><code>93ea3c3584aedbb3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Disabled</span></td><td><code>ddf07ab3032320e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.Disabled.Factory</span></td><td><code>c84409126dc3032a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.ExtractableView.AbstractBase</span></td><td><code>a2bce3211300b141</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration</span></td><td><code>85cfd05a0313231d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.1</span></td><td><code>1a7229cc1aa2fe64</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.2</span></td><td><code>4c4edc4b4128953d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Context.FrameGeneration.3</span></td><td><code>0086e69e9329bfd5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.AbstractBase</span></td><td><code>99ac1d4463895d3f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Illegal</span></td><td><code>fe05bdf1b81d2463</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Simple</span></td><td><code>7916d516ba029853</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase</span></td><td><code>891cf9f2a321fafd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation</span></td><td><code>29b19b204be139f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.1</span></td><td><code>3ba9a760aa49a971</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.2</span></td><td><code>8279f38afb254f72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.LoadedTypeInitializer.NoOp</span></td><td><code>1af8ca0d9b7adbe8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodAccessorFactory.AccessType</span></td><td><code>a8b1b417256441f1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall</span></td><td><code>9251b44dfd29e831</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.Appender</span></td><td><code>b108fada5fdaf224</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.ArgumentLoader.ForMethodParameter</span></td><td><code>27c6e8587355ecbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.ArgumentLoader.ForMethodParameter.Factory</span></td><td><code>b4db52149f474bc5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForContextualInvocation</span></td><td><code>7006a4aee6d99734</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForContextualInvocation.Factory</span></td><td><code>655146ce4ac9eab5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodInvoker.ForVirtualInvocation.WithImplicitType</span></td><td><code>b28621164470f5a3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.MethodLocator.ForExplicitMethod</span></td><td><code>99f3c681fe17468e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall</span></td><td><code>c2ccb1366736cb31</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall.Factory</span></td><td><code>be96e54468624529</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodCall.Resolved</span></td><td><code>02110acfeac01e0c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodParameter</span></td><td><code>7498b3460d90e103</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForMethodParameter.Resolved</span></td><td><code>04cc8ab3c2c8bcbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation</span></td><td><code>68d4e2e3fcb8e6a2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory</span></td><td><code>4240030260d49936</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TargetHandler.ForSelfOrStaticInvocation.Resolved</span></td><td><code>a4075eafb58b5ead</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple</span></td><td><code>8661202aa19373c5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.1</span></td><td><code>7e75be1c6b4d6117</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.2</span></td><td><code>f9781532f50651fb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.TerminationHandler.Simple.3</span></td><td><code>dfae9890b6004933</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodCall.WithoutSpecifiedTarget</span></td><td><code>d6f1bb290a2a92f5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation</span></td><td><code>ec9af1244cdb0f2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.Appender</span></td><td><code>578e9e4be578040b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.ImplementationDelegate.Compiled.ForStaticCall</span></td><td><code>78b3eb01c3540dcc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.ImplementationDelegate.ForStaticMethod</span></td><td><code>f19452fcc061d904</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.MethodDelegation.WithCustomProperties</span></td><td><code>c804a366d1128499</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall</span></td><td><code>48a9709638c71f00</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender</span></td><td><code>1278488d60ed8e86</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler</span></td><td><code>35d2e0ef6d7f630d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.1</span></td><td><code>05664af3a3b6738b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.2</span></td><td><code>be670f96c6d93831</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.1</span></td><td><code>09e39802151aefbf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Default</span></td><td><code>7787cf7f483d6685</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.ForTypeAnnotations</span></td><td><code>040d5aab72de4582</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnField</span></td><td><code>52ad3ce83f52621f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnMethod</span></td><td><code>b2534f024a4880dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnMethodParameter</span></td><td><code>c9f39d80b694c092</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnType</span></td><td><code>db8f4f1dbbcf3c3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationRetention</span></td><td><code>6dca59a58d56874f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default</span></td><td><code>190882f8828de18a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.1</span></td><td><code>593737e47cc84848</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.2</span></td><td><code>a61861baa0bc96ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.FieldAttributeAppender.ForInstrumentedField</span></td><td><code>ca19f51ae14fb7b4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.Compound</span></td><td><code>87d24d92007e506e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.Factory.Compound</span></td><td><code>85113e9ca3ae38c3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod</span></td><td><code>4e40a53e08d4cbbb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod.1</span></td><td><code>a3b87b1a75d290fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.ForInstrumentedMethod.2</span></td><td><code>10e734a991eea3bf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.MethodAttributeAppender.NoOp</span></td><td><code>aa6841038c96aed0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType</span></td><td><code>537a1dac83c99ae9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType.Differentiating</span></td><td><code>542ad65dee4078dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.AuxiliaryType</span></td><td><code>577555a7861b5701</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom</span></td><td><code>9ff4d19573d987f3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy</span></td><td><code>e4ad67673bba91b3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.AssignableSignatureCall</span></td><td><code>e32307e618f933aa</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.ConstructorCall</span></td><td><code>b40129a97ef170e6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.ConstructorCall.Appender</span></td><td><code>6a4a35552c21bf78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.MethodCall</span></td><td><code>d2f0f120376a3b4f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.MethodCall.Appender</span></td><td><code>df4a3b2e219da333</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.auxiliary.MethodCallProxy.PrecomputedMethodGraph</span></td><td><code>7fb29fbd9d22e04c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ArgumentTypeResolver</span></td><td><code>74973272be85ce17</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ArgumentTypeResolver.ParameterIndexToken</span></td><td><code>a8052b758f0a0361</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.DeclaringTypeResolver</span></td><td><code>d1000b5d5bf7bd79</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.1</span></td><td><code>54de841f73ee4eae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver</span></td><td><code>7d40b5a2d5d69397</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver.Compound</span></td><td><code>eab4a548d2693cd2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver.Resolution</span></td><td><code>e8ca39d95b4ade42</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.BindingResolver.Default</span></td><td><code>ed3f9e212bdf4696</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Builder</span></td><td><code>ffaacecf2e1956bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Builder.Build</span></td><td><code>fbe15ed2c0b7c26f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodBinding.Illegal</span></td><td><code>ca301be97fe35cde</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.MethodInvoker.Simple</span></td><td><code>dafea2ba3b2f164b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Anonymous</span></td><td><code>30b0f734840f8b2c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Illegal</span></td><td><code>470dc52d77c3898e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.ParameterBinding.Unique</span></td><td><code>c60c100f523804e4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.Processor</span></td><td><code>1dd9238ba412581f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default</span></td><td><code>946265fda2ca27e8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default.1</span></td><td><code>db109132d7373fda</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodDelegationBinder.TerminationHandler.Default.2</span></td><td><code>cb3895b610bd15d5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.MethodNameEqualityResolver</span></td><td><code>65a8d1431b34fdcd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.ParameterLengthResolver</span></td><td><code>58a025cd0f10dff1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.AllArguments.Assignment</span></td><td><code>bfcd0244baa95f1b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.AllArguments.Binder</span></td><td><code>b7e6501b9bd85e65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.Binder</span></td><td><code>9d613cfc7a8f0cd6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic</span></td><td><code>ad9a5463673957e4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic.1</span></td><td><code>5750463a9b2658fe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Argument.BindingMechanic.2</span></td><td><code>653fe2b1bb93cce4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.BindingPriority.Resolver</span></td><td><code>2fd170c18c979895</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Default.Binder</span></td><td><code>fdd8dd2baa86d3db</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.DefaultCall.Binder</span></td><td><code>d7e4b58cec267a0e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.DefaultMethod.Binder</span></td><td><code>03d209c7b50b3b07</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Empty.Binder</span></td><td><code>6af2e8e3cdad25b3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.FieldValue.Binder</span></td><td><code>ffe1f66fdf57240f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.FieldValue.Binder.Delegate</span></td><td><code>b16d4f0b5def41e9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.IgnoreForBinding.Verifier</span></td><td><code>f6eaa0a37f2ce769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Origin.Binder</span></td><td><code>58bfe04015269f97</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.RuntimeType.Verifier</span></td><td><code>79ef98193cf36f83</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.StubValue.Binder</span></td><td><code>90a2fb5cbb2fc45c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.Super.Binder</span></td><td><code>159db3adf8f80917</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.SuperCall.Binder</span></td><td><code>d504027b57aeebbe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.SuperMethod.Binder</span></td><td><code>787b81ea7c3cf9d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder</span></td><td><code>a9644f0a487b56f8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor</span></td><td><code>08e777de45b651f6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor.Handler.Bound</span></td><td><code>fe4b74c6469cb373</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.DelegationProcessor.Handler.Unbound</span></td><td><code>53b08d554175038c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder</span></td><td><code>6f273cd5a9428c36</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFieldBinding</span></td><td><code>49c4acf91fc87123</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFixedValue</span></td><td><code>b9c7d308b22352b1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFixedValue.OfConstant</span></td><td><code>50edd8158f4fee26</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder.Record</span></td><td><code>f5597b43768b5a7b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bind.annotation.This.Binder</span></td><td><code>b3e837fb5b95fa04</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Compound</span></td><td><code>0f6ce72d7ea48338</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Simple</span></td><td><code>3d7cd79d87926f75</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.ByteCodeAppender.Size</span></td><td><code>897030ac0b46252c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication</span></td><td><code>87726ed8bb6e39de</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.1</span></td><td><code>6cbf4aae44bb9c6a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.2</span></td><td><code>204abf23cbf37c68</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Duplication.3</span></td><td><code>0631976e078609bd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal</span></td><td><code>6d539a300caa5092</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal.1</span></td><td><code>ab763f3b743f79a5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.Removal.2</span></td><td><code>fd766afb93ac2a09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase</span></td><td><code>31ac4a0904ac3e09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Compound</span></td><td><code>96939a22aac4c91b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Illegal</span></td><td><code>d75e2eb0d394f6c3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Size</span></td><td><code>e69b15cd3e8d4461</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackManipulation.Trivial</span></td><td><code>56f2787cdbce4d40</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackSize</span></td><td><code>80f94e8effa2f7bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.StackSize.1</span></td><td><code>3706a73bbafad769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.TypeCreation</span></td><td><code>4865d2e454028bc1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.Assigner</span></td><td><code>7e67d52e9390b000</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.Assigner.Typing</span></td><td><code>b09adf7fa17d04b8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.TypeCasting</span></td><td><code>1a445bd188e2931d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveBoxingDelegate</span></td><td><code>dac9a66a711d1bdb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveBoxingDelegate.BoxingStackManipulation</span></td><td><code>96e0379915a5a251</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveTypeAwareAssigner</span></td><td><code>c888a19b998b7769</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate</span></td><td><code>14e47d44e5cebb1d</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate.ImplicitlyTypedUnboxingResponsible</span></td><td><code>adf7d49661fe0566</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveWideningDelegate</span></td><td><code>1008755d8fe45330</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveWideningDelegate.WideningStackManipulation</span></td><td><code>796408ff7247d988</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner</span></td><td><code>3df36760b29d387a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.reference.GenericTypeAwareAssigner</span></td><td><code>3623cb487284bb53</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.assign.reference.ReferenceTypeAwareAssigner</span></td><td><code>59b5f6f8641c87f2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory</span></td><td><code>f2dcfb1430649b3e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator</span></td><td><code>7ff584cc516e3f40</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator.ForReferenceType</span></td><td><code>2ffee25860dde2e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayStackManipulation</span></td><td><code>2420354f9fdfb502</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.ClassConstant</span></td><td><code>8c2c8e360f844ad5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.ClassConstant.ForReferenceType</span></td><td><code>a779a54b4d7fcd6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.DefaultValue</span></td><td><code>56544d5987e5a6d8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.DoubleConstant</span></td><td><code>829c95b7b67e95cf</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.FloatConstant</span></td><td><code>bdee038754940fff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.IntegerConstant</span></td><td><code>58a28f871a6a0499</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.IntegerConstant.SingleBytePush</span></td><td><code>c5236e2c78a58d9f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.LongConstant</span></td><td><code>113f925135fa3020</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant</span></td><td><code>4af2674773bedc86</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant.CachedMethod</span></td><td><code>927dce16203d5f6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.MethodConstant.ForMethod</span></td><td><code>5c66dba4a8bfbcea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.NullConstant</span></td><td><code>9cf4bfc5c52a2517</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.constant.TextConstant</span></td><td><code>76b9599de59f2aeb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess</span></td><td><code>e098860a4703e90a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher</span></td><td><code>20c90535a547e3cd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.AbstractFieldInstruction</span></td><td><code>75724b7b6b2e4a66</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldGetInstruction</span></td><td><code>adcac7724ac0272c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldPutInstruction</span></td><td><code>aeaedb775e139b65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodInvocation</span></td><td><code>ccdb8e0f61d03f72</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodInvocation.Invocation</span></td><td><code>7edd2eb29addcb20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodReturn</span></td><td><code>3cbfd6833fda70dd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess</span></td><td><code>7ec211e72c6c3719</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading</span></td><td><code>0b690307be533e18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading.TypeCastingHandler.NoOp</span></td><td><code>3f3d0d86b569e241</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetLoading</span></td><td><code>4794627822a950ec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetWriting</span></td><td><code>ec4ccc785b7c7e50</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.AnnotationVisitor</span></td><td><code>ab01c26438b8cd7b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.AnnotationWriter</span></td><td><code>0932d72e909ca807</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Attribute</span></td><td><code>706e3dca943537f4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ByteVector</span></td><td><code>202001c737179f70</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassReader</span></td><td><code>8b28e27e7ae030ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassVisitor</span></td><td><code>98826fd4e883df65</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ClassWriter</span></td><td><code>c9c9db052671c945</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.ConstantDynamic</span></td><td><code>dc6ffc20d56f472b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Context</span></td><td><code>e9c1b62b23feb9ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.FieldVisitor</span></td><td><code>21cf79e64cb95598</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.FieldWriter</span></td><td><code>3c4ebfcb2bc7032e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Handle</span></td><td><code>075f0ddabb6bbeec</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Handler</span></td><td><code>763c7a3b0dc4fc7e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Label</span></td><td><code>c76a04cb58e54e7f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.MethodVisitor</span></td><td><code>3a3fa5cb8e06f5c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.MethodWriter</span></td><td><code>76fc9326535687d1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Opcodes</span></td><td><code>987fc73ab7a62bbc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Symbol</span></td><td><code>f44d88efeab63dac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.SymbolTable</span></td><td><code>00001f478e852135</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.SymbolTable.Entry</span></td><td><code>904cbca1953e75e2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.Type</span></td><td><code>45a01df29df18510</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.TypeReference</span></td><td><code>7c2c246da0bafedc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.ClassRemapper</span></td><td><code>3b51d3b9fc7535e2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.FieldRemapper</span></td><td><code>98cdb08947bd5f18</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.Remapper</span></td><td><code>8ff8deecbcc3631a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.SignatureRemapper</span></td><td><code>cd6e68dcee40cdbd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.commons.SimpleRemapper</span></td><td><code>2b864e7450e7f441</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureReader</span></td><td><code>011d12c758b95e5f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureVisitor</span></td><td><code>b9cc80f05fd1a1b5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.jar.asm.signature.SignatureWriter</span></td><td><code>4b49360620cb7f6c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.AnnotationTypeMatcher</span></td><td><code>4c083a293a95675e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.BooleanMatcher</span></td><td><code>fc276a6c128e2875</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionErasureMatcher</span></td><td><code>76b5d2cc623cc312</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionItemMatcher</span></td><td><code>640386844f0e29b8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionOneToOneMatcher</span></td><td><code>670278e525ff9bfc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.CollectionSizeMatcher</span></td><td><code>8f59b8be9ab4a58b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DeclaringAnnotationMatcher</span></td><td><code>72a4630003105f69</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DeclaringTypeMatcher</span></td><td><code>76e282c5482618bb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.DescriptorMatcher</span></td><td><code>e5d21259f82507a7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase</span></td><td><code>d129e1a5bbea50cb</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.Conjunction</span></td><td><code>6586c7d2abf8bf59</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.Disjunction</span></td><td><code>78eb86ff19c5e913</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatcher.Junction.ForNonNullValues</span></td><td><code>40b97e222b442c20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ElementMatchers</span></td><td><code>4ccc5ccec6e01297</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.EqualityMatcher</span></td><td><code>7ddcccca3867f2c6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ErasureMatcher</span></td><td><code>327b39df894c794a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.FilterableList.AbstractBase</span></td><td><code>acc833b482b3e913</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.FilterableList.Empty</span></td><td><code>994e694dc878695f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.Disjunction</span></td><td><code>cf547e86976c153f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForFieldToken</span></td><td><code>08b4951ce99afdff</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForFieldToken.ResolvedMatcher</span></td><td><code>7a313b55df92d5ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForMethodToken</span></td><td><code>acf53d7e0ad9c66c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.ForMethodToken.ResolvedMatcher</span></td><td><code>a1b47b682cdd16e5</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.LatentMatcher.Resolved</span></td><td><code>838bf93f64347719</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParameterTypeMatcher</span></td><td><code>d565dce3bed4679b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParameterTypesMatcher</span></td><td><code>4f9a1c61c2ca1d30</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodParametersMatcher</span></td><td><code>754bf9d07553d1f9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodReturnTypeMatcher</span></td><td><code>1b6fa22a35a706bc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher</span></td><td><code>d9a4a7f8ba8d705a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort</span></td><td><code>df4da3ccf1c43fb2</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.1</span></td><td><code>9f8edcf420246fae</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.2</span></td><td><code>5b30e294f2304972</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.3</span></td><td><code>9c8b9e468a9ba4ee</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.4</span></td><td><code>4c3709005a13f932</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.MethodSortMatcher.Sort.5</span></td><td><code>93400b67a6230353</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ModifierMatcher</span></td><td><code>c0d2e66fbd31c083</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.ModifierMatcher.Mode</span></td><td><code>09bd88f8f539be92</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.NameMatcher</span></td><td><code>b901fc4b35799fa4</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.NegatingMatcher</span></td><td><code>a7d93978e9d78d7e</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.SignatureTokenMatcher</span></td><td><code>60c758b99c3d9148</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher</span></td><td><code>236df1d1d60ab580</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode</span></td><td><code>78a8ab1a5e998326</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.1</span></td><td><code>197cd818fecbf0dc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.2</span></td><td><code>130a12e752b093e0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.3</span></td><td><code>37e1825b2b41bae8</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.4</span></td><td><code>34a59e75ad57ee16</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.5</span></td><td><code>6b18de0e0195fcc7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.6</span></td><td><code>bdaf5299d13e3bfe</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.7</span></td><td><code>f608050eb76b29c9</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.8</span></td><td><code>7a1f43a330aa49e3</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.StringMatcher.Mode.9</span></td><td><code>d97cfe0669542624</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.SuperTypeMatcher</span></td><td><code>5f65e9ccb1649334</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.TypeSortMatcher</span></td><td><code>bea3cd319f7a9ab6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.matcher.VisibilityMatcher</span></td><td><code>6f0d2c70b6ce50e1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.AbstractBase</span></td><td><code>03ef41c73bcdac6f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.AbstractBase.Hierarchical</span></td><td><code>1ef4bf1634aa9314</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.CacheProvider.Simple</span></td><td><code>d45eb8340ca21b2b</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.ClassLoading</span></td><td><code>f60fbd5bc692f3c0</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Default</span></td><td><code>b27cb7242f69dd95</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Default.ReaderMode</span></td><td><code>6279c7cb7ae80a38</code></td></tr><tr><td><span class="el_class">net.bytebuddy.pool.TypePool.Empty</span></td><td><code>8c0a9ed2a729f1ac</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.CompoundList</span></td><td><code>b8b501baeee21c20</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.ConstructorComparator</span></td><td><code>c7333b6b982e8e09</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.FieldComparator</span></td><td><code>040e57b459196f7f</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.GraalImageCode</span></td><td><code>99c2d8870a99ec8c</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.Invoker.Dispatcher</span></td><td><code>bc20f0bd33abbced</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaModule</span></td><td><code>5223602c7c397de6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaType</span></td><td><code>5563ab2fa424caba</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.JavaType.LatentTypeWithSimpleName</span></td><td><code>420041c8025136fc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.MethodComparator</span></td><td><code>4e5549fe1a1bb16a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.OpenedClassReader</span></td><td><code>f4da9b2b059db195</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.RandomString</span></td><td><code>475c5a28b2a65671</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.StreamDrainer</span></td><td><code>264534737ce95d78</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher</span></td><td><code>787d0fb443c33196</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForInstanceCheck</span></td><td><code>348c5ed1a0ea72ea</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForNonStaticMethod</span></td><td><code>bf4d2158c4101736</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForStaticMethod</span></td><td><code>2cbd19f9947661fd</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader</span></td><td><code>fa40b0b626be1aa7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.CreationAction</span></td><td><code>8ca4ae6007eb9fd7</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.ForModuleSystem</span></td><td><code>9a96cee67ed31732</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.InvokerCreationAction</span></td><td><code>8b81db7b9bb021a1</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.dispatcher.JavaDispatcher.ProxiedInvocationHandler</span></td><td><code>a4eb032d57e965fc</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.privilege.GetMethodAction</span></td><td><code>74124300a1be96ce</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.privilege.GetSystemPropertyAction</span></td><td><code>3dcb9c5481b99d57</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.ExceptionTableSensitiveMethodVisitor</span></td><td><code>d6e802e0f103ce5a</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.LineNumberPrependingMethodVisitor</span></td><td><code>39913d282d69be33</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.MetadataAwareClassVisitor</span></td><td><code>01777504b2dd8fd6</code></td></tr><tr><td><span class="el_class">net.bytebuddy.utility.visitor.StackAwareMethodVisitor</span></td><td><code>e665bc6a36ad6fe9</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator</span></td><td><code>48acc4243e8fe449</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator.Companion</span></td><td><code>ff8262c1c6baeb13</code></td></tr><tr><td><span class="el_class">okhttp3.Authenticator.Companion.AuthenticatorNone</span></td><td><code>c140ce1e145519a0</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner</span></td><td><code>5ddc1d05c58e1bdf</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner.Builder</span></td><td><code>b12d37865875ae96</code></td></tr><tr><td><span class="el_class">okhttp3.CertificatePinner.Companion</span></td><td><code>8c20054c6cbc0416</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite</span></td><td><code>0eaa2132ee6e2706</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite.Companion</span></td><td><code>17ee86ddcceb7e4a</code></td></tr><tr><td><span class="el_class">okhttp3.CipherSuite.Companion.ORDER_BY_NAME.1</span></td><td><code>ba597ec154d0ee66</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionPool</span></td><td><code>ea05a4cced58609c</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec</span></td><td><code>012a1ffc11f3b1fe</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec.Builder</span></td><td><code>3b8eb37b21db0fcc</code></td></tr><tr><td><span class="el_class">okhttp3.ConnectionSpec.Companion</span></td><td><code>71951efbfcef404f</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar</span></td><td><code>bc54a64c46466638</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar.Companion</span></td><td><code>475aa1d0143d5a2a</code></td></tr><tr><td><span class="el_class">okhttp3.CookieJar.Companion.NoCookies</span></td><td><code>e3b5e4871c5eba44</code></td></tr><tr><td><span class="el_class">okhttp3.Dispatcher</span></td><td><code>c460c11f7a7ca04d</code></td></tr><tr><td><span class="el_class">okhttp3.Dns</span></td><td><code>9669c9051983f50e</code></td></tr><tr><td><span class="el_class">okhttp3.Dns.Companion</span></td><td><code>44e434016d4f07fb</code></td></tr><tr><td><span class="el_class">okhttp3.Dns.Companion.DnsSystem</span></td><td><code>57ea8acc10183a14</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener</span></td><td><code>c50bd229b1b00f1b</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener.Companion</span></td><td><code>6dbc254653db2bef</code></td></tr><tr><td><span class="el_class">okhttp3.EventListener.Companion.NONE.1</span></td><td><code>a0f6885b341318d2</code></td></tr><tr><td><span class="el_class">okhttp3.Headers</span></td><td><code>9fe4d16b6a6b95bc</code></td></tr><tr><td><span class="el_class">okhttp3.Headers.Companion</span></td><td><code>6f72a0bb0c6942e6</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient</span></td><td><code>4c8aacb81cf3525b</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient.Builder</span></td><td><code>7efbd1cc56f32c47</code></td></tr><tr><td><span class="el_class">okhttp3.OkHttpClient.Companion</span></td><td><code>9b723979b6fa78c0</code></td></tr><tr><td><span class="el_class">okhttp3.Protocol</span></td><td><code>f6ccc44e4e8bfa3c</code></td></tr><tr><td><span class="el_class">okhttp3.Protocol.Companion</span></td><td><code>14f6b1975836f78b</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody</span></td><td><code>618beef5446695e5</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody.Companion</span></td><td><code>416268e6649d363b</code></td></tr><tr><td><span class="el_class">okhttp3.RequestBody.Companion.toRequestBody.2</span></td><td><code>3c11ab4750a670f7</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody</span></td><td><code>e3132fdf997fcda9</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody.Companion</span></td><td><code>b06a628c80e77ce5</code></td></tr><tr><td><span class="el_class">okhttp3.ResponseBody.Companion.asResponseBody.1</span></td><td><code>031b6168cd0b84bd</code></td></tr><tr><td><span class="el_class">okhttp3.TlsVersion</span></td><td><code>24674983c0f57201</code></td></tr><tr><td><span class="el_class">okhttp3.TlsVersion.Companion</span></td><td><code>f3c8cd05f5fa3931</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util</span></td><td><code>a21d89f3ef1d2fe0</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util.asFactory.1</span></td><td><code>908795f49264ea5a</code></td></tr><tr><td><span class="el_class">okhttp3.internal.Util.threadFactory.1</span></td><td><code>3127b8da07a224af</code></td></tr><tr><td><span class="el_class">okhttp3.internal.authenticator.JavaNetAuthenticator</span></td><td><code>6fb37d8f935d7f62</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.Task</span></td><td><code>3035d445f54280ef</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskQueue</span></td><td><code>9b48d32901fab490</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner</span></td><td><code>2e9c17ecd934a52c</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.Companion</span></td><td><code>fd1b7f5504dab12a</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.RealBackend</span></td><td><code>c9a7795b660070fc</code></td></tr><tr><td><span class="el_class">okhttp3.internal.concurrent.TaskRunner.runnable.1</span></td><td><code>4eede62df92750a3</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool</span></td><td><code>1b969936df171dd5</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool.Companion</span></td><td><code>cb99e5e893cd5aec</code></td></tr><tr><td><span class="el_class">okhttp3.internal.connection.RealConnectionPool.cleanupTask.1</span></td><td><code>1d203298adac2d50</code></td></tr><tr><td><span class="el_class">okhttp3.internal.tls.OkHostnameVerifier</span></td><td><code>5b11bce6d19b3341</code></td></tr><tr><td><span class="el_class">okio.-Util</span></td><td><code>ba142450c6ecd1ef</code></td></tr><tr><td><span class="el_class">okio.Buffer</span></td><td><code>c54a8ca48f4b17cc</code></td></tr><tr><td><span class="el_class">okio.ByteString</span></td><td><code>a4ef4be72543fed3</code></td></tr><tr><td><span class="el_class">okio.ByteString.Companion</span></td><td><code>27f1800ebb72a350</code></td></tr><tr><td><span class="el_class">okio.Options</span></td><td><code>5ecf225e898cc4ad</code></td></tr><tr><td><span class="el_class">okio.Options.Companion</span></td><td><code>9bd9cda622dafec9</code></td></tr><tr><td><span class="el_class">okio.Segment</span></td><td><code>bb15f279e614a76b</code></td></tr><tr><td><span class="el_class">okio.Segment.Companion</span></td><td><code>b393eb92dd98b03b</code></td></tr><tr><td><span class="el_class">okio.SegmentPool</span></td><td><code>f2f52128ebd8f89a</code></td></tr><tr><td><span class="el_class">okio.internal.ByteStringKt</span></td><td><code>6ed15eb9808248c5</code></td></tr><tr><td><span class="el_class">org.apache.catalina.core.AprLifecycleListener</span></td><td><code>487acee4df9cc2d2</code></td></tr><tr><td><span class="el_class">org.apache.catalina.core.AprStatus</span></td><td><code>32ae5c5d4db9d2d4</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.Charsets</span></td><td><code>8ae1973f359dec29</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.IOUtils</span></td><td><code>d34a3b86c9eac5f9</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.StandardLineSeparator</span></td><td><code>f123936b889b5516</code></td></tr><tr><td><span class="el_class">org.apache.commons.io.output.StringBuilderWriter</span></td><td><code>8b7c956b1d6c1e58</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.LocaleUtils</span></td><td><code>bc2e2f86861445f1</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.StringUtils</span></td><td><code>6ae9ee53b57670df</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.Validate</span></td><td><code>9bebf02364aa7ac6</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateFormat</span></td><td><code>f9f7bcf82ef324f5</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateFormat.1</span></td><td><code>2612a7bc2b4f9047</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser</span></td><td><code>3742d9b6151f7c32</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.1</span></td><td><code>7c49a8b7e3f006fe</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.2</span></td><td><code>b865463ec0c3ab58</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.3</span></td><td><code>13a812c6348c4b17</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.4</span></td><td><code>20f3fa41129f6ed0</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.5</span></td><td><code>8959d12d67a92015</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.CaseInsensitiveTextStrategy</span></td><td><code>422b824ec6a9efd8</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.CopyQuotedStrategy</span></td><td><code>b93608dc7ebe407f</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.NumberStrategy</span></td><td><code>9054a0d8c8c34415</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.PatternStrategy</span></td><td><code>d815eae092485a7b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.Strategy</span></td><td><code>faf4498c599df227</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.StrategyAndWidth</span></td><td><code>4338628d49545095</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDateParser.StrategyParser</span></td><td><code>5976d347fc1b08fd</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter</span></td><td><code>1ec0b0a94341cc0b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.CharacterLiteral</span></td><td><code>646ce9421c98fdd5</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.PaddedNumberField</span></td><td><code>ec19333ae779e1c8</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.StringLiteral</span></td><td><code>b42332b948155c97</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TextField</span></td><td><code>3bd8a2ad7e2e45ff</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TwelveHourField</span></td><td><code>9b94bb67cf359e2b</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.TwoDigitNumberField</span></td><td><code>0708ed2abc7e4020</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FastDatePrinter.UnpaddedNumberField</span></td><td><code>8eff3f4d59542e11</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FormatCache</span></td><td><code>649d59cd24ffed6f</code></td></tr><tr><td><span class="el_class">org.apache.commons.lang3.time.FormatCache.ArrayKey</span></td><td><code>455a219ae41ddcb4</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory</span></td><td><code>e248641dfadece2f</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.1</span></td><td><code>bdf4620c35b4eb66</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.2</span></td><td><code>85276ece6dd22248</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.3</span></td><td><code>75c7af9978a45eeb</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.4</span></td><td><code>c9a90de79ed7a4b2</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.LogFactory.6</span></td><td><code>cfb6bac3a5218169</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.NoOpLog</span></td><td><code>9cad35827419e8ba</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.SLF4JLocationAwareLog</span></td><td><code>c7c5bb72b73e94cf</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.SLF4JLogFactory</span></td><td><code>d78e8c8092c84bef</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable</span></td><td><code>1ce3a9a3afd730be</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable.Referenced</span></td><td><code>24e87006ab38c8e4</code></td></tr><tr><td><span class="el_class">org.apache.commons.logging.impl.WeakHashtable.WeakKey</span></td><td><code>54de5ff573d5fd74</code></td></tr><tr><td><span class="el_class">org.apache.el.ExpressionFactoryImpl</span></td><td><code>2e80d702eeacd8fa</code></td></tr><tr><td><span class="el_class">org.apache.el.util.ExceptionUtils</span></td><td><code>1b2b6c208cd8cdc9</code></td></tr><tr><td><span class="el_class">org.apache.http.Consts</span></td><td><code>3cf82da40bfcf276</code></td></tr><tr><td><span class="el_class">org.apache.http.HttpVersion</span></td><td><code>27b7102d52089bab</code></td></tr><tr><td><span class="el_class">org.apache.http.ProtocolVersion</span></td><td><code>bceeac6dae5f00bd</code></td></tr><tr><td><span class="el_class">org.apache.http.client.config.RequestConfig</span></td><td><code>883ae8e07ee79b59</code></td></tr><tr><td><span class="el_class">org.apache.http.client.config.RequestConfig.Builder</span></td><td><code>e2ea9b5a736b074d</code></td></tr><tr><td><span class="el_class">org.apache.http.client.entity.DeflateInputStreamFactory</span></td><td><code>bc533f00ce914faa</code></td></tr><tr><td><span class="el_class">org.apache.http.client.entity.GZIPInputStreamFactory</span></td><td><code>b1a328500634f33b</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAcceptEncoding</span></td><td><code>2a078ebdd5f5f9ef</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAddCookies</span></td><td><code>2ab466012da911d5</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestAuthCache</span></td><td><code>5bdc16f71e3cae1e</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestClientConnControl</span></td><td><code>a813f4d5e2903517</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestDefaultHeaders</span></td><td><code>d388691f2eed6ebb</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.RequestExpectContinue</span></td><td><code>309053b95cfb0a56</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.ResponseContentEncoding</span></td><td><code>25b8a27aedd46ebe</code></td></tr><tr><td><span class="el_class">org.apache.http.client.protocol.ResponseProcessCookies</span></td><td><code>74c27f70347c2684</code></td></tr><tr><td><span class="el_class">org.apache.http.config.Registry</span></td><td><code>8f748b2a3ddd8ddb</code></td></tr><tr><td><span class="el_class">org.apache.http.config.RegistryBuilder</span></td><td><code>befaf5bc5e0c72e2</code></td></tr><tr><td><span class="el_class">org.apache.http.config.SocketConfig</span></td><td><code>3ae82f9bf8ba4a55</code></td></tr><tr><td><span class="el_class">org.apache.http.config.SocketConfig.Builder</span></td><td><code>62c63a0cb94235bb</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.routing.BasicRouteDirector</span></td><td><code>c360b318c9f2a884</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.socket.PlainConnectionSocketFactory</span></td><td><code>9a5c46331a2190be</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.AbstractVerifier</span></td><td><code>d0eb1d01925b30f0</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.AllowAllHostnameVerifier</span></td><td><code>7e32725d6d902f39</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.BrowserCompatHostnameVerifier</span></td><td><code>aa28b4e17fc10d36</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.DefaultHostnameVerifier</span></td><td><code>b79964ea57ba2d5e</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.SSLConnectionSocketFactory</span></td><td><code>da1900cac85d4f17</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.ssl.StrictHostnameVerifier</span></td><td><code>3e71f6c485ba5a08</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.DomainType</span></td><td><code>e287ffb4131a0d2b</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixList</span></td><td><code>4dd7f1af80880a70</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixListParser</span></td><td><code>7488dd5b6153347e</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixMatcher</span></td><td><code>302eab88577ac15b</code></td></tr><tr><td><span class="el_class">org.apache.http.conn.util.PublicSuffixMatcherLoader</span></td><td><code>22b8d02d02da223c</code></td></tr><tr><td><span class="el_class">org.apache.http.cookie.CookieIdentityComparator</span></td><td><code>5f11b45373aa08c1</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.DefaultConnectionReuseStrategy</span></td><td><code>4aa0971cf6dca5e2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.DefaultHttpResponseFactory</span></td><td><code>0f3d46e19341ed21</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.EnglishReasonPhraseCatalog</span></td><td><code>1f8341686d9c338d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.BasicSchemeFactory</span></td><td><code>4a2cd72a26419fbd</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.DigestSchemeFactory</span></td><td><code>7f0a87385fe29b37</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.HttpAuthenticator</span></td><td><code>96c811954ec19bf5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.KerberosSchemeFactory</span></td><td><code>cc986052254dcfd0</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.NTLMSchemeFactory</span></td><td><code>7ce44533a4e8764c</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.auth.SPNegoSchemeFactory</span></td><td><code>2bc9ae1bc6d89ee9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.AuthenticationStrategyImpl</span></td><td><code>d82018b1d706d291</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.BasicCookieStore</span></td><td><code>da4b2d6f43faed8d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.BasicCredentialsProvider</span></td><td><code>6e475cf93ec1f5b1</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.CloseableHttpClient</span></td><td><code>f4aafdbf4b552ab9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.CookieSpecRegistries</span></td><td><code>0f6c33d629106dac</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultClientConnectionReuseStrategy</span></td><td><code>2eaac97b79658c88</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultConnectionKeepAliveStrategy</span></td><td><code>2fcd056682bfadd5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultHttpRequestRetryHandler</span></td><td><code>f0ede3e3469d0137</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultRedirectStrategy</span></td><td><code>7d74fc2ed90525a7</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.DefaultUserTokenHandler</span></td><td><code>6c1d41e5ea20e395</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClientBuilder</span></td><td><code>cdce1ac974c15e4a</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClientBuilder.2</span></td><td><code>c0a0fecaf547acaa</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.HttpClients</span></td><td><code>92627c78c773cfa0</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.InternalHttpClient</span></td><td><code>9b6ae5d30b0c98e5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.ProxyAuthenticationStrategy</span></td><td><code>75906edf245624b2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.client.TargetAuthenticationStrategy</span></td><td><code>fbe1c18d4d2e11a2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.CPool</span></td><td><code>9d7f574eb6265812</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultHttpClientConnectionOperator</span></td><td><code>47b06d6d87460962</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultHttpResponseParserFactory</span></td><td><code>2648ce5c15387a21</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultRoutePlanner</span></td><td><code>785570d34f1c6794</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.DefaultSchemePortResolver</span></td><td><code>e8df82807fa7d6ef</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.ManagedHttpClientConnectionFactory</span></td><td><code>d3a2556d095706e9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager</span></td><td><code>9f8a0da912cef458</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.2</span></td><td><code>60868c9cc1afed90</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.ConfigData</span></td><td><code>fbd5f662372f25fe</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.PoolingHttpClientConnectionManager.InternalConnectionFactory</span></td><td><code>0cc436dd64622e56</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.conn.SystemDefaultDnsResolver</span></td><td><code>16232f39524cf361</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.DefaultCookieSpecProvider</span></td><td><code>5450fcb0f7283148</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.DefaultCookieSpecProvider.CompatibilityLevel</span></td><td><code>2f23c05f6b74d5f2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.IgnoreSpecProvider</span></td><td><code>90f12932999c4dc6</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.NetscapeDraftSpecProvider</span></td><td><code>d2abd51a1fb938a5</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.RFC6265CookieSpecProvider</span></td><td><code>5b41842dabd1f827</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.cookie.RFC6265CookieSpecProvider.CompatibilityLevel</span></td><td><code>437eaa6e23875ef8</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.entity.LaxContentLengthStrategy</span></td><td><code>0c9f0e945eab71d9</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.entity.StrictContentLengthStrategy</span></td><td><code>27b096a028c4f58d</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.MainClientExec</span></td><td><code>449f41c49520fccb</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.ProtocolExec</span></td><td><code>74c09f98c0802df2</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.RedirectExec</span></td><td><code>74e8db71825c8217</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.execchain.RetryExec</span></td><td><code>f27485023e68ec36</code></td></tr><tr><td><span class="el_class">org.apache.http.impl.io.DefaultHttpRequestWriterFactory</span></td><td><code>5825e3d11737d431</code></td></tr><tr><td><span class="el_class">org.apache.http.message.BasicLineFormatter</span></td><td><code>7227c8d6fbf0d68c</code></td></tr><tr><td><span class="el_class">org.apache.http.message.BasicLineParser</span></td><td><code>1a9a5678d705b3d9</code></td></tr><tr><td><span class="el_class">org.apache.http.pool.AbstractConnPool</span></td><td><code>10205652e2415e48</code></td></tr><tr><td><span class="el_class">org.apache.http.pool.AbstractConnPool.3</span></td><td><code>6076716b4d599e34</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.ChainBuilder</span></td><td><code>dedae8deb30a129e</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.HttpProcessorBuilder</span></td><td><code>e4a201d287f99e90</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.HttpRequestExecutor</span></td><td><code>c22bbe14b9ab09aa</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.ImmutableHttpProcessor</span></td><td><code>46b93e9c4a5ad5f8</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestContent</span></td><td><code>3e26e6cd49d7fc5c</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestTargetHost</span></td><td><code>d8ea9b4a0817447a</code></td></tr><tr><td><span class="el_class">org.apache.http.protocol.RequestUserAgent</span></td><td><code>5e29e5b0e1552f10</code></td></tr><tr><td><span class="el_class">org.apache.http.ssl.SSLContexts</span></td><td><code>b7f7948910960a1c</code></td></tr><tr><td><span class="el_class">org.apache.http.util.Args</span></td><td><code>4305e3ff5d359103</code></td></tr><tr><td><span class="el_class">org.apache.http.util.TextUtils</span></td><td><code>89b93c07951d477e</code></td></tr><tr><td><span class="el_class">org.apache.http.util.VersionInfo</span></td><td><code>b8f9bb6dcdff1aac</code></td></tr><tr><td><span class="el_class">org.apache.juli.logging.DirectJDKLog</span></td><td><code>ba1717f0b96e0c84</code></td></tr><tr><td><span class="el_class">org.apache.juli.logging.LogFactory</span></td><td><code>310ef694312291ff</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.Level</span></td><td><code>29afbabf87c98ffc</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.LogManager</span></td><td><code>21721b712e748cd3</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.MarkerManager</span></td><td><code>686e6591f3fcfc4e</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.MarkerManager.Log4jMarker</span></td><td><code>bec62c0128e68de0</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext</span></td><td><code>4978ae4ad27d07ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext.EmptyIterator</span></td><td><code>5ad63a2e98c65d85</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.ThreadContext.EmptyThreadContextStack</span></td><td><code>be7b9911135d4f19</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.internal.LogManagerStatus</span></td><td><code>d7c267a16cda8d07</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.AbstractMessageFactory</span></td><td><code>15d5c9221c72dcbd</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.DefaultFlowMessageFactory</span></td><td><code>bf83b1ca110171d4</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.MessageFormatMessageFactory</span></td><td><code>2453784136409935</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.ParameterizedMessageFactory</span></td><td><code>759517385422b015</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.message.ParameterizedNoReferenceMessageFactory</span></td><td><code>2fcb790285df9911</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.simple.SimpleLogger</span></td><td><code>f67e73a3666cd8d8</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.AbstractLogger</span></td><td><code>153235afa960b06b</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.AbstractLogger.LocalLogBuilder</span></td><td><code>c9d30ea060a4599e</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.CopyOnWriteSortedArrayThreadContextMap</span></td><td><code>6c5191209b38ebee</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.DefaultThreadContextMap</span></td><td><code>110446dfda4b75ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.DefaultThreadContextStack</span></td><td><code>b6e258de2af31ca1</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.GarbageFreeSortedArrayThreadContextMap</span></td><td><code>4ee19a702bd7d744</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerContext</span></td><td><code>3251e6940096fb1a</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerRegistry</span></td><td><code>c4f2dcfd0eaeed50</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.LoggerRegistry.ConcurrentMapFactory</span></td><td><code>180fc5aae1eba577</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.Provider</span></td><td><code>80f64cec5c4537eb</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.StandardLevel</span></td><td><code>c0b339ac672ea2bc</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.spi.ThreadContextMapFactory</span></td><td><code>13004c109b2bc868</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.status.StatusLogger</span></td><td><code>95fb764e805546ab</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.status.StatusLogger.BoundedQueue</span></td><td><code>1d79f41bb870fcf7</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.Constants</span></td><td><code>1fa3e825b4e186c5</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.EnvironmentPropertySource</span></td><td><code>4b940b1ccc41760c</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.LoaderUtil</span></td><td><code>83e4fdde5ed51afe</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.LoaderUtil.ThreadContextClassLoaderGetter</span></td><td><code>8b84474a8a4dbe6d</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesPropertySource</span></td><td><code>6ce9a6e1e79e3980</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesUtil</span></td><td><code>5847143a7de7d420</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertiesUtil.Environment</span></td><td><code>39f9a7c748b5fa28</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertyFilePropertySource</span></td><td><code>1f4646fc06a77a86</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource</span></td><td><code>586664f3359979c9</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource.Comparator</span></td><td><code>88eda2ac2a423726</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.PropertySource.Util</span></td><td><code>1a155be7e0e9b9c7</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.ProviderUtil</span></td><td><code>be53e65a5f770902</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.SortedArrayStringMap</span></td><td><code>7223eddef59a0674</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.Strings</span></td><td><code>869cf81d3a635417</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.SystemPropertiesPropertySource</span></td><td><code>6a9de9fc634e3a95</code></td></tr><tr><td><span class="el_class">org.apache.logging.log4j.util.internal.DefaultObjectInputFilter</span></td><td><code>d032400c1ec0b161</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.MDCContextMap</span></td><td><code>ba944d55b559bfca</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLogger</span></td><td><code>b5301b24ea88b70a</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLogger.1</span></td><td><code>48eacf3ed9657d4e</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLoggerContext</span></td><td><code>3523405b454ab3b2</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JLoggerContextFactory</span></td><td><code>b4bc4fa41cd5c476</code></td></tr><tr><td><span class="el_class">org.apache.logging.slf4j.SLF4JProvider</span></td><td><code>eb904ddf11c0da04</code></td></tr><tr><td><span class="el_class">org.apache.maven.plugin.surefire.log.api.NullConsoleLogger</span></td><td><code>80d79e52a7499259</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.AbstractPathConfiguration</span></td><td><code>8182fa1396653f01</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BaseProviderFactory</span></td><td><code>82593383b8ea92d6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BiProperty</span></td><td><code>4945e268841ae2cb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BooterDeserializer</span></td><td><code>5e68b147d2c4b22f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClassLoaderConfiguration</span></td><td><code>dc8fd5c18ebb0e44</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Classpath</span></td><td><code>c898ea9ca4a65da5</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClasspathConfiguration</span></td><td><code>fbf5fb96600339ce</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Command</span></td><td><code>eb1b53eb8cbe7b47</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader</span></td><td><code>0c8d3ca700ec7199</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.1</span></td><td><code>fbfebde20e2b504c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.CommandRunnable</span></td><td><code>ee59ae4d74408619</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.DumpErrorSingleton</span></td><td><code>2b476b92c5a56cec</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter</span></td><td><code>7c637cf5651513d1</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.1</span></td><td><code>8e738e4578953efa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.2</span></td><td><code>eed8c1764882af0e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.3</span></td><td><code>c484c4542ee85d76</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.4</span></td><td><code>fdd9c09c784f8eea</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.5</span></td><td><code>7b8c4d35432edce6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.6</span></td><td><code>b897d54528b69e6d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.7</span></td><td><code>fe5121edb86030bc</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.PingScheduler</span></td><td><code>d29065207a6b6c40</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkingReporterFactory</span></td><td><code>076a6c0176f6238b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkingRunListener</span></td><td><code>92d4b034b32ca2c0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.MasterProcessCommand</span></td><td><code>da65de332c2de19d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker</span></td><td><code>71b8c658da2ea8d3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker.1</span></td><td><code>a004a9a91ab49ba2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker.ProcessInfoConsumer</span></td><td><code>73f319c21fab7e7f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProcessInfo</span></td><td><code>b5b56cd86f3f0b31</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PropertiesWrapper</span></td><td><code>ae4bf137cc5290c1</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProviderConfiguration</span></td><td><code>d19986536a351b50</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Shutdown</span></td><td><code>ee9c65017e107986</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.StartupConfiguration</span></td><td><code>a8cc10b01ed27439</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.SystemPropertyManager</span></td><td><code>f47497b1dde50d64</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.TypeEncodedValue</span></td><td><code>5ea9766678ac06a2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.cli.CommandLineOption</span></td><td><code>467fc7f51b73863b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.JUnitPlatformProvider</span></td><td><code>ab158bf01758e7cb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.RunListenerAdapter</span></td><td><code>02cb8e87a6db2057</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.TestPlanScannerFilter</span></td><td><code>622558f718a42827</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.providerapi.AbstractProvider</span></td><td><code>90f3b08fe8a1c87c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture</span></td><td><code>b8ae904ed8536017</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture.ForwardingPrintStream</span></td><td><code>f912ea5d2dac308e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ConsoleOutputCapture.NullOutputStream</span></td><td><code>8d05eb67510fd586</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ReporterConfiguration</span></td><td><code>4281487891f02f69</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.SimpleReportEntry</span></td><td><code>ced572f24a462295</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.io.IOUtils</span></td><td><code>31aed2fcfab3e082</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.io.output.StringBuilderWriter</span></td><td><code>6d33fec8cb3374c0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.JavaVersion</span></td><td><code>a8452005cb20bb7d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.StringUtils</span></td><td><code>4f785afa8bb3a23f</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.SystemUtils</span></td><td><code>aba69a973b7ba06a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.commons.lang3.math.NumberUtils</span></td><td><code>d0156407bff7b695</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shade.org.apache.maven.shared.utils.StringUtils</span></td><td><code>483d14212b21a3ea</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.suite.RunResult</span></td><td><code>f5c7c53a954bcafa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.DirectoryScannerParameters</span></td><td><code>2b5eeacae469cd1d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.IncludedExcludedPatterns</span></td><td><code>f39908e3b64d7090</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest</span></td><td><code>a598483e424232d4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.ClassMatcher</span></td><td><code>79be7f2fa77ad8d7</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.MethodMatcher</span></td><td><code>7c71374a51e8e61b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.ResolvedTest.Type</span></td><td><code>90e4214668937845</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.RunOrderParameters</span></td><td><code>b4c06223c3099700</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestArtifactInfo</span></td><td><code>f703953620e80b33</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestListResolver</span></td><td><code>7d372c99b98a147d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.testset.TestRequest</span></td><td><code>0fa2c0cc34345df2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.CloseableIterator</span></td><td><code>cc15bdebae86d5d2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.DefaultRunOrderCalculator</span></td><td><code>1aeecbcd3bf6e89b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.DefaultScanResult</span></td><td><code>7fefafdf8c793c36</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.ReflectionUtils</span></td><td><code>8d5f4b05d6d77207</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.RunOrder</span></td><td><code>d2292a6beb4b6337</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.TestsToRun</span></td><td><code>a95363e4b4ba2069</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.TestsToRun.ClassesIterator</span></td><td><code>84a139c598502c0b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DaemonThreadFactory</span></td><td><code>21a589f6dedb169c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DaemonThreadFactory.NamedThreadFactory</span></td><td><code>682458ca85b067a3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.DumpFileUtils</span></td><td><code>506743b77fc98f6e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.ImmutableMap</span></td><td><code>72bcae5e55b4fabb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.ObjectUtils</span></td><td><code>69a2a92649b44645</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.StringUtils</span></td><td><code>3a7e4daf0a993e1e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.util.internal.StringUtils.EncodedArray</span></td><td><code>477f1d94d78cb50b</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.jni.Library</span></td><td><code>c6bdff30495076d2</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.jni.LibraryNotFoundError</span></td><td><code>ba7d7e98bfdfff6a</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.util.res.StringManager</span></td><td><code>beba5b7c99f57db8</code></td></tr><tr><td><span class="el_class">org.apache.tomcat.util.res.StringManager.1</span></td><td><code>c8d234b3a63df2b8</code></td></tr><tr><td><span class="el_class">org.apiguardian.api.API.Status</span></td><td><code>95d0ffea805fc01a</code></td></tr><tr><td><span class="el_class">org.aspectj.util.PartialOrder</span></td><td><code>2abfd9dbf3cfcfdd</code></td></tr><tr><td><span class="el_class">org.hibernate.CacheMode</span></td><td><code>1f15cf0fe8801ff9</code></td></tr><tr><td><span class="el_class">org.hibernate.ConnectionAcquisitionMode</span></td><td><code>9a68dba18919c084</code></td></tr><tr><td><span class="el_class">org.hibernate.ConnectionReleaseMode</span></td><td><code>c1e079ba5f691ef1</code></td></tr><tr><td><span class="el_class">org.hibernate.EmptyInterceptor</span></td><td><code>da4a9785d48f51d1</code></td></tr><tr><td><span class="el_class">org.hibernate.EntityMode</span></td><td><code>90f423bbcff195e1</code></td></tr><tr><td><span class="el_class">org.hibernate.FetchMode</span></td><td><code>c66975d9ebf5bd6e</code></td></tr><tr><td><span class="el_class">org.hibernate.FlushMode</span></td><td><code>1c5ddbdf8798ace6</code></td></tr><tr><td><span class="el_class">org.hibernate.Hibernate</span></td><td><code>d6496f5c14f2534e</code></td></tr><tr><td><span class="el_class">org.hibernate.HibernateException</span></td><td><code>113c3f17cf5349db</code></td></tr><tr><td><span class="el_class">org.hibernate.LockMode</span></td><td><code>9a09012fca785f4b</code></td></tr><tr><td><span class="el_class">org.hibernate.LockOptions</span></td><td><code>2f956fa8eda479f1</code></td></tr><tr><td><span class="el_class">org.hibernate.MultiTenancyStrategy</span></td><td><code>71aa427efdafa611</code></td></tr><tr><td><span class="el_class">org.hibernate.NullPrecedence</span></td><td><code>0af4d5a97b18b611</code></td></tr><tr><td><span class="el_class">org.hibernate.Query</span></td><td><code>c01bd09d58d4ba97</code></td></tr><tr><td><span class="el_class">org.hibernate.Query.1</span></td><td><code>ea180c15c7c0c26f</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode</span></td><td><code>93745a97c6b98b5d</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.1</span></td><td><code>ce55d25272ed03d1</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.2</span></td><td><code>c07498c8c7ae5fb1</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.3</span></td><td><code>9aff1586bbba6d33</code></td></tr><tr><td><span class="el_class">org.hibernate.ReplicationMode.4</span></td><td><code>38448fdd55a3f382</code></td></tr><tr><td><span class="el_class">org.hibernate.ScrollMode</span></td><td><code>b47e8ad55356166c</code></td></tr><tr><td><span class="el_class">org.hibernate.SessionFactoryObserver</span></td><td><code>0c113d25f9522dbc</code></td></tr><tr><td><span class="el_class">org.hibernate.UnresolvableObjectException</span></td><td><code>36cc342dacd9e1be</code></td></tr><tr><td><span class="el_class">org.hibernate.Version</span></td><td><code>9ef0b4a8c05b06d1</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.AbstractEntityInsertAction</span></td><td><code>a5d57b34128a3d5a</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.BulkOperationCleanupAction</span></td><td><code>ee6bda7d6ebde237</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionAction</span></td><td><code>df3d8fcf17d195ff</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionRecreateAction</span></td><td><code>b46ff0266fc0dc10</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionRemoveAction</span></td><td><code>9b11291b0aa8e4e6</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.CollectionUpdateAction</span></td><td><code>249c4184b8cecdb9</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityAction</span></td><td><code>1b542b4d026fd65c</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityDeleteAction</span></td><td><code>a2fda5a433195d82</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityInsertAction</span></td><td><code>fac5c701118a0fc8</code></td></tr><tr><td><span class="el_class">org.hibernate.action.internal.EntityUpdateAction</span></td><td><code>d811e9c1d9a54c7b</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.CacheConcurrencyStrategy</span></td><td><code>4291b4deae174f1d</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.CascadeType</span></td><td><code>361c7e08a9524fcf</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.OptimisticLockType</span></td><td><code>d3f9345a062b00b7</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.PolymorphismType</span></td><td><code>c97cca2a9be74b7b</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.Version</span></td><td><code>8f8fd2f4ba3d143d</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.ReflectionUtil</span></td><td><code>93f7b7a527d67d5f</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.XClass</span></td><td><code>f5d567c16ec5ef40</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.XClass.1</span></td><td><code>f92aab7f66bd6c13</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaAnnotationReader</span></td><td><code>93183d57ab09c610</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaMetadataProvider</span></td><td><code>bcea9890d72254de</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager</span></td><td><code>b45f19a4e3e1b954</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager.1</span></td><td><code>2e8745dcbe1b2688</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaReflectionManager.2</span></td><td><code>ede656a025c0b278</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXAnnotatedElement</span></td><td><code>246327e97f53d2b6</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXArrayType</span></td><td><code>7041cf946b105205</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXClass</span></td><td><code>01c607e6fa16f7b1</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXCollectionType</span></td><td><code>fc2aaa306b40fa8c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXCollectionType.1</span></td><td><code>963fef015e782316</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXMember</span></td><td><code>044772aae21f0eeb</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXMethod</span></td><td><code>b4e1d0392cec8a60</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXProperty</span></td><td><code>28d2c66a7708de02</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXSimpleType</span></td><td><code>0a5000bca2142737</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.JavaXType</span></td><td><code>8cbb2c0cf3aa4afa</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.TypeEnvironmentMap</span></td><td><code>fdf486d0f5939561</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.TypeEnvironmentMap.ContextScope</span></td><td><code>5501d855e8cb7172</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.ApproximatingTypeEnvironment</span></td><td><code>a4f3af00637d9424</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.ApproximatingTypeEnvironment.1</span></td><td><code>c8f879a20267f95e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.CompoundTypeEnvironment</span></td><td><code>94c2d61fcd866c0c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.IdentityTypeEnvironment</span></td><td><code>cd1a2280150e359e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.SimpleTypeEnvironment</span></td><td><code>baa70dac30fe41ae</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.SimpleTypeEnvironment.1</span></td><td><code>cfc579139aa74c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeEnvironmentFactory</span></td><td><code>c48e94e52a33928a</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeEnvironmentFactory.1</span></td><td><code>e896c67a174279fc</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeSwitch</span></td><td><code>9b2e73041cd56fff</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils</span></td><td><code>e0610d91f334fb34</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.1</span></td><td><code>63c2e03d2ce9cfd9</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.2</span></td><td><code>48672c4b98d9d0d2</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.3</span></td><td><code>6603120734f0577e</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.reflection.java.generics.TypeUtils.4</span></td><td><code>2d91f045433682d2</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl</span></td><td><code>783558cfe3579676</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.impl.Log_.logger</span></td><td><code>24f06a416ca0d0a7</code></td></tr><tr><td><span class="el_class">org.hibernate.annotations.common.util.impl.LoggerFactory</span></td><td><code>1e6888b6cf1ad033</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.MetadataSources</span></td><td><code>1687d78ac710abf1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.SchemaAutoTooling</span></td><td><code>ced22af4f9857e60</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.TempTableDdlTransactionHandling</span></td><td><code>203670e20019bf15</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.DisabledScanner</span></td><td><code>6abcb8f22dbf5d78</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.ScanResultImpl</span></td><td><code>7dab960c51824ce5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.StandardScanOptions</span></td><td><code>a48053638bc4cdcf</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.archive.scan.internal.StandardScanParameters</span></td><td><code>389bd37750c3efef</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.CfgXmlAccessServiceImpl</span></td><td><code>143a25566ee9d147</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.CfgXmlAccessServiceInitiator</span></td><td><code>7aa554eb57092fa3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.ConfigLoader</span></td><td><code>a997a29f19e8d3f3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.internal.ConfigLoader.1</span></td><td><code>ab8d3d27658df020</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.cfgxml.spi.LoadedConfig</span></td><td><code>619906efeda01f69</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.BootstrapContextImpl</span></td><td><code>0185c8f21376d4ea</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.ClassLoaderAccessImpl</span></td><td><code>c61c089088455aa9</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.ClassmateContext</span></td><td><code>e2687958ec856a8f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultCustomEntityDirtinessStrategy</span></td><td><code>2f9ac4b152a8ce1c</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultSessionFactoryBuilderInitiator</span></td><td><code>86d47ade3e4f6262</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.DefaultSessionFactoryBuilderService</span></td><td><code>8512879a33104e39</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl</span></td><td><code>b17485abd5abc5d3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl.1</span></td><td><code>dd016991fd675894</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.IdGeneratorInterpreterImpl.FallbackInterpreter</span></td><td><code>e890d8c89b98e7f0</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl</span></td><td><code>86fbff8204eb4381</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.1</span></td><td><code>3acc82b1cca24b99</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.EntityTableXrefImpl</span></td><td><code>2cd30a1621716416</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.InFlightMetadataCollectorImpl.TableColumnNameBinding</span></td><td><code>5769d93c299c5422</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl</span></td><td><code>4a5a4e83a3d2dd60</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MappingDefaultsImpl</span></td><td><code>00f922730b047b2a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MappingDefaultsImpl.1</span></td><td><code>846124b0812bf350</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl</span></td><td><code>a4880cd312cb6de4</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.1</span></td><td><code>c3864a6f5c960706</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.2</span></td><td><code>b96f6c8129175d41</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.3</span></td><td><code>6a2b25329428fc8b</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuilderImpl.MetadataBuildingOptionsImpl.4</span></td><td><code>eb1d114cf0f249be</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuildingContextRootImpl</span></td><td><code>d26b7f2676450bf3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataBuildingContextRootImpl.1</span></td><td><code>e0c8a02580d02068</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.MetadataImpl</span></td><td><code>cec1d009458de8a6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.SessionFactoryBuilderImpl</span></td><td><code>8c85306d3e5963de</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.SessionFactoryOptionsBuilder</span></td><td><code>cf513e56ae1ca9be</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.internal.StandardEntityNotFoundDelegate</span></td><td><code>f6e98afc9df81450</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.AbstractBinder</span></td><td><code>716a37fb07712013</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.MappingBinder</span></td><td><code>4b7bbd92f2bb6d11</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalSchemaLocator</span></td><td><code>3a7a6e11673d88d2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver</span></td><td><code>3b6e9ead280396b2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver.DtdMapping</span></td><td><code>27a959e220e6e8ff</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver.NamespaceSchemaMapping</span></td><td><code>028314bd5135630e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.convert.internal.AttributeConverterManager</span></td><td><code>0f1c1e716f366838</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.convert.internal.AttributeConverterManager.ConversionSite</span></td><td><code>99628e7f9c3aa8e9</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy</span></td><td><code>a848ac2d0a66c902</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.Identifier</span></td><td><code>cbd9d155d352824a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.ImplicitNamingStrategyJpaCompliantImpl</span></td><td><code>3ddca003678af7da</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.NamingHelper</span></td><td><code>1ce850e1566df66a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.NamingHelper.1</span></td><td><code>733f77852e3afd8a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.ObjectNameNormalizer</span></td><td><code>245649f4bdde955d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl</span></td><td><code>70503fdea2f46b3d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.internal.ManagedResourcesImpl</span></td><td><code>89ee5de8213392bf</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.internal.ScanningCoordinator</span></td><td><code>10bfc69e99701e4e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess</span></td><td><code>741da94270aaa6f8</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess.1</span></td><td><code>75ea302c3e07d551</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.process.spi.MetadataBuildingProcess.2</span></td><td><code>ac428d6f63bc86ff</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Database</span></td><td><code>5e3106ef05854638</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace</span></td><td><code>4b57fedda466a612</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace.ComparableHelper</span></td><td><code>7397e530edecc2c0</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Namespace.Name</span></td><td><code>e0546aafeecd306f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedNameImpl</span></td><td><code>816c7fde4044a47f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedNameParser.NameParts</span></td><td><code>49555aeaa7129e31</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedSequenceName</span></td><td><code>27c4990d315efb57</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.QualifiedTableName</span></td><td><code>d795668b7909d672</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.Sequence</span></td><td><code>af39f26d3b9f1dd3</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.relational.internal.SqlStringGenerationContextImpl</span></td><td><code>0798ff2b46099c06</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl</span></td><td><code>3a683c0f0cb42490</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl.1</span></td><td><code>bc6c4476b50167b6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.annotations.AnnotationMetadataSourceProcessorImpl.AttributeConverterManager</span></td><td><code>94785b8488f58673</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.EntityHierarchyBuilder</span></td><td><code>826ece9222e95ab1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.HbmMetadataSourceProcessorImpl</span></td><td><code>1d1e3e0da5bc6c9f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.ModelBinder</span></td><td><code>5d8a40ada478f2a5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.ModelBinder.1</span></td><td><code>1c7f3bf39bfc9847</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.internal.hbm.RelationalObjectBinder</span></td><td><code>e25e75acbd2c4280</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.spi.AbstractAttributeKey</span></td><td><code>27d63eb3e3b3e1ba</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.model.source.spi.AttributePath</span></td><td><code>5b97441b8cb07437</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.BootstrapServiceRegistryBuilder</span></td><td><code>af997020fce4237e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder</span></td><td><code>1a4bf503301baed1</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder.1</span></td><td><code>1150a88c416083c6</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.StandardServiceRegistryBuilder.2</span></td><td><code>e38aad7d31a32567</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader</span></td><td><code>be57392e04e60734</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader.2</span></td><td><code>226f720c63ee1a9d</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedClassLoader.4</span></td><td><code>5f41131b2e4fcff8</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedServiceLoader</span></td><td><code>0af50c5c58a46a86</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.AggregatedServiceLoader.ClassPathAndModulePathAggregatedServiceLoader</span></td><td><code>bddbd853b9dbbda5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl</span></td><td><code>340291e35d25880a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl.1</span></td><td><code>a785f935c252031e</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.classloading.internal.TcclLookupPrecedence</span></td><td><code>6c5bec329172a707</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.internal.BootstrapServiceRegistryImpl</span></td><td><code>b685985dceb1b2f5</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.internal.StandardServiceRegistryImpl</span></td><td><code>a2d0aca886e2b8b2</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.DefaultDialectSelector</span></td><td><code>7b3e9e3075b91743</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.DefaultJtaPlatformSelector</span></td><td><code>49da1ce43ea899cb</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.StrategySelectorBuilder</span></td><td><code>32e9b6ae82ff6b9f</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.registry.selector.internal.StrategySelectorImpl</span></td><td><code>31255cb081c0731a</code></td></tr><tr><td><span class="el_class">org.hibernate.boot.spi.XmlMappingBinderAccess</span></td><td><code>a4dede357fa170fc</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.BytecodeLogging</span></td><td><code>75c040604e203287</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer</span></td><td><code>75db2c30764de939</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer.1</span></td><td><code>74792362a7d5179c</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.BytecodeInterceptorLogging</span></td><td><code>48c7fa8ebc5a793e</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.BytecodeInterceptorLogging_.logger</span></td><td><code>31616db4e3ec43a7</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.EnhancementHelper</span></td><td><code>b2b51b3720e87401</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.enhance.spi.interceptor.LazyAttributesMetadata</span></td><td><code>77bc0aa5645b0c90</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.BytecodeProviderInitiator</span></td><td><code>e1518eb2bebda594</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.ProxyFactoryFactoryInitiator</span></td><td><code>f62deffe4c6234b5</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.SessionFactoryObserverForBytecodeEnhancer</span></td><td><code>5d6e18c18ee8de84</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState</span></td><td><code>2cf75c7603a79405</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers</span></td><td><code>9c0cce6afbb9c256</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers.1</span></td><td><code>64b73bfcd09c124f</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.ProxyDefinitionHelpers.2</span></td><td><code>647f411e98185944</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.StandardClassRewriter</span></td><td><code>bec18fd3da3f6334</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.BytecodeProviderImpl</span></td><td><code>001577ff9c9b0738</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.internal.bytebuddy.ProxyFactoryFactoryImpl</span></td><td><code>fa425df3069abfb4</code></td></tr><tr><td><span class="el_class">org.hibernate.bytecode.spi.ClassLoadingStrategyHelper</span></td><td><code>ee90b95bee17f2bb</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.CollectionCacheInvalidator</span></td><td><code>3e40f9e3d1e01541</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.DisabledCaching</span></td><td><code>b006f24ff46271f3</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.NoCachingRegionFactory</span></td><td><code>a591a0626306a3b9</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.NoCachingTransactionSynchronizationImpl</span></td><td><code>62d95d5aff8d24e0</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.RegionFactoryInitiator</span></td><td><code>fa98415ea46e42cb</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.internal.StrategyCreatorRegionFactoryImpl</span></td><td><code>e8d1acfb67c79518</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.AbstractCacheTransactionSynchronization</span></td><td><code>74a05a75a5109cfa</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.access.AccessType</span></td><td><code>46e969ca68df1c02</code></td></tr><tr><td><span class="el_class">org.hibernate.cache.spi.entry.UnstructuredCacheEntry</span></td><td><code>22d3035f91ffbd67</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AbstractPropertyHolder</span></td><td><code>cd4fc6f8ea171b95</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AccessType</span></td><td><code>4c8d99bc4dcffd6b</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotatedClassType</span></td><td><code>f4179b1ab8243989</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder</span></td><td><code>c35d2eb109dd11d1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.1</span></td><td><code>826338ac161b7003</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.2</span></td><td><code>4949d32b9ca32caf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.AnnotationBinder.3</span></td><td><code>895218e35d92a999</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.BaselineSessionEventsListenerBuilder</span></td><td><code>33e11422fce7d81d</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.BinderHelper</span></td><td><code>ef07d439002667b8</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ClassPropertyHolder</span></td><td><code>072e7193eec9b69e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.CollectionSecondPass</span></td><td><code>7c80185f51187c01</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ColumnsBuilder</span></td><td><code>1ab1b1324c27d34a</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.CreateKeySecondPass</span></td><td><code>e43a1829e54e4f1f</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column</span></td><td><code>38259c73e5879b6c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column.1</span></td><td><code>50731113873eff5c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3Column.2</span></td><td><code>3a7aeb73bfd33895</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3DiscriminatorColumn</span></td><td><code>0afa0b285dcd2003</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Ejb3JoinColumn</span></td><td><code>68233b00802d86f3</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Environment</span></td><td><code>585f93f08c14f872</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.FkSecondPass</span></td><td><code>5b9268092c8d1a79</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.IndexColumn</span></td><td><code>a7d141eeade448b9</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.IndexOrUniqueKeySecondPass</span></td><td><code>3fe41ad358d89fe5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.InheritanceState</span></td><td><code>1c1a3431968454f4</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.InheritanceState.ElementsToProcess</span></td><td><code>82fb96faf189b987</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.MetadataSourceType</span></td><td><code>1cd79b7824e5e8a0</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyContainer</span></td><td><code>4b4b94d5395bf577</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyHolderBuilder</span></td><td><code>f58e570a1ef3a918</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.PropertyInferredData</span></td><td><code>4cc8d1fb4edff347</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.SecondaryTableSecondPass</span></td><td><code>7bfe115286ccab43</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.SetSimpleValueTypeSecondPass</span></td><td><code>d4bbbb0ab46d4c52</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.Settings</span></td><td><code>cf491f0c69ef1096</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ToOneBinder</span></td><td><code>2fa993a7d3055721</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.ToOneFkSecondPass</span></td><td><code>d545ab382b2f65d0</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.WrappedInferredData</span></td><td><code>be90ae26350ea8a2</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.BagBinder</span></td><td><code>60e172120c01212e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.CollectionBinder</span></td><td><code>b4b57af6f817f3e5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.CollectionBinder.1</span></td><td><code>efda05c473b54a9e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder</span></td><td><code>ee48468c8d5936a5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.1</span></td><td><code>e2241a6be9676f67</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper</span></td><td><code>a1b2f3a70eb99cdf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper.1</span></td><td><code>dc37011f12bde598</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.EntityTableNamingStrategyHelper.1.1</span></td><td><code>2daf5e153df61a56</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.LocalCacheAnnotationStub</span></td><td><code>d17be03256e141ac</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.EntityBinder.SecondaryTableNamingStrategyHelper</span></td><td><code>d2396b3be9a95b82</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.Nullability</span></td><td><code>8699146a45116ce1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.PropertyBinder</span></td><td><code>283f722a7120b17c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.PropertyBinder.NoValueGeneration</span></td><td><code>154cd9aef9cb567a</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.QueryBinder</span></td><td><code>e6b6482b2c8d6932</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.ResultsetMappingSecondPass</span></td><td><code>799f0d9c228fb9db</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.SetBinder</span></td><td><code>1260286ea3ffc5a6</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.SimpleValueBinder</span></td><td><code>04d75343ccad0c2e</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder</span></td><td><code>b9de46e78b09b6fa</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder.1</span></td><td><code>6c5f6c0c7afb9835</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.TableBinder.AssociationTableNameSource</span></td><td><code>22cc471e714eb4d5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.JPAXMLOverriddenMetadataProvider</span></td><td><code>3fce9d6788978092</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.XMLContext</span></td><td><code>6b66fb16f8082a98</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.annotations.reflection.internal.XMLContext.Default</span></td><td><code>41a391de75508688</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationEventListener</span></td><td><code>aef2dd6cc63d20f1</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationIntegrator</span></td><td><code>002c3f4bba4b48cf</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.BeanValidationIntegrator.1</span></td><td><code>d263bb5021f1abe5</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.DuplicationStrategyImpl</span></td><td><code>49dfed2172e92f0c</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.GroupsPerOperation</span></td><td><code>365c44f6f45c8595</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.GroupsPerOperation.Operation</span></td><td><code>169e80d280409373</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.HibernateTraversableResolver</span></td><td><code>606458418db1a06b</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator</span></td><td><code>df425ea58def5913</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator.1</span></td><td><code>2b57a60fe2f2fb00</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.TypeSafeActivator.2</span></td><td><code>2fae902c1e1aca50</code></td></tr><tr><td><span class="el_class">org.hibernate.cfg.beanvalidation.ValidationMode</span></td><td><code>138f9c83a4a8abf2</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection</span></td><td><code>13bf256017d06136</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection.4</span></td><td><code>7544b88672b65e58</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.AbstractPersistentCollection.IteratorProxy</span></td><td><code>95db55ce1c8d8603</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.PersistentBag</span></td><td><code>698ff65fcd8161b4</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.internal.PersistentSet</span></td><td><code>7ee3c96f8a3cf8f1</code></td></tr><tr><td><span class="el_class">org.hibernate.collection.spi.PersistentCollection</span></td><td><code>46ad77a9dc1e0639</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect</span></td><td><code>f08672de0c46c906</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.1</span></td><td><code>c7a0ecb618c9e7e3</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.2</span></td><td><code>74fee4bf52b8f5b1</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.3</span></td><td><code>402da730ac679ee0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.4</span></td><td><code>627f50870d551a40</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.5</span></td><td><code>81c972db558320cf</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.Dialect.6</span></td><td><code>b816147ebe7de051</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect</span></td><td><code>96863a5ea105a02f</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.1</span></td><td><code>6aaea1975d487b05</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.3</span></td><td><code>54c5605251d36d07</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL81Dialect.4</span></td><td><code>d20471eb380d297e</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL82Dialect</span></td><td><code>f686f8e9606062ef</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQL82Dialect.1</span></td><td><code>6ab11b22e5fa1443</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.PostgreSQLDialect</span></td><td><code>51d01c75bf070a44</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.TypeNames</span></td><td><code>be98b02b03cd6294</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.CastFunction</span></td><td><code>fb55e9988c120433</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.NoArgSQLFunction</span></td><td><code>97f232d3ff3c8e0d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.PositionSubstringFunction</span></td><td><code>355e2fed1b585327</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.SQLFunctionRegistry</span></td><td><code>bd8c8fa0ed713329</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.SQLFunctionTemplate</span></td><td><code>6f3b8350514c5dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions</span></td><td><code>53f46af574278668</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.AvgFunction</span></td><td><code>d59318bde40f9030</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.CountFunction</span></td><td><code>37c419134b658d1d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.MaxFunction</span></td><td><code>b0478e30604c58d0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.MinFunction</span></td><td><code>22626ed71c8c999a</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions.SumFunction</span></td><td><code>6b4ab38daa4cbddf</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.StandardSQLFunction</span></td><td><code>a828c2ebf3261325</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.TemplateRenderer</span></td><td><code>bdfe4cf250c1298b</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.function.VarArgsSQLFunction</span></td><td><code>717f065fe44729c9</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.AbstractLimitHandler</span></td><td><code>90ba0ed7859b9ac0</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.LimitHandler</span></td><td><code>14e3f16fd30c8966</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.LimitHelper</span></td><td><code>8c19800888216706</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.pagination.NoopLimitHandler</span></td><td><code>b40fe8b336211b1d</code></td></tr><tr><td><span class="el_class">org.hibernate.dialect.unique.DefaultUniqueDelegate</span></td><td><code>b38929ec01b9775c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchStrategy</span></td><td><code>bba5e623770b6a9b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchStyle</span></td><td><code>2c0b415688be95c8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.FetchTiming</span></td><td><code>1d4146da910c612a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.OptimisticLockStyle</span></td><td><code>59bd0928374a91d1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.internal.ConfigurationServiceImpl</span></td><td><code>5df0e0d7feaf09f0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.internal.ConfigurationServiceInitiator</span></td><td><code>63f2df3291c07751</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters</span></td><td><code>3b5174d576a426a0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters.1</span></td><td><code>f2b8ca70848d5fe8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.config.spi.StandardConverters.2</span></td><td><code>40b80666890d0756</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry</span></td><td><code>00ecc9017e5961ee</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry.BooleanState</span></td><td><code>599cf7e686c2892c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.AbstractEntityEntry.EnumState</span></td><td><code>98eb5936522428c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Cascade</span></td><td><code>fd30787cd6c89ade</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.CascadePoint</span></td><td><code>221ed65c9ea73992</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Collections</span></td><td><code>4a389a314fe3a785</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext</span></td><td><code>069d9bc7cc67245a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext.EntityEntryCrossRefImpl</span></td><td><code>7bdb22597fad7023</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryContext.ManagedEntityImpl</span></td><td><code>84712ccbd7ee26c8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.EntityEntryExtraStateHolder</span></td><td><code>53339492ced4bd81</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ForeignKeys</span></td><td><code>07ada760bbf29f74</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ForeignKeys.Nullifier</span></td><td><code>405204ae9de14994</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.JoinHelper</span></td><td><code>f99135e5d18c9c9e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.JoinSequence</span></td><td><code>b600be740337b4b6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.ManagedTypeHelper</span></td><td><code>eabc0071608949f4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.MutableEntityEntry</span></td><td><code>6167630f8addeb38</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.MutableEntityEntryFactory</span></td><td><code>19aa0fe3fac3c381</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate</span></td><td><code>1f26e373f079f9f9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate.CachedNaturalId</span></td><td><code>83dcdc388c00eb8b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NaturalIdXrefDelegate.NaturalIdResolutionCache</span></td><td><code>ed162d95b1cafd52</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.NonNullableTransientDependencies</span></td><td><code>2437b86b21aaf0d3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Nullability</span></td><td><code>a09e201bffc2bcfa</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Nullability.NullabilityCheckType</span></td><td><code>e1397c20dd3552e9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.SessionEventListenerManagerImpl</span></td><td><code>7b89de4e6f144128</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.StatefulPersistenceContext</span></td><td><code>3a3dde0bf6ef07ea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.StatefulPersistenceContext.1</span></td><td><code>6831b6c0efcb65e5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.TwoPhaseLoad</span></td><td><code>660bbd9cb4bca560</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.TwoPhaseLoad.EntityResolver</span></td><td><code>a5453cec6d6264b5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.UnsavedValueFactory</span></td><td><code>6f196f1bfe79a335</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.internal.Versioning</span></td><td><code>fc9c5a30bdc965a6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.Size</span></td><td><code>1b00d2b83ba6eff3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.Size.LobMultiplier</span></td><td><code>d198da02f0e9096e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.AbstractBatchImpl</span></td><td><code>eedbc55a26f8e840</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BasicBatchKey</span></td><td><code>1573449982f95da2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BatchBuilderImpl</span></td><td><code>5d7cfe8928609568</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.BatchBuilderInitiator</span></td><td><code>6679d94ab1ff98b3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch</span></td><td><code>e38cc69d21a0e9d2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.batch.internal.SharedBatchBuildingCode</span></td><td><code>259c45051d328571</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.ConnectionProviderInitiator</span></td><td><code>27cc36bb4ada9ce2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl</span></td><td><code>d7561827d0ff4438</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.connections.internal.MultiTenantConnectionProviderInitiator</span></td><td><code>1f6e5739ea14f624</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.cursor.internal.RefCursorSupportInitiator</span></td><td><code>d55129cbef0ad86b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl</span></td><td><code>5ddd760de65724fd</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectFactoryInitiator</span></td><td><code>648ddaad0f5d3af1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectResolverInitiator</span></td><td><code>7b899f4a10ab701f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.DialectResolverSet</span></td><td><code>84b5ba45622d849f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.dialect.internal.StandardDialectResolver</span></td><td><code>11f18168666fd3cb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.ExtractedDatabaseMetaDataImpl</span></td><td><code>c4deb14d1e416687</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.ExtractedDatabaseMetaDataImpl.Builder</span></td><td><code>c703e5f672228382</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentImpl</span></td><td><code>c1623572e8e1f37b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator</span></td><td><code>d97bbead853f712a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.ConnectionProviderJdbcConnectionAccess</span></td><td><code>e8b5e96e9ebb9714</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl</span></td><td><code>bdeaa7450092de2a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl</span></td><td><code>97d58da4479e1f09</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl</span></td><td><code>25db46a4f7a6e363</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl.1</span></td><td><code>48be46e0f2657d1f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.internal.QualifiedObjectNameFormatterStandardImpl.SchemaNameFormat</span></td><td><code>fa11c0ca511c4141</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.AnsiSqlKeywords</span></td><td><code>76de9a8abcdf22a7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.IdentifierCaseStrategy</span></td><td><code>b41b67e1aeec51d1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.IdentifierHelperBuilder</span></td><td><code>ce385c05a1c39f4d</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.env.spi.NameQualifierSupport</span></td><td><code>6e4e253019da2ee9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.BasicFormatterImpl</span></td><td><code>dc0ba99c27938bc4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.DDLFormatterImpl</span></td><td><code>5e768604c0f88085</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.FormatStyle</span></td><td><code>d765d8b0b4f1a2f7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.FormatStyle.NoFormatImpl</span></td><td><code>3f0fabdc973393fb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.HighlightingFormatter</span></td><td><code>400074e497b2c9fe</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl</span></td><td><code>67ba6f17bc433b55</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcServicesImpl</span></td><td><code>4057a47fe44c3fae</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.JdbcServicesInitiator</span></td><td><code>7610801463f2147e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.ResultSetReturnImpl</span></td><td><code>376a90badbca9adc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.ResultSetWrapperImpl</span></td><td><code>d4aa6a07aa982e7a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl</span></td><td><code>944303ff88f51ebc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.1</span></td><td><code>5fc64f153012e481</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.5</span></td><td><code>eb910ad5a37bc7b2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.QueryStatementPreparationTemplate</span></td><td><code>6e7c644b5494a877</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.internal.StatementPreparerImpl.StatementPreparationTemplate</span></td><td><code>2dddf6820c72229c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.JdbcCoordinator</span></td><td><code>5d429ffa6052f42e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper</span></td><td><code>82975af4a4b45686</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.1</span></td><td><code>4cbc556e8695252c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.StandardWarningHandler</span></td><td><code>dce7d78790b9c0a3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlExceptionHelper.WarningHandlerLoggingSupport</span></td><td><code>f3902d8c74c6a581</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jdbc.spi.SqlStatementLogger</span></td><td><code>feb9105ea00b610e</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jndi.internal.JndiServiceImpl</span></td><td><code>d16009c7a02abbd1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.jndi.internal.JndiServiceInitiator</span></td><td><code>17a3b42c91acd839</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.CollectionLoadContext</span></td><td><code>fb6e854b1e2ae3a2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.LoadContexts</span></td><td><code>400638c956b63047</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.loading.internal.LoadingCollectionEntry</span></td><td><code>034217d9421c7fa2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.internal.NativeQueryInterpreterStandardImpl</span></td><td><code>29c88b4a59fa6f01</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.AbstractParameterDescriptor</span></td><td><code>8002739f45e2da21</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.HQLQueryPlan</span></td><td><code>2c5a2e3b0ef9625a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.NamedParameterDescriptor</span></td><td><code>c783970cde8a62c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.NativeQueryInterpreterInitiator</span></td><td><code>8a407440ea49b612</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.QueryPlanCache</span></td><td><code>82de37675480d97b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.QueryPlanCache.HQLQueryPlanKey</span></td><td><code>0c16a97ccb1a8504</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.query.spi.ReturnMetadata</span></td><td><code>b8ad3d9b403aaf2f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue</span></td><td><code>5932b54d0958a960</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.1</span></td><td><code>a0cfd08474f04511</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.2</span></td><td><code>be14ecd4d9d8660c</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.3</span></td><td><code>3969a45d0f834d66</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.4</span></td><td><code>6f0fa9a45a1da97b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.5</span></td><td><code>49b9074c336c46c0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.6</span></td><td><code>9f76ee92637ac0b3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.7</span></td><td><code>d9cd6574153ef348</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.8</span></td><td><code>9df92dfc80824fc1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.AbstractTransactionCompletionProcessQueue</span></td><td><code>6a09a7198d7fc4a9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.AfterTransactionCompletionProcessQueue</span></td><td><code>1d8d633faa5f93cc</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ActionQueue.ListProvider</span></td><td><code>97daccdc90f3b3c3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.BatchFetchQueue</span></td><td><code>d7e5b586d7a68003</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CacheInitiator</span></td><td><code>3a295ac02ac77ac4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CachedNaturalIdValueSource</span></td><td><code>181e0031bd230559</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles</span></td><td><code>b509b5581480bc48</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.1</span></td><td><code>c239cfdfb3b23b95</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.10</span></td><td><code>c66678275a4e64a0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.11</span></td><td><code>741b7175f97b7555</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.12</span></td><td><code>1d40f89245831807</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.2</span></td><td><code>9636cbf8b78d44a3</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.3</span></td><td><code>d721ee02d97f88f2</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.4</span></td><td><code>4cd77e978ddf94da</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.5</span></td><td><code>4923a7dec190ebf8</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.6</span></td><td><code>f9f8bda30c98dbea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.7</span></td><td><code>f3c58fa3769cb9bb</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.8</span></td><td><code>bd5a1067e5918478</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.9</span></td><td><code>e0661d582ca847c4</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.BaseCascadeStyle</span></td><td><code>9a5b26aac4888434</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadeStyles.MultipleCascadeStyle</span></td><td><code>c7e30d2085498f15</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions</span></td><td><code>95105322faef0e70</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.1</span></td><td><code>a2e38f694eb31d1b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.2</span></td><td><code>a777949cf6074fd7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.3</span></td><td><code>d213c6af6fbbf864</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.4</span></td><td><code>a87fb103366133df</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.5</span></td><td><code>5563dffd4ef31822</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.6</span></td><td><code>569eedfcfbbb6ea6</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.7</span></td><td><code>acdcddab29756fe7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.8</span></td><td><code>4e66b81c3f4f99cf</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.9</span></td><td><code>78d6509217777b24</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CascadingActions.BaseCascadingAction</span></td><td><code>12d2c0814cf5475b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CollectionEntry</span></td><td><code>5acfe9a095a03137</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.CollectionKey</span></td><td><code>02493013fb50fb3d</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.EffectiveEntityGraph</span></td><td><code>c9de2e52d61a06c0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.EntityKey</span></td><td><code>89b3304fcd7cb99a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ExecutableList</span></td><td><code>5258766df059f2c5</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle</span></td><td><code>0cd16ec75ad6bc00</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue</span></td><td><code>2268934b4cfac5ea</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.1</span></td><td><code>cc803dac33b23048</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.2</span></td><td><code>984357601abafeb7</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.3</span></td><td><code>9a893e8a42f90458</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.IdentifierValue.4</span></td><td><code>439fe9fe94b22ac0</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.LoadQueryInfluencers</span></td><td><code>2b024bdb372b6c7f</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.QueryParameters</span></td><td><code>8796d075c6734658</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.RowSelection</span></td><td><code>8e1539f157aef729</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.SessionFactoryImplementor</span></td><td><code>8eb28213bff45163</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.SharedSessionContractImplementor</span></td><td><code>c633ded9c2699046</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.Status</span></td><td><code>43f5bddbb561dc88</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.TypedValue</span></td><td><code>0486c70a239a0ff1</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.spi.TypedValue.1</span></td><td><code>96cb4d0e35ac2db9</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.internal.TransactionImpl</span></td><td><code>b048014cff388fde</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator</span></td><td><code>dc9980c9fce8862b</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformResolverInitiator</span></td><td><code>15f1bcc85384ea2a</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform</span></td><td><code>d8470e90dfe73b70</code></td></tr><tr><td><span class="el_class">org.hibernate.engine.transaction.spi.TransactionImplementor</span></td><td><code>2c5bab550221ab85</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractFlushingEventListener</span></td><td><code>0520b9616d07619b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractLockUpgradeEventListener</span></td><td><code>5486652230ce0599</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractReassociateEventListener</span></td><td><code>f1fe1aca5a653c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractSaveEventListener</span></td><td><code>a9d9fe96c3b85ff8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.AbstractVisitor</span></td><td><code>77cc6b17285201f8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultAutoFlushEventListener</span></td><td><code>cee7b19eed72aee0</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultDeleteEventListener</span></td><td><code>8cc87dc31554d1c7</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultDirtyCheckEventListener</span></td><td><code>03865b55960a8df4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultEvictEventListener</span></td><td><code>d498200679d8187e</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEntityEventListener</span></td><td><code>d07ed084d130e31a</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEntityEventListener.1DirtyCheckContextImpl</span></td><td><code>f3efa1194f0edb3b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultFlushEventListener</span></td><td><code>279abd3729382939</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultInitializeCollectionEventListener</span></td><td><code>5bae19b9e8f26570</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultLoadEventListener</span></td><td><code>49745f67570a7361</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultLockEventListener</span></td><td><code>41ae62080b2f4d75</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultMergeEventListener</span></td><td><code>b6209d692d31bc06</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultMergeEventListener.1</span></td><td><code>10a99cea4708f895</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistEventListener</span></td><td><code>5c02e40d5a18de15</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistEventListener.1</span></td><td><code>144d578ccb18c724</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPersistOnFlushEventListener</span></td><td><code>f1df3e9d47a46152</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPostLoadEventListener</span></td><td><code>505dedc6a398cb80</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultPreLoadEventListener</span></td><td><code>dfa884efee611467</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultRefreshEventListener</span></td><td><code>bf8cd0bc82bac398</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultReplicateEventListener</span></td><td><code>318dc8e1561cc372</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultResolveNaturalIdEventListener</span></td><td><code>9383de3c2f82c35c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultSaveEventListener</span></td><td><code>d55a789b8f3dad25</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultSaveOrUpdateEventListener</span></td><td><code>4b57600e3fb2a2e4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.DefaultUpdateEventListener</span></td><td><code>9ecaac7d8e02453f</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityCopyNotAllowedObserver</span></td><td><code>47102ea2d726e3a8</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityCopyObserverFactoryInitiator</span></td><td><code>e18b1abc2aa4f9af</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.EntityState</span></td><td><code>82ef224edb1cdab3</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.FlushVisitor</span></td><td><code>85c8d9da801b428f</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.MergeContext</span></td><td><code>2b206b710ca4c493</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostDeleteEventListenerStandardImpl</span></td><td><code>8cf88664729304db</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostInsertEventListenerStandardImpl</span></td><td><code>d60f13151a833d11</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.PostUpdateEventListenerStandardImpl</span></td><td><code>fd53f50c57560339</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.ProxyVisitor</span></td><td><code>d53c9b815b4b0a75</code></td></tr><tr><td><span class="el_class">org.hibernate.event.internal.WrapVisitor</span></td><td><code>47a4c37efb2507a4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerGroupImpl</span></td><td><code>35f03f3bf4e6e10a</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerGroupImpl.1</span></td><td><code>fd1c1962c6f35c92</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerRegistryImpl</span></td><td><code>87fcdbd13dfcbf2e</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.EventListenerRegistryImpl.Builder</span></td><td><code>a20306e1ab3df5f4</code></td></tr><tr><td><span class="el_class">org.hibernate.event.service.internal.PostCommitEventListenerGroupImpl</span></td><td><code>2be7c18e9f3da396</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractCollectionEvent</span></td><td><code>ff5bda593a08e606</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractEvent</span></td><td><code>0ee572d7b4848cf7</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AbstractPreDatabaseOperationEvent</span></td><td><code>ab6379a8779ff8ec</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.AutoFlushEvent</span></td><td><code>fdd359b4689c9c34</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.DeleteEvent</span></td><td><code>40edc4447297cefb</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventEngine</span></td><td><code>4af4c9530587c8a5</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventEngine.1</span></td><td><code>7bcddfc8ddd5e8ba</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventType</span></td><td><code>47fef3f8aa73c100</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.EventType.1</span></td><td><code>17b185c22dbbc574</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.FlushEntityEvent</span></td><td><code>59a9b408462cd9a2</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.FlushEvent</span></td><td><code>a495b39e81908ada</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.InitializeCollectionEvent</span></td><td><code>63cbc4b3fc99059c</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEvent</span></td><td><code>e6bf661be2cd5fab</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEvent.1</span></td><td><code>3f037052bf823392</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEventListener</span></td><td><code>c679e79bb48b7be1</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.LoadEventListener.LoadType</span></td><td><code>14b42af01788bde6</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.MergeEvent</span></td><td><code>acab7f502f3dc42b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PersistEvent</span></td><td><code>f8447ece660e0d25</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostDeleteEvent</span></td><td><code>033daadc8ddc16ee</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostInsertEvent</span></td><td><code>d60752eb1e4c670b</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostLoadEvent</span></td><td><code>5013cc2ed000393d</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PostUpdateEvent</span></td><td><code>b40f22e1e171fa57</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreDeleteEvent</span></td><td><code>8c9370214e401337</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreInsertEvent</span></td><td><code>b31ac68423543695</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreLoadEvent</span></td><td><code>a5abadb763c8e485</code></td></tr><tr><td><span class="el_class">org.hibernate.event.spi.PreUpdateEvent</span></td><td><code>36f026366781b3d8</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLExceptionTypeDelegate</span></td><td><code>21b4be6a9170fa7a</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConversionDelegate</span></td><td><code>77e0d3f6c623c750</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConverter</span></td><td><code>ffc1ab30ba7cabc8</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.SQLStateConverter.1</span></td><td><code>8b0b055ef002cbb2</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.internal.StandardSQLExceptionConverter</span></td><td><code>1d53d8a31c5825f7</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.spi.AbstractSQLExceptionConversionDelegate</span></td><td><code>2a43cf7b1e18b8fe</code></td></tr><tr><td><span class="el_class">org.hibernate.exception.spi.TemplatedViolatedConstraintNameExtracter</span></td><td><code>725457462c5ee502</code></td></tr><tr><td><span class="el_class">org.hibernate.graph.GraphSemantic</span></td><td><code>0f6757a823a9b164</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.CollectionProperties</span></td><td><code>7d4332c1fc50e2c0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.HolderInstantiator</span></td><td><code>86ef5095074716c8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.NameGenerator</span></td><td><code>85ac2c0a07aa9f7b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.QuerySplitter</span></td><td><code>ef2ce90cd4788e3d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.QueryTranslatorFactoryInitiator</span></td><td><code>9cf76b2aef1fce3f</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlBaseLexer</span></td><td><code>dc4be115e8f82604</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlBaseParser</span></td><td><code>5605a82cc9e1a030</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.HqlSqlBaseWalker</span></td><td><code>e30a4185197a8981</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.antlr.SqlGeneratorBase</span></td><td><code>5f86c4fdf2d4cf1a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory</span></td><td><code>ccdee33bcbf24425</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ErrorTracker</span></td><td><code>c7f3c60b2fb035a1</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlASTFactory</span></td><td><code>0bf73a401e599d4e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlLexer</span></td><td><code>42d9c19e630acdd5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlParser</span></td><td><code>cfb71f39732ed679</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlSqlWalker</span></td><td><code>a73967515002b259</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.HqlToken</span></td><td><code>5edc1546a4e7e5b6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.NamedParameterInformationImpl</span></td><td><code>1f63b3f6192523d4</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.ParameterTranslationsImpl</span></td><td><code>77b9117d45a858d6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.QueryTranslatorImpl</span></td><td><code>bdfe052a34055f5a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.QueryTranslatorImpl.JavaConstantConverter</span></td><td><code>3e7114b6427a8973</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlASTFactory</span></td><td><code>dc8590b54e51f07e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlGenerator</span></td><td><code>309601c57a37a00c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.SqlGenerator.DefaultWriter</span></td><td><code>0ec4e7f3bf7f7c12</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.exec.BasicExecutor</span></td><td><code>a93b5396710eb6e8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.exec.SimpleUpdateExecutor</span></td><td><code>51e66027cc19378c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractNullnessCheckNode</span></td><td><code>481d353c19e9b5a5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractRestrictableStatement</span></td><td><code>9db80caaa997f323</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractSelectExpression</span></td><td><code>b318cafde9d36ae3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.AbstractStatement</span></td><td><code>9f14cbea88606f34</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.BinaryLogicOperatorNode</span></td><td><code>b91205fbd5903883</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.CountNode</span></td><td><code>b6b9e4de262886d9</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode</span></td><td><code>437c76a3e44ae259</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode.1</span></td><td><code>9c3a74084c7ff976</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.DotNode.DereferenceType</span></td><td><code>2b6fa0b17136ecd6</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause</span></td><td><code>fc7c5fdeb8180873</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.1</span></td><td><code>1d1e1ba8466b251d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.2</span></td><td><code>5e0e6efdb1f3b873</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.3</span></td><td><code>5f189d7eec7d57ab</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromClause.4</span></td><td><code>0fac569ac9dc04f5</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElement</span></td><td><code>69d85129462eec24</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElementFactory</span></td><td><code>81a365b28f0c37b8</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromElementType</span></td><td><code>e3cbfbb0c8defa49</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.FromReferenceNode</span></td><td><code>d967b5e205f08b8b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.HqlSqlWalkerNode</span></td><td><code>572187f5af16e2d0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.IdentNode</span></td><td><code>9a71c724e089a88a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.InLogicOperatorNode</span></td><td><code>231e31c7c749e706</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.IsNullLogicOperatorNode</span></td><td><code>975793a06d7c7efe</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.JavaConstantNode</span></td><td><code>a916ca9e7cb94a42</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.LiteralNode</span></td><td><code>153e6a75195e605a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.Node</span></td><td><code>6cfb55d6d38c1097</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.OrderByClause</span></td><td><code>7bc00a2ce35a11cd</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.ParameterNode</span></td><td><code>5f2d11a124672013</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.QueryNode</span></td><td><code>8ae10741ddef6d64</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectClause</span></td><td><code>bd38d73c4f51681d</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectExpressionImpl</span></td><td><code>796b518cd98c7c05</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SelectExpressionList</span></td><td><code>8d1a62f10627bad3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SqlFragment</span></td><td><code>64e4a027d5a16c9b</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.SqlNode</span></td><td><code>9f475c6d5b015011</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.UnaryLogicOperatorNode</span></td><td><code>2fa2b353652b3252</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.tree.UpdateStatement</span></td><td><code>444d156218041233</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTAppender</span></td><td><code>a758cae376c8748e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTIterator</span></td><td><code>bb0586582c20738c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil</span></td><td><code>9d817e739e908a69</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil.CollectingNodeVisitor</span></td><td><code>0f87106f1cd9203a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ASTUtil.IncludePredicate</span></td><td><code>65934dc083225b22</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.AliasGenerator</span></td><td><code>e0315636ef47c606</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.ColumnHelper</span></td><td><code>c1f5b27aef23b2af</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.JoinProcessor</span></td><td><code>1dad65eaee98b14e</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.JoinProcessor.1</span></td><td><code>0edd62042187911c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor</span></td><td><code>b70806f0fe6c223c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat</span></td><td><code>1bbe3cfdcec95060</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat.1</span></td><td><code>192b82b309dd9239</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.LiteralProcessor.DecimalLiteralFormat.2</span></td><td><code>9553a8329d9564b3</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.NodeTraverser</span></td><td><code>620abd7e002e933c</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.SessionFactoryHelper</span></td><td><code>92e5ed8e008c05cf</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.ast.util.SyntheticAndFactory</span></td><td><code>f29f1a76577bfa71</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.internal.classic.ParserHelper</span></td><td><code>403fac495a0ebdad</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.AbstractMultiTableBulkIdStrategyImpl</span></td><td><code>e062975288aec111</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.IdTableHelper</span></td><td><code>730afc7b9f11ac5a</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.IdTableSupportStandardImpl</span></td><td><code>ec37f225216fb2a0</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.AfterUseAction</span></td><td><code>13962197138fdff4</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.LocalTemporaryTableBulkIdStrategy</span></td><td><code>7bf736467aa76dd9</code></td></tr><tr><td><span class="el_class">org.hibernate.hql.spi.id.local.PreparationContextImpl</span></td><td><code>449e9d58bcaa108f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGenerator</span></td><td><code>ed913cd95cb852cf</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper</span></td><td><code>c429ddded44fa640</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.1</span></td><td><code>5016747d03b3c58c</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.2</span></td><td><code>90966c387dd5f620</code></td></tr><tr><td><span class="el_class">org.hibernate.id.IdentifierGeneratorHelper.BasicHolder</span></td><td><code>9fb2966fda752bf4</code></td></tr><tr><td><span class="el_class">org.hibernate.id.SequenceMismatchStrategy</span></td><td><code>de060802390cd7e6</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.AbstractOptimizer</span></td><td><code>b9900ff8d80818df</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.NoopOptimizer</span></td><td><code>1fd3014d69b4528f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.OptimizerFactory</span></td><td><code>b7054dd78889d99f</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStructure</span></td><td><code>17ec99b7fa6f676d</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStructure.1</span></td><td><code>9a826010242a7f7c</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.SequenceStyleGenerator</span></td><td><code>5e2d8c1a63b5be04</code></td></tr><tr><td><span class="el_class">org.hibernate.id.enhanced.StandardOptimizerDescriptor</span></td><td><code>7fb5fed720b3b7a1</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory</span></td><td><code>52393a5a8830bc94</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.1</span></td><td><code>2f119eb7c655d9f5</code></td></tr><tr><td><span class="el_class">org.hibernate.id.factory.internal.MutableIdentifierGeneratorFactoryInitiator</span></td><td><code>8b4c8e8cd0ea9bbb</code></td></tr><tr><td><span class="el_class">org.hibernate.id.uuid.LocalObjectUuidHelper</span></td><td><code>9608e3da4d47ba4e</code></td></tr><tr><td><span class="el_class">org.hibernate.integrator.internal.IntegratorServiceImpl</span></td><td><code>24e62893209c57ee</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.AbstractSessionImpl</span></td><td><code>fa4a1eba48ad8d80</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.AbstractSharedSessionContract</span></td><td><code>e023a566ccc5171d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ConnectionObserverStatsBridge</span></td><td><code>15a3527ba8f8f958</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoordinatingEntityNameResolver</span></td><td><code>67a2f584696df5f7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoreLogging</span></td><td><code>e749b828dea3047b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.CoreMessageLogger_.logger</span></td><td><code>9d9d1607f3026b0c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.DynamicFilterAliasGenerator</span></td><td><code>cde3c6ad65df1d18</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.EntityManagerMessageLogger_.logger</span></td><td><code>3176a526d6863db5</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ExceptionConverterImpl</span></td><td><code>ab2af6b893b11f7a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.ExceptionMapperStandardImpl</span></td><td><code>0f4dd123f9e9df08</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.FastSessionServices</span></td><td><code>03d80541c479c078</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.FilterHelper</span></td><td><code>43bc6068c71264cc</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.HEMLogging</span></td><td><code>177e757375940e81</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.JdbcObserverImpl</span></td><td><code>939cd09a4a6f834b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.JdbcSessionContextImpl</span></td><td><code>fff1c746e1a7d9cf</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.NonContextualJdbcConnectionAccess</span></td><td><code>ff209789b80bbde0</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl</span></td><td><code>f33c1bf3a90c374a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.1IntegratorObserver</span></td><td><code>7929b5ddbde00718</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.SessionBuilderImpl</span></td><td><code>ac1a770d7211d7d9</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.StatelessSessionBuilderImpl</span></td><td><code>665b5338efe80fcc</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryImpl.Status</span></td><td><code>f897cc87182c7f23</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryObserverChain</span></td><td><code>f1dcb3dcf6f13ac5</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryRegistry</span></td><td><code>db4f594ecee7c31c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionFactoryRegistry.1</span></td><td><code>e719ad2757c2177d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionImpl</span></td><td><code>4eb9f395a1cc6a2b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionImpl.IdentifierLoadAccessImpl</span></td><td><code>520d44da16f83876</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.SessionOwnerBehavior</span></td><td><code>d2412eea3a112c60</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.StaticFilterAliasGenerator</span></td><td><code>5b7e80e4ebbe525b</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.TypeLocatorImpl</span></td><td><code>0d0a1c2205192641</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ConfigHelper</span></td><td><code>f3e0e71980947ce4</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.MarkerObject</span></td><td><code>573f3e5efdfbef4d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.NullnessHelper</span></td><td><code>fee4777c777572c2</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ReflectHelper</span></td><td><code>e07469fda314c538</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.StringHelper</span></td><td><code>563b59dfe64b8347</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ValueHolder</span></td><td><code>140506d0db7179c3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.ValueHolder.1</span></td><td><code>288363716af18f88</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.ArrayHelper</span></td><td><code>a88d1ffcfe563995</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap</span></td><td><code>3edd49390e24ecb2</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction</span></td><td><code>d6a2eaddfa68e8ea</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.1</span></td><td><code>f4f0a725cbfb9fb6</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.2</span></td><td><code>ce70a09c9e025cf3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Eviction.3</span></td><td><code>a3bfaba6a12a3933</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.HashEntry</span></td><td><code>fa52da3729ba6d7a</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LIRS</span></td><td><code>7e55eca255a4c0a3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LIRSHashEntry</span></td><td><code>10afa7ce63bb0ab3</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.LRU</span></td><td><code>1250bc2ab37e1a91</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.NullEvictionListener</span></td><td><code>cbf27c7a5c68de21</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Recency</span></td><td><code>fce1285a5a6c38ff</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.BoundedConcurrentHashMap.Segment</span></td><td><code>6ae04ca34e44e72c</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.CollectionHelper</span></td><td><code>311105564cdb6035</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap</span></td><td><code>470abb2d3ac5b1eb</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap.IdentityKey</span></td><td><code>17ee630385e63d12</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentityMap.IdentityMapEntry</span></td><td><code>18d181dd06fb7a07</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.IdentitySet</span></td><td><code>a4211eb7738363c7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.JoinedIterator</span></td><td><code>31998cde83f3c216</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.LazyIndexedMap</span></td><td><code>ad926e2c651b887d</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.LockModeEnumMap</span></td><td><code>b22b11fbe2d9ded8</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.SingletonIterator</span></td><td><code>7f63bcd1b83372a7</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.collections.StandardStack</span></td><td><code>ed34ee915ccc7ceb</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.compare.ComparableComparator</span></td><td><code>f7eb7fc83e973dc4</code></td></tr><tr><td><span class="el_class">org.hibernate.internal.util.config.ConfigurationHelper</span></td><td><code>ae5a5c06a983bde3</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations</span></td><td><code>f4c909055bf81dce</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.1</span></td><td><code>6c80093e66da489f</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.BasicExpectation</span></td><td><code>bb3eee74a905b0ac</code></td></tr><tr><td><span class="el_class">org.hibernate.jdbc.Expectations.BasicParamExpectation</span></td><td><code>a2abcfcfb79dae00</code></td></tr><tr><td><span class="el_class">org.hibernate.jmx.internal.DisabledJmxServiceImpl</span></td><td><code>d40896a82f929071</code></td></tr><tr><td><span class="el_class">org.hibernate.jmx.internal.JmxServiceInitiator</span></td><td><code>332cd7e744044d42</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.HibernatePersistenceProvider</span></td><td><code>297fc8541d7c44d8</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.HibernatePersistenceProvider.1</span></td><td><code>1f1cd0822f2b961a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl</span></td><td><code>9350565c85bfb39a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.JpaEntityNotFoundDelegate</span></td><td><code>d391ac8ca8dc7693</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.MergedSettings</span></td><td><code>4e5a81d85fce2766</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.ServiceRegistryCloser</span></td><td><code>34c1acae3893db6c</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.PersistenceUnitInfoDescriptor</span></td><td><code>1e0f3e3b7f3e596a</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl</span></td><td><code>4430d9134e16e554</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbackDefinitionResolverLegacyImpl</span></td><td><code>7f3dddedba057f3f</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbackRegistryImpl</span></td><td><code>9bd972559fc44ac3</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.internal.CallbacksFactory</span></td><td><code>b2c80b862e89ffe8</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.event.spi.CallbackType</span></td><td><code>e62aaddcfc73e6da</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.JpaComplianceImpl</span></td><td><code>9e360af37b6c3edd</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.JpaComplianceImpl.JpaComplianceBuilder</span></td><td><code>8a3c20d9bca032c2</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.MutableJpaComplianceImpl</span></td><td><code>73822a9908d6ff74</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.PersistenceUnitUtilImpl</span></td><td><code>e5077b29256eba0f</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.CacheModeHelper</span></td><td><code>1912f7b07b9d637e</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.CacheModeHelper.1</span></td><td><code>0c7ea066070723ea</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.ConfigurationHelper</span></td><td><code>8e7ec512e5b6a147</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.LockOptionsHelper</span></td><td><code>e4f59af7168bda2d</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.LogHelper</span></td><td><code>dfe82e7520f0b287</code></td></tr><tr><td><span class="el_class">org.hibernate.jpa.internal.util.PersistenceUtilHelper.MetadataCache</span></td><td><code>3e7da6b09c3290a7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.AbstractEntityJoinWalker</span></td><td><code>bb862cf8f1e0b294</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.BasicLoader</span></td><td><code>906b21baaa90b3c5</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.BatchFetchStyle</span></td><td><code>8054d20182b6251c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.DefaultEntityAliases</span></td><td><code>9a9a471797f6aabc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.GeneratedCollectionAliases</span></td><td><code>86aeb56d9c12b84d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker</span></td><td><code>ae9aadfc4c73c4c0</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationInitCallback</span></td><td><code>98249a2c6c78684e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationInitCallback.1</span></td><td><code>e1c80f123259f54c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.JoinWalker.AssociationKey</span></td><td><code>4c9a973b45786d94</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.Loader</span></td><td><code>7d7b985422330dd8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.Loader.SqlStatementWrapper</span></td><td><code>832d03bcc5b87e77</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.OuterJoinLoader</span></td><td><code>ee7f2c570267e26b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.OuterJoinableAssociation</span></td><td><code>40771fbd16fb1e03</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.PropertyPath</span></td><td><code>01f71674cc0fbe5c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.BatchingCollectionInitializerBuilder</span></td><td><code>a042b3f888c9bb63</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.BatchingCollectionInitializerBuilder.1</span></td><td><code>0b7c037304b5a11e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.AbstractBatchingCollectionInitializerBuilder</span></td><td><code>453632489824a7a2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer</span></td><td><code>469ed6a8db524279</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.CollectionLoader</span></td><td><code>1e19d22b4d3dde60</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.CollectionLoader.Builder</span></td><td><code>6fbb5b6ce05dd3ae</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder</span></td><td><code>0b4aa5c1e1c24a8c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.AbstractEntityLoader</span></td><td><code>6e3bd1c749be4742</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.BatchingEntityLoaderBuilder</span></td><td><code>1b987dddcab42237</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.BatchingEntityLoaderBuilder.1</span></td><td><code>3cc739b3148d280d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper</span></td><td><code>cc6037d1ca75ff85</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper.EntityStatus</span></td><td><code>4293425b2d40ff3d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CacheEntityLoaderHelper.PersistenceContextEntry</span></td><td><code>3df7e1b34322a44f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CascadeEntityJoinWalker</span></td><td><code>20e906bafc6a6294</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.CascadeEntityLoader</span></td><td><code>0651b421c66cd722</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityJoinWalker</span></td><td><code>15b305e9afe768f9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityJoinWalker.AssociationInitCallbackImpl</span></td><td><code>d9e7a3f0e61723ae</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.EntityLoader</span></td><td><code>a3aa14ce665c1966</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.NaturalIdEntityJoinWalker</span></td><td><code>253dacb372014907</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.NaturalIdType</span></td><td><code>da3c9d45342717c6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.AbstractBatchingEntityLoaderBuilder</span></td><td><code>34b717239461adf1</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.AbstractLoadPlanBasedEntityLoader</span></td><td><code>d32dd862e3654941</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.EntityLoader</span></td><td><code>b81a55ac2d7b094b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.EntityLoader.Builder</span></td><td><code>ce9c8bd0dbe4e4b7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.entity.plan.LegacyBatchingEntityLoaderBuilder</span></td><td><code>fb6888184a6a430c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.hql.QueryLoader</span></td><td><code>37052d4ea93f8ad8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.internal.AliasConstantsHelper</span></td><td><code>c25663bd71b752ff</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.AbstractLoadPlanBuildingAssociationVisitationStrategy</span></td><td><code>e10cfc7ec2b6dd44</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.AbstractLoadPlanBuildingAssociationVisitationStrategy.PropertyPathStack</span></td><td><code>8b5e9783ad00ee75</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.FetchStyleLoadPlanBuildingAssociationVisitationStrategy</span></td><td><code>b12bc8d261e648a9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.LoadPlanImpl</span></td><td><code>fe54c617343ac7ac</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractCollectionReference</span></td><td><code>14b7c043531f6d8a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractEntityReference</span></td><td><code>c8cf9f1801f83c67</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.AbstractExpandingFetchSource</span></td><td><code>1976b5dd831ad104</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.BidirectionalEntityReferenceImpl</span></td><td><code>e7d3095388246c74</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionAttributeFetchImpl</span></td><td><code>cd110414c6cd4fc8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionFetchableElementEntityGraph</span></td><td><code>636c9385febd004f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.CollectionReturnImpl</span></td><td><code>3dd6c7fc6d72640d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.EntityAttributeFetchImpl</span></td><td><code>c42dd47ab296e35c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.EntityReturnImpl</span></td><td><code>27adb0feeac6c939</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.returns.SimpleEntityIdentifierDescriptionImpl</span></td><td><code>70c1fe036ecb510d</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.AbstractExpandingSourceQuerySpace</span></td><td><code>2d51a33836d6e82c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.AbstractQuerySpace</span></td><td><code>37b5315211bfd4fc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.CollectionQuerySpaceImpl</span></td><td><code>1ef6abb8b0b292f8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.EntityQuerySpaceImpl</span></td><td><code>569cad0485a7fc40</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.JoinHelper</span></td><td><code>eafe9a293d886320</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.JoinImpl</span></td><td><code>254c1855b903c8a4</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.QuerySpaceHelper</span></td><td><code>707ce22b124ba533</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.internal.spaces.QuerySpacesImpl</span></td><td><code>2e9b87825a59105f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.spi.LoadPlanTreePrinter</span></td><td><code>9777c3e92c6b62d7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.build.spi.MetamodelDrivenLoadPlanBuilder</span></td><td><code>5723682cba9539b2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails</span></td><td><code>c3cf55a116830f42</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails.CollectionLoaderReaderCollectorImpl</span></td><td><code>56f4e858d917f8f6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails.CollectionLoaderRowReader</span></td><td><code>0f460b038a513bd6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader</span></td><td><code>a93a8b180097e68b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.1</span></td><td><code>c76cc1bb7a5d81a3</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.SqlStatementWrapper</span></td><td><code>aaf6442202548166</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadQueryDetails</span></td><td><code>69d4406d4849463a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AbstractLoadQueryDetails.ReaderCollectorImpl</span></td><td><code>f8a0910ade5fe56c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.AliasResolutionContextImpl</span></td><td><code>a9d529facff3ab0b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.BasicCollectionLoadQueryDetails</span></td><td><code>8dbbcfffbf1caa0b</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.BatchingLoadQueryDetailsFactory</span></td><td><code>f08a18802b8127f7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.CollectionReferenceAliasesImpl</span></td><td><code>a78bda0bfcc5a8dc</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails</span></td><td><code>259e2238b071dab7</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails.EntityLoaderReaderCollectorImpl</span></td><td><code>5555480c97639a5f</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails.EntityLoaderRowReader</span></td><td><code>74f4c002139b41b8</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.EntityReferenceAliasesImpl</span></td><td><code>26de6cf9895c5c45</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.LoadQueryJoinAndFetchProcessor</span></td><td><code>95537782b0e29a46</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.LoadQueryJoinAndFetchProcessor.FetchStatsImpl</span></td><td><code>6936608e76447578</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.OneToManyLoadQueryDetails</span></td><td><code>3e9e0a125bb90206</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.internal.RootHelper</span></td><td><code>960e8fc9db4eead6</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.AbstractRowReader</span></td><td><code>52bda77c9581f9be</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl</span></td><td><code>e8367ad3ac5f80b9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.CollectionReturnReader</span></td><td><code>be261d7d8bd286b9</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.EntityReferenceInitializerImpl</span></td><td><code>9a45e4456f7854c2</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.EntityReturnReader</span></td><td><code>01489c6ffe63d87a</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.HydratedEntityRegistration</span></td><td><code>23307607b34326a0</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessingContextImpl</span></td><td><code>e69d8ea1af4b2961</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessingContextImpl.1</span></td><td><code>a75be217da5a057e</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl</span></td><td><code>51af0cfb01539b77</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.process.spi.ResultSetProcessorResolver</span></td><td><code>6ccbdfb5242ce558</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.query.internal.QueryBuildingParametersImpl</span></td><td><code>ef6dfc445e4184d4</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.exec.query.internal.SelectStatementBuilder</span></td><td><code>94b14c901382138c</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.spi.LoadPlan.Disposition</span></td><td><code>55c2578ec9b7d1d5</code></td></tr><tr><td><span class="el_class">org.hibernate.loader.plan.spi.QuerySpace.Disposition</span></td><td><code>ff1f17c10d282a1a</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Bag</span></td><td><code>9630463bad777835</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Collection</span></td><td><code>a7dd9ce30b751398</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Column</span></td><td><code>252a9471da1b6227</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Constraint</span></td><td><code>0803d79558484617</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.DependantValue</span></td><td><code>7d0b340f4e255aee</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ForeignKey</span></td><td><code>df43ae4fdca749d5</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ManyToOne</span></td><td><code>35d0f895f4fbcd4c</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.MappedSuperclass</span></td><td><code>a1e6fbe2f19dd0cd</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.OneToMany</span></td><td><code>31927f930343935e</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.PersistentClass</span></td><td><code>11023972997d9973</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.PrimaryKey</span></td><td><code>e09c364da24f4cf6</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Property</span></td><td><code>f6ca185f80877b24</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.RootClass</span></td><td><code>b0a2aab12531f818</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Set</span></td><td><code>bf557b79210e7fcd</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.SimpleValue</span></td><td><code>8727cf622b7c34b7</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.SimpleValue.ParameterTypeImpl</span></td><td><code>6224bc02c7cacafb</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Table</span></td><td><code>90a784b04d089d73</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.Table.ForeignKeyKey</span></td><td><code>1ed0b651433f2c72</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.ToOne</span></td><td><code>99434fd76546ad4e</code></td></tr><tr><td><span class="el_class">org.hibernate.mapping.UniqueKey</span></td><td><code>1271db20f3a4faed</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory</span></td><td><code>32256593015ffe4a</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.1</span></td><td><code>9b280464cf14ac64</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.2</span></td><td><code>f8fd4f9d2e466088</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.3</span></td><td><code>86b79b5c25838e57</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.4</span></td><td><code>bcc3f8e5c5df1fda</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.5</span></td><td><code>cf524319dc898b15</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.6</span></td><td><code>d4fff8de4fae58a9</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.7</span></td><td><code>84d83123d41a9d3f</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.BaseAttributeMetadata</span></td><td><code>cac7889b9f969fed</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.PluralAttributeMetadataImpl</span></td><td><code>1a5e357d9ed4d2f7</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.PluralAttributeMetadataImpl.1</span></td><td><code>6308a3bf387f9430</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.SingularAttributeMetadataImpl</span></td><td><code>78649ffe76a1d690</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.SingularAttributeMetadataImpl.1</span></td><td><code>44fa673835c4e501</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.AttributeFactory.ValueContext.ValueClassification</span></td><td><code>52ac285a88c42456</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.JpaMetaModelPopulationSetting</span></td><td><code>5767fa2ab9b6f959</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.JpaStaticMetaModelPopulationSetting</span></td><td><code>aaf978e660c97f46</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetadataContext</span></td><td><code>b899393ec1377d52</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetamodelImpl</span></td><td><code>ce112b219ec7f993</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.internal.MetamodelImpl.1</span></td><td><code>4af8f4f3ff931283</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.convert.internal.NamedEnumValueConverter</span></td><td><code>14dd7aa0f05d2fb9</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.NavigableRole</span></td><td><code>22d214df51af7286</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractAttribute</span></td><td><code>35e0528f71230190</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractIdentifiableType</span></td><td><code>8e5297b2ed3839db</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractIdentifiableType.InFlightAccessImpl</span></td><td><code>3abd184d3198c236</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType</span></td><td><code>f728310a28deb442</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType.1</span></td><td><code>be10fd3ed22227a3</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractManagedType.InFlightAccessImpl</span></td><td><code>ecee9179614710b2</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractPluralAttribute</span></td><td><code>d90c108b3487b60f</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.AbstractType</span></td><td><code>bf3c90b7ee88b4be</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.BasicTypeImpl</span></td><td><code>e830ce0fa6b41578</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.EntityTypeImpl</span></td><td><code>4ceb3f8603b60bfc</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.ListAttributeImpl</span></td><td><code>c3754b032eb7872c</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.MappedSuperclassTypeImpl</span></td><td><code>ee822fd62ed42367</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.PluralAttributeBuilder</span></td><td><code>67f608aff58d06be</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SetAttributeImpl</span></td><td><code>641164d155cdfc24</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl</span></td><td><code>1e8f08ff292427b4</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl.DelayedKeyTypeAccess</span></td><td><code>805c71622543d67d</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.internal.SingularAttributeImpl.Identifier</span></td><td><code>96d9593f7a31b4f7</code></td></tr><tr><td><span class="el_class">org.hibernate.metamodel.model.domain.spi.SingularPersistentAttribute</span></td><td><code>8e24766b0532d353</code></td></tr><tr><td><span class="el_class">org.hibernate.param.AbstractExplicitParameterSpecification</span></td><td><code>297c419b58661b52</code></td></tr><tr><td><span class="el_class">org.hibernate.param.NamedParameterSpecification</span></td><td><code>e1b966280d93c1fa</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.AbstractCollectionPersister</span></td><td><code>ef3a2f0dd549ee88</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.AbstractCollectionPersister.2</span></td><td><code>d5d118af3e586a44</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.BasicCollectionPersister</span></td><td><code>f80f90183fc227f8</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.collection.OneToManyPersister</span></td><td><code>37aeb1024d84fbf1</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister</span></td><td><code>0164a6080a6ace5a</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister.3</span></td><td><code>27970aeda7f7421d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractEntityPersister.NoopCacheEntryHelper</span></td><td><code>a0956e9c81e73fd4</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.AbstractPropertyMapping</span></td><td><code>8a78ded881f6666b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.BasicEntityPropertyMapping</span></td><td><code>587e811c0f52e5df</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.EntityLoaderLazyCollection</span></td><td><code>dce606ee9e52e7b3</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.Loadable</span></td><td><code>1b3c997fcbb87f09</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.Queryable.Declarer</span></td><td><code>2013a679a78b1114</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.entity.SingleTableEntityPersister</span></td><td><code>c1220dc7bdb4bf3d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterClassResolverInitiator</span></td><td><code>dc8846937d820308</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterFactoryImpl</span></td><td><code>3a51a44b1646080d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.PersisterFactoryInitiator</span></td><td><code>989fb5a5acd19b9d</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.internal.StandardPersisterClassResolver</span></td><td><code>7333e52a7d046642</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper</span></td><td><code>4d59534faec10bcd</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper.1</span></td><td><code>60b8995dbda64e72</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.EntityIdentifierDefinitionHelper.AttributeDefinitionAdapter</span></td><td><code>f8888fe1020ec8af</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.FetchStrategyHelper</span></td><td><code>0914c129912abe4f</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.internal.FetchStrategyHelper.1</span></td><td><code>f1f70be34a932ab7</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.AssociationAttributeDefinition.AssociationNature</span></td><td><code>a1587c98dacdfc4b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.AssociationKey</span></td><td><code>b41187e40562088b</code></td></tr><tr><td><span class="el_class">org.hibernate.persister.walking.spi.MetamodelGraphWalker</span></td><td><code>73f410fc0c997de8</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessFieldImpl</span></td><td><code>c877bfaaf671b5e8</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBackRefImpl</span></td><td><code>338fef6caf49a83c</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBackRefImpl.1</span></td><td><code>9921828ec9ee06fe</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyBasicImpl</span></td><td><code>e73fae6240d80047</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyEmbeddedImpl</span></td><td><code>743ff18eed3af8f2</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyFieldImpl</span></td><td><code>c018f9c4b01cf77a</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyMapImpl</span></td><td><code>dcaa399da12f6546</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyMixedImpl</span></td><td><code>cb0fd17a6effa5a5</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyNoopImpl</span></td><td><code>7ce1fc9658cb59c7</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyResolverInitiator</span></td><td><code>a9444ca1482590aa</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.internal.PropertyAccessStrategyResolverStandardImpl</span></td><td><code>fd7ca75c1cd74f50</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.BuiltInPropertyAccessStrategies</span></td><td><code>73001408c2e374ea</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.GetterFieldImpl</span></td><td><code>3690dc81b8279e20</code></td></tr><tr><td><span class="el_class">org.hibernate.property.access.spi.SetterFieldImpl</span></td><td><code>b757016b632a8061</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.ProxyFactoryHelper</span></td><td><code>391b894aaf78fa5b</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.bytebuddy.ByteBuddyProxyFactory</span></td><td><code>68a666fd7a92a929</code></td></tr><tr><td><span class="el_class">org.hibernate.proxy.pojo.bytebuddy.ByteBuddyProxyHelper</span></td><td><code>9871a05837293e75</code></td></tr><tr><td><span class="el_class">org.hibernate.query.ImmutableEntityUpdateQueryHandlingMode</span></td><td><code>11333590ec50f6ac</code></td></tr><tr><td><span class="el_class">org.hibernate.query.Query</span></td><td><code>ef48e64e72092455</code></td></tr><tr><td><span class="el_class">org.hibernate.query.Query.1</span></td><td><code>03189b53ba18052f</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.LiteralHandlingMode</span></td><td><code>d70e9602e2361037</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.AbstractNode</span></td><td><code>7d5e23d0e586aa5b</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaBuilderImpl</span></td><td><code>8b782ba3900a879e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl</span></td><td><code>be11ab9e9f659b62</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1</span></td><td><code>750df3908f598f0e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1.1</span></td><td><code>ad65d6b5a06598ef</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.CriteriaQueryImpl.1.1.1</span></td><td><code>d428aea7b4a7513f</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.OrderImpl</span></td><td><code>db0c5f7c0e1ae6de</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.QueryStructure</span></td><td><code>400519d8678c682d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler</span></td><td><code>4073d59dd33e9b3d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler.1</span></td><td><code>1166a4921af9c6e5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaCompiler.2</span></td><td><code>322f712b87f74a1b</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.CriteriaQueryTypeQueryAdapter</span></td><td><code>6570e374153619db</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.compile.ExplicitParameterInfo</span></td><td><code>94a61e4879fb76f6</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.AbstractTupleElement</span></td><td><code>8632358d786a6431</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.ExpressionImpl</span></td><td><code>bc38ea2a397cce3d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.ParameterExpressionImpl</span></td><td><code>cdf8599b3d4741c5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.PathTypeExpression</span></td><td><code>522372b1629fbbbe</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.SelectionImpl</span></td><td><code>cb9f295e1121c0fe</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.AggregationFunction</span></td><td><code>7f158dc1a718abcd</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.AggregationFunction.COUNT</span></td><td><code>52f974f43c27e014</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.BasicFunctionExpression</span></td><td><code>d0e79ca58eb0edca</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.expression.function.ParameterizedFunctionExpression</span></td><td><code>695a94602ec0d560</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractFromImpl</span></td><td><code>23eda01629038fe5</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractFromImpl.BasicJoinScope</span></td><td><code>91d4388ea44d440c</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.AbstractPathImpl</span></td><td><code>77b8066061e55054</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.RootImpl</span></td><td><code>3225d877a0a3f7cf</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.path.SingularAttributePath</span></td><td><code>462282e66423051a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.AbstractPredicateImpl</span></td><td><code>29fbee54f1a8bb46</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.AbstractSimplePredicate</span></td><td><code>52d866572f25d60a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.BooleanAssertionPredicate</span></td><td><code>dedee54811c24e45</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate</span></td><td><code>1ed13d1b86424b03</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator</span></td><td><code>f8b2b4e1e07b46d1</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.1</span></td><td><code>27892781ed710978</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.2</span></td><td><code>5131243479e0e9ea</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.3</span></td><td><code>9ccd72497a665a89</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.4</span></td><td><code>9f57f52d70a4244e</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.5</span></td><td><code>75bbe204f45a500d</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.ComparisonPredicate.ComparisonOperator.6</span></td><td><code>6370068e4e5e9dbb</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.CompoundPredicate</span></td><td><code>e851cea853343bb8</code></td></tr><tr><td><span class="el_class">org.hibernate.query.criteria.internal.predicate.InPredicate</span></td><td><code>10ea78ea084278b3</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.AbstractProducedQuery</span></td><td><code>30bc8315a9776401</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.ParameterMetadataImpl</span></td><td><code>fa22c31c2cc03202</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryImpl</span></td><td><code>d2e6e145e0a19be0</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterBindingImpl</span></td><td><code>ade62cbcf6de3c88</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterBindingsImpl</span></td><td><code>5ed735ab7c957103</code></td></tr><tr><td><span class="el_class">org.hibernate.query.internal.QueryParameterListBindingImpl</span></td><td><code>26305a5c8b4057ae</code></td></tr><tr><td><span class="el_class">org.hibernate.query.spi.NamedQueryRepository</span></td><td><code>08a50392ec680c3a</code></td></tr><tr><td><span class="el_class">org.hibernate.query.spi.QueryParameterBindingValidator</span></td><td><code>766d206fbde3dfcd</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.internal.FallbackBeanInstanceProducer</span></td><td><code>4a3f9f6395402d49</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.internal.ManagedBeanRegistryImpl</span></td><td><code>06a7089e6b07426c</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.beans.spi.ManagedBeanRegistryInitiator</span></td><td><code>bfb662ed629edf48</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.AbstractLogicalConnectionImplementor</span></td><td><code>ca1b67c739f9f93a</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.LogicalConnectionManagedImpl</span></td><td><code>a09036d0c8f64794</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.internal.ResourceRegistryStandardImpl</span></td><td><code>8be1e2786241fe04</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode</span></td><td><code>da8c5da690ea7cb0</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl</span></td><td><code>c31032ddc3bd5bb5</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl</span></td><td><code>3dfe71bc8bc40ee2</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl.TransactionDriverControlImpl</span></td><td><code>77c7d67cefdc5709</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.internal.SynchronizationRegistryStandardImpl</span></td><td><code>b2009d0295675f5b</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.internal.TransactionCoordinatorBuilderInitiator</span></td><td><code>9a71df8014ed41e8</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinator</span></td><td><code>8fd0f66af5e380fc</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinator.TransactionDriver</span></td><td><code>b194ee1a53ced502</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionCoordinatorOwner</span></td><td><code>1babc0463df5bc10</code></td></tr><tr><td><span class="el_class">org.hibernate.resource.transaction.spi.TransactionStatus</span></td><td><code>b88079b27cc11d85</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.internal.DisabledJaccServiceImpl</span></td><td><code>bfaf63d7647b70f8</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.spi.JaccIntegrator</span></td><td><code>a0c020ee9e502aff</code></td></tr><tr><td><span class="el_class">org.hibernate.secure.spi.JaccIntegrator.1</span></td><td><code>6a3ab2bba01227e9</code></td></tr><tr><td><span class="el_class">org.hibernate.service.StandardServiceInitiators</span></td><td><code>738b361ef9b9bb99</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.AbstractServiceRegistryImpl</span></td><td><code>5af76be487ea40f8</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.ProvidedService</span></td><td><code>54c39b8a11312627</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryBuilderImpl</span></td><td><code>8e45e1c21b909000</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryImpl</span></td><td><code>83c4b07b29af6c0b</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryInitiator</span></td><td><code>ae8547062be42bde</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.SessionFactoryServiceRegistryImpl</span></td><td><code>f587aeb451f0aeb0</code></td></tr><tr><td><span class="el_class">org.hibernate.service.internal.StandardSessionFactoryServiceInitiators</span></td><td><code>8fd791cc0a856065</code></td></tr><tr><td><span class="el_class">org.hibernate.service.spi.ServiceBinding</span></td><td><code>40f1e510c86063fa</code></td></tr><tr><td><span class="el_class">org.hibernate.service.spi.SessionFactoryServiceInitiator</span></td><td><code>50dc3d6f28afee83</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ANSIJoinFragment</span></td><td><code>644987b36864ccf6</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ANSIJoinFragment.1</span></td><td><code>e4474e7f07883ca2</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Alias</span></td><td><code>8776b86928754e4f</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Delete</span></td><td><code>fe498507f2820bc3</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ForUpdateFragment</span></td><td><code>94ffefab3820e8b5</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.InFragment</span></td><td><code>0afa3e7085dd4492</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Insert</span></td><td><code>33f8469eaf50f148</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.JoinFragment</span></td><td><code>f3add476e71ca769</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.JoinType</span></td><td><code>0b9fb9e2f9ffc557</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.QueryJoinFragment</span></td><td><code>53f9fce8c76f085c</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Select</span></td><td><code>0cf0c86d46612d52</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.SelectFragment</span></td><td><code>0c9065271b3d9986</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.SimpleSelect</span></td><td><code>8f5fae88d0b6f898</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.Update</span></td><td><code>7c61dcf5ddc7afab</code></td></tr><tr><td><span class="el_class">org.hibernate.sql.ast.Clause</span></td><td><code>a9ddfa6b493ae025</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatisticsImpl</span></td><td><code>df440a15627ed6db</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatisticsInitiator</span></td><td><code>db19216294cd8ebe</code></td></tr><tr><td><span class="el_class">org.hibernate.stat.internal.StatsNamedContainer</span></td><td><code>8d0851b35e6e153a</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.hbm2ddl.ImportSqlCommandExtractorInitiator</span></td><td><code>91e8b98bdde9ed4d</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.hbm2ddl.SingleLineSqlCommandExtractor</span></td><td><code>c641c7d1abd46764</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.Action</span></td><td><code>85149e54c2fea5cf</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.SchemaManagementToolInitiator</span></td><td><code>2113d40196b0f5bd</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardAuxiliaryDatabaseObjectExporter</span></td><td><code>c90a345dc1ec06b8</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardForeignKeyExporter</span></td><td><code>1c903b8ab1d8e8cc</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardIndexExporter</span></td><td><code>a95f27188e57ba87</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardSequenceExporter</span></td><td><code>10b2ad6eea303168</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardTableExporter</span></td><td><code>e700a20e4db50d95</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.internal.StandardUniqueKeyExporter</span></td><td><code>cff96f9fa29497b1</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.Exporter</span></td><td><code>f60c3caefa1b10b7</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator</span></td><td><code>7f5516059e400cf0</code></td></tr><tr><td><span class="el_class">org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.ActionGrouping</span></td><td><code>9a3389357a1b6582</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.AbstractAttribute</span></td><td><code>1fb0106f5fac2b59</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.AbstractNonIdentifierAttribute</span></td><td><code>e59a13205d51133e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.BaselineAttributeInformation</span></td><td><code>90107256da58b4ff</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.BaselineAttributeInformation.Builder</span></td><td><code>73460bc9b0581993</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.CreationTimestampGeneration</span></td><td><code>c43259d138b2ea28</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming</span></td><td><code>c6ea2cfd7b79fa61</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.1</span></td><td><code>468b9a846484191e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.2</span></td><td><code>4d5509fc50c91cc0</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.GenerationTiming.3</span></td><td><code>ac863c977e9c1ca9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.IdentifierProperty</span></td><td><code>6a81bd2d7bb22fd0</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PojoInstantiator</span></td><td><code>2a26cf30d75c5e65</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory</span></td><td><code>1b6a531a80f034f6</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory.1</span></td><td><code>a0cf9e859a207dba</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.PropertyFactory.NonIdentifierAttributeNature</span></td><td><code>648ba17afddcd85e</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.TimestampGenerators</span></td><td><code>9a96a790925bbe32</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.UpdateTimestampGeneration</span></td><td><code>5e69ea93ebf99339</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.AbstractEntityBasedAttribute</span></td><td><code>07d584081cd87564</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.AbstractEntityTuplizer</span></td><td><code>6f99578cbc97d4e9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.BytecodeEnhancementMetadataPojoImpl</span></td><td><code>8dc02e0daebc6170</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityBasedAssociationAttribute</span></td><td><code>bd3ded3386f48038</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityBasedBasicAttribute</span></td><td><code>6da629e348575f49</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel</span></td><td><code>9fd774badce50c52</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.FullInMemoryValueGenerationStrategy</span></td><td><code>d316c6bf391cee7f</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.GenerationStrategyPair</span></td><td><code>c2b20097de7e12d9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.NoInDatabaseValueGenerationStrategy</span></td><td><code>0a2f8682c08cf1b5</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityMetamodel.NoInMemoryValueGenerationStrategy</span></td><td><code>ab18b028b3bc2ad9</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.EntityTuplizerFactory</span></td><td><code>29cfec41fbddde8b</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.PojoEntityInstantiator</span></td><td><code>2ff98a909b4f6270</code></td></tr><tr><td><span class="el_class">org.hibernate.tuple.entity.PojoEntityTuplizer</span></td><td><code>3fc92819fbb865d1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractSingleColumnStandardBasicType</span></td><td><code>4a93883945d4466d</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractStandardBasicType</span></td><td><code>89cf5d71d35c6431</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AbstractType</span></td><td><code>39b4f7fc46f62f6d</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AdaptedImmutableType</span></td><td><code>5015ca9fb738d1fe</code></td></tr><tr><td><span class="el_class">org.hibernate.type.AnyType</span></td><td><code>a1c598a55fdb4fa7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BagType</span></td><td><code>ded74e7a75584388</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BasicTypeRegistry</span></td><td><code>a271ba3bcf8cc471</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BigDecimalType</span></td><td><code>9eaa9e971a061fbb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BigIntegerType</span></td><td><code>eaf6ede3d1875d95</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BinaryType</span></td><td><code>3b149b4c73a07473</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BlobType</span></td><td><code>4dd6bdcc6a4d3ac7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.BooleanType</span></td><td><code>deacf11282cf2b30</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ByteType</span></td><td><code>affc46c03f6b8656</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarDateType</span></td><td><code>80f1b021c53e9c46</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarTimeType</span></td><td><code>993ef8fc79d02326</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CalendarType</span></td><td><code>8012ca9d04d9f543</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharArrayType</span></td><td><code>31db42c9d49c9e04</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterArrayType</span></td><td><code>df3c2c1049058cef</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterNCharType</span></td><td><code>bbd7ce9c19c12696</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CharacterType</span></td><td><code>9d74881f640e4461</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ClassType</span></td><td><code>49641992c15f0f41</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ClobType</span></td><td><code>662639b410f6c453</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CollectionType</span></td><td><code>e47135d7446c42df</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CurrencyType</span></td><td><code>9a4e65f81f4fa74c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.CustomType</span></td><td><code>865372be2cc5c346</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DateType</span></td><td><code>25af2fddbc456bdc</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DbTimestampType</span></td><td><code>395e6074cb317280</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DoubleType</span></td><td><code>b0da2493d71c07e9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.DurationType</span></td><td><code>bd35c5a1e88d3468</code></td></tr><tr><td><span class="el_class">org.hibernate.type.EntityType</span></td><td><code>9c202a9131826ae0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.EnumType</span></td><td><code>88f5055997731ec0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.FloatType</span></td><td><code>60a2c96517a91289</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection</span></td><td><code>a030f3740145104a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection.1</span></td><td><code>7b5241dc53002da1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ForeignKeyDirection.2</span></td><td><code>3ff55ca229f3f59e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ImageType</span></td><td><code>c3c521996ee061d3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.InstantType</span></td><td><code>f2bcb45c13b8450a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.IntegerType</span></td><td><code>2a5f16c52c9c174c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalDateTimeType</span></td><td><code>2c877484d8c0cabb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalDateType</span></td><td><code>1be158b2f4337309</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocalTimeType</span></td><td><code>492d8fd57bf89539</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LocaleType</span></td><td><code>e3a1154824444234</code></td></tr><tr><td><span class="el_class">org.hibernate.type.LongType</span></td><td><code>9dac3edd963844b5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ManyToOneType</span></td><td><code>4a001d3cc444f8d3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedBlobType</span></td><td><code>b0985c2f73225850</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedClobType</span></td><td><code>f92cff47bc2d5843</code></td></tr><tr><td><span class="el_class">org.hibernate.type.MaterializedNClobType</span></td><td><code>840f5f60df55e3af</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NClobType</span></td><td><code>be127073e58e2066</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NTextType</span></td><td><code>dba4220b1cc0d3ac</code></td></tr><tr><td><span class="el_class">org.hibernate.type.NumericBooleanType</span></td><td><code>b5a9f4fa1c8aea90</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ObjectType</span></td><td><code>426075471ac62aa2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.OffsetDateTimeType</span></td><td><code>99692ef1d7ea66b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.OffsetTimeType</span></td><td><code>697307feefed67c9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.PostgresUUIDType</span></td><td><code>fc5917bf601f167e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.PostgresUUIDType.PostgresUUIDSqlTypeDescriptor</span></td><td><code>4822faee0d569e50</code></td></tr><tr><td><span class="el_class">org.hibernate.type.RowVersionType</span></td><td><code>69b26d25a076e2cd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.SerializableType</span></td><td><code>19a6f44fd2424d51</code></td></tr><tr><td><span class="el_class">org.hibernate.type.SetType</span></td><td><code>707b14d8d6f3dc39</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ShortType</span></td><td><code>12ca04699802a66b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StandardBasicTypes</span></td><td><code>8445ec38cda9edee</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StringNVarcharType</span></td><td><code>6d99a18d97300833</code></td></tr><tr><td><span class="el_class">org.hibernate.type.StringType</span></td><td><code>8d268afb6d844771</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TextType</span></td><td><code>c1591d7725c6476f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimeType</span></td><td><code>e43de782a4bc3224</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimeZoneType</span></td><td><code>d4925dd8b4ee1c34</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TimestampType</span></td><td><code>cb2657db6d71cdbf</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TrueFalseType</span></td><td><code>f0f3b660f92dd5f9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.Type</span></td><td><code>3e68d755c012c457</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeFactory</span></td><td><code>0ea7fa8448df2b2c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeHelper</span></td><td><code>cbbff5146cf18220</code></td></tr><tr><td><span class="el_class">org.hibernate.type.TypeResolver</span></td><td><code>c3b75af4a686d269</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UUIDBinaryType</span></td><td><code>c702981bc37eb3b2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UUIDCharType</span></td><td><code>a998282c2cbb7430</code></td></tr><tr><td><span class="el_class">org.hibernate.type.UrlType</span></td><td><code>4b809474b92fef7c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.WrapperBinaryType</span></td><td><code>2b069e873a3ffb22</code></td></tr><tr><td><span class="el_class">org.hibernate.type.YesNoType</span></td><td><code>579dcd6b7a531e0a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.ZonedDateTimeType</span></td><td><code>cfaa69c577025590</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.AbstractTypeDescriptor</span></td><td><code>c03bb23eb2b75e9b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ArrayMutabilityPlan</span></td><td><code>40f25b630f57e6fb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BigDecimalTypeDescriptor</span></td><td><code>34db3c536db16678</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BigIntegerTypeDescriptor</span></td><td><code>84d3341763afb8a9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BlobTypeDescriptor</span></td><td><code>35118589f0c0de73</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BlobTypeDescriptor.BlobMutabilityPlan</span></td><td><code>9adf632b0720e6b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.BooleanTypeDescriptor</span></td><td><code>b640df68306efd96</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ByteArrayTypeDescriptor</span></td><td><code>c74f4da3610980bd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ByteTypeDescriptor</span></td><td><code>60c6a16ce20841ce</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarDateTypeDescriptor</span></td><td><code>e6a8b0043a757499</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTimeTypeDescriptor</span></td><td><code>9adb15e6a6a702c7</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTypeDescriptor</span></td><td><code>58557461b618d8af</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CalendarTypeDescriptor.CalendarMutabilityPlan</span></td><td><code>25eda164b976a134</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor</span></td><td><code>990f3b4a4946ce27</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CharacterTypeDescriptor</span></td><td><code>93090dbf14265e5b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClassTypeDescriptor</span></td><td><code>098b39d1712c2b2a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClobTypeDescriptor</span></td><td><code>254ad1d082e90761</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ClobTypeDescriptor.ClobMutabilityPlan</span></td><td><code>3bba4f9fcfa77dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.CurrencyTypeDescriptor</span></td><td><code>b3aa1498af6884e2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.DoubleTypeDescriptor</span></td><td><code>d38070e34f9a0fd3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.DurationJavaDescriptor</span></td><td><code>7f0531b14913a6df</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.EnumJavaTypeDescriptor</span></td><td><code>5434e1b56357b7d9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.FloatTypeDescriptor</span></td><td><code>ec00e378989e7b3e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ImmutableMutabilityPlan</span></td><td><code>e7d7b40190b2b6f6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.InstantJavaDescriptor</span></td><td><code>7e4f33c0a3127ecd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.IntegerTypeDescriptor</span></td><td><code>7b343d91e886d8ff</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor</span></td><td><code>d7d7a376334df87c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor.DateMutabilityPlan</span></td><td><code>78fded662243f395</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor</span></td><td><code>3092a67863c4a1d9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor.TimeMutabilityPlan</span></td><td><code>08d2505bd203b885</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor</span></td><td><code>c854b6deae56db2a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor.TimestampMutabilityPlan</span></td><td><code>d76671261696313e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalDateJavaDescriptor</span></td><td><code>cc753a6ba69acecd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalDateTimeJavaDescriptor</span></td><td><code>71667decb8744927</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocalTimeJavaDescriptor</span></td><td><code>8b21140e8567a67a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LocaleTypeDescriptor</span></td><td><code>2f2ded338a40fd49</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.LongTypeDescriptor</span></td><td><code>ea3140f7b119331b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.MutableMutabilityPlan</span></td><td><code>81e84d499a9b3453</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.NClobTypeDescriptor</span></td><td><code>915992e3e1308104</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.NClobTypeDescriptor.NClobMutabilityPlan</span></td><td><code>663afc2cfcb3bdd1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.OffsetDateTimeJavaDescriptor</span></td><td><code>3e02c1b88dcb8def</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.OffsetTimeJavaDescriptor</span></td><td><code>56028ae480ae4edb</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.PrimitiveByteArrayTypeDescriptor</span></td><td><code>ed42f1f192740913</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.PrimitiveCharacterArrayTypeDescriptor</span></td><td><code>1149c9bdf41daa72</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.RowVersionTypeDescriptor</span></td><td><code>0472be6d158694d5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.SerializableTypeDescriptor</span></td><td><code>82a28621889e3c77</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.SerializableTypeDescriptor.SerializableMutabilityPlan</span></td><td><code>b62ce1bad94f2d1f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ShortTypeDescriptor</span></td><td><code>85cd65086664af6c</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.StringTypeDescriptor</span></td><td><code>b1e4ff9bf120b903</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.TimeZoneTypeDescriptor</span></td><td><code>3021bd513cf86b24</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.UUIDTypeDescriptor</span></td><td><code>41bf789b22ab0c74</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.UrlTypeDescriptor</span></td><td><code>07c922bc0ae50617</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.ZonedDateTimeJavaDescriptor</span></td><td><code>1155664c2e3923a6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.spi.JavaTypeDescriptorRegistry</span></td><td><code>d551e5b61d04a5bf</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.java.spi.RegistryHelper</span></td><td><code>a970314a5b0ac7a1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BasicBinder</span></td><td><code>8392d6ad1ea5999b</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BasicExtractor</span></td><td><code>9ac6b97b09c1eff2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor</span></td><td><code>dda17e1b3f4a9147</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor.1</span></td><td><code>c70d36ecbf299dbd</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BigIntTypeDescriptor.2</span></td><td><code>fdcd27ddb3d82972</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BinaryTypeDescriptor</span></td><td><code>b053e192b903fc87</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BitTypeDescriptor</span></td><td><code>2863dfc34ab0e8c9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor</span></td><td><code>d558e03cac2b15be</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.2</span></td><td><code>28898877319d50f9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.3</span></td><td><code>f48d6ddd3e0f0901</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.4</span></td><td><code>5da6e3a0679d9b47</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BlobTypeDescriptor.5</span></td><td><code>b51028341e1257e3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor</span></td><td><code>8506749363e0b000</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.1</span></td><td><code>2656afd5015c989e</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.2</span></td><td><code>c69ab3d1701e1fd9</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.CharTypeDescriptor</span></td><td><code>1365a736de1b74d4</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor</span></td><td><code>3197729c0a65a923</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.2</span></td><td><code>0150640e0f6dcb38</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.3</span></td><td><code>bf74c2c783fafc80</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.4</span></td><td><code>ee8c18047d3e156a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.ClobTypeDescriptor.5</span></td><td><code>1ecd96d67037ccfe</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DateTypeDescriptor</span></td><td><code>1ffe5a068e4626c3</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DecimalTypeDescriptor</span></td><td><code>c5e9502d92dc60b6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.DoubleTypeDescriptor</span></td><td><code>aa1fc4aef62c9ff0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.FloatTypeDescriptor</span></td><td><code>ebd82cc78582df81</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor</span></td><td><code>87f050bfb2577ee6</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor.1</span></td><td><code>62caf469b5994308</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.IntegerTypeDescriptor.2</span></td><td><code>fdc55c10821a0c6f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongNVarcharTypeDescriptor</span></td><td><code>5cfd891e7b29c1ae</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongVarbinaryTypeDescriptor</span></td><td><code>eb38f3783bc72fe0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.LongVarcharTypeDescriptor</span></td><td><code>cf0df0a7b652edd5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NCharTypeDescriptor</span></td><td><code>b94bc9311ddf15c5</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor</span></td><td><code>11904958e1ab9421</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.2</span></td><td><code>827bd38ad8016336</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.3</span></td><td><code>8d56d283cec89047</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NClobTypeDescriptor.4</span></td><td><code>ab927f03f79427d0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NVarcharTypeDescriptor</span></td><td><code>1c7b6c04aa811849</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.NumericTypeDescriptor</span></td><td><code>8b013429a4e69a1a</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.RealTypeDescriptor</span></td><td><code>4c2d190ba8687448</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.SmallIntTypeDescriptor</span></td><td><code>5f56ee3e1e90cdb4</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.SqlTypeDescriptorRegistry</span></td><td><code>50ed2c399fca2f39</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimeTypeDescriptor</span></td><td><code>3cd7a459ccdf14a1</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor</span></td><td><code>28b8e2eebdeee612</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor.1</span></td><td><code>00e8caab6774f1c0</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TimestampTypeDescriptor.2</span></td><td><code>afaaf94c69b259aa</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.TinyIntTypeDescriptor</span></td><td><code>a241b61ea4e43e37</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarbinaryTypeDescriptor</span></td><td><code>2b4a42ebc7493700</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor</span></td><td><code>817cd514fbfe7b2f</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor.1</span></td><td><code>a3d57938cf566614</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.VarcharTypeDescriptor.2</span></td><td><code>b9b8cc1bbb9369f2</code></td></tr><tr><td><span class="el_class">org.hibernate.type.descriptor.sql.spi.SqlTypeDescriptorRegistry</span></td><td><code>0c31616f9aeb3339</code></td></tr><tr><td><span class="el_class">org.hibernate.type.spi.TypeConfiguration</span></td><td><code>c654fecb638a49db</code></td></tr><tr><td><span class="el_class">org.hibernate.type.spi.TypeConfiguration.Scope</span></td><td><code>057daabdd26fcb1b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.HibernateValidator</span></td><td><code>c58a3e0240ba34cc</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.constraints.CompositionType</span></td><td><code>04e168e628ad4dc1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.cfg.context.DefaultConstraintMapping</span></td><td><code>c75039c263666510</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.constraintvalidators.bv.NotNullValidator</span></td><td><code>1d946c01dd239177</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.constraintvalidators.bv.PatternValidator</span></td><td><code>877c08ea43fdf275</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.AbstractConfigurationImpl</span></td><td><code>c17a56aca8029bf2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConfigurationImpl</span></td><td><code>1566d83eac8fb547</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConstraintCreationContext</span></td><td><code>bc3131fb3819c005</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ConstraintViolationImpl</span></td><td><code>9f251133dde37211</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultClockProvider</span></td><td><code>267221c856bac87f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultParameterNameProvider</span></td><td><code>765191ec37f3e69b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider</span></td><td><code>cf88aa1c6457dfb6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MessageInterpolatorContext</span></td><td><code>e966d8e53c88ded5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MethodValidationConfiguration</span></td><td><code>14590085b67e58fd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.MethodValidationConfiguration.Builder</span></td><td><code>feba2eaa4a72a87f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ServiceLoaderBasedConstraintMappingContributor</span></td><td><code>f854087a2a7e19a8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorContextImpl</span></td><td><code>36ba091a7ed05b9f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryConfigurationHelper</span></td><td><code>8af55e8209e0bc70</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryConfigurationHelper.DefaultConstraintMappingBuilder</span></td><td><code>181d04ef2d891396</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryImpl</span></td><td><code>74f36c271f9c1328</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryImpl.BeanMetaDataManagerKey</span></td><td><code>d19d2c1b284e0ac1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryScopedContext</span></td><td><code>23ec7f4fa0f40b3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorFactoryScopedContext.Builder</span></td><td><code>eaeeaaa25fdddd40</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.ValidatorImpl</span></td><td><code>d532ddcd22b6f9bb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.AbstractConstraintValidatorManagerImpl</span></td><td><code>e6e265233639da96</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ClassBasedValidatorDescriptor</span></td><td><code>e4f7772c47b0bcb2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintTree</span></td><td><code>0c9bb17ee43e0ac7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorContextImpl</span></td><td><code>ea5a43f7336e177a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorDescriptor</span></td><td><code>56d25f7b4081761a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorFactoryImpl</span></td><td><code>81156368c0073f6c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl</span></td><td><code>8d1fbdfb35934454</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl.1</span></td><td><code>0b41f541fd22a78c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintValidatorManagerImpl.CacheKey</span></td><td><code>54dc232fc83d8182</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.ConstraintViolationCreationContext</span></td><td><code>3b6931c9c87702bf</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.HibernateConstraintValidatorInitializationContextImpl</span></td><td><code>61beeaf959dd3b24</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.constraintvalidation.SimpleConstraintTree</span></td><td><code>a70b7b4f73d091d5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.Group</span></td><td><code>b1178318c9c1d427</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.GroupWithInheritance</span></td><td><code>417f55538d0a3985</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.Sequence</span></td><td><code>29c136e7a9bdfb17</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder</span></td><td><code>3d0612f7df31d10c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder.DefaultGroupValidationOrder</span></td><td><code>0de94934bc35b9af</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrder.DefaultSequenceValidationOrder</span></td><td><code>1dd5e17805ae018e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.groups.ValidationOrderGenerator</span></td><td><code>af4ce1e072216368</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.DefaultLocaleResolver</span></td><td><code>1a6b3546aa7603c7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.DefaultLocaleResolverContext</span></td><td><code>099b59ef5002084c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.messageinterpolation.util.InterpolationHelper</span></td><td><code>debdcafb62c799bb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.path.NodeImpl</span></td><td><code>e9977f2849624fb2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.path.PathImpl</span></td><td><code>62d15435c9a084d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.AbstractTraversableHolder</span></td><td><code>a40760aa878067b3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.CachingTraversableResolverForSingleValidation</span></td><td><code>a26f9487135421c7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.CachingTraversableResolverForSingleValidation.TraversableHolder</span></td><td><code>00cbc0ea0bb9b07b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.JPATraversableResolver</span></td><td><code>224e799ad1939432</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.resolver.TraversableResolvers</span></td><td><code>18646ee3d4c182d8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory</span></td><td><code>ae7a2413e72ff6da</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.AbstractValidationContext</span></td><td><code>015881f38d89cbe0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.BaseBeanValidationContext</span></td><td><code>8f22ddc88861cd0f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.BeanValidationContext</span></td><td><code>ca8a9b642404a5f4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.ValidationContextBuilder</span></td><td><code>1966aa774f23d205</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.validationcontext.ValidatorScopedContext</span></td><td><code>9616cb12f4b9d339</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.BeanValueContext</span></td><td><code>116345542727cc61</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContext</span></td><td><code>38cca23d9bf1b5df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContext.ValueState</span></td><td><code>594a5141ef6400c2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valuecontext.ValueContexts</span></td><td><code>f96ce2d1b97b2dff</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.AnnotatedObject</span></td><td><code>3220c7266bcce57b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ArrayElement</span></td><td><code>6076ed65450dfafc</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.BooleanArrayValueExtractor</span></td><td><code>85459352814ca24d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ByteArrayValueExtractor</span></td><td><code>9a6c7080c827bb3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.CharArrayValueExtractor</span></td><td><code>54fd3a16878d82d9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.DoubleArrayValueExtractor</span></td><td><code>554402890807a9b6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.FloatArrayValueExtractor</span></td><td><code>d25e799d18381f61</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.IntArrayValueExtractor</span></td><td><code>16b62341739474ef</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.IterableValueExtractor</span></td><td><code>d0fb6d72a2640cd7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ListValueExtractor</span></td><td><code>ca7c1d4ae95cc788</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.LongArrayValueExtractor</span></td><td><code>ef90973dd94228d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.MapKeyExtractor</span></td><td><code>6fe9a090a4ffd77d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.MapValueExtractor</span></td><td><code>c43b2b44f8d6f76a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ObjectArrayValueExtractor</span></td><td><code>c575a4466c1f2780</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalDoubleValueExtractor</span></td><td><code>41c53d9bf7085b9e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalIntValueExtractor</span></td><td><code>0eb9a0ed4d7d2995</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalLongValueExtractor</span></td><td><code>7362fe031e719d6a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.OptionalValueExtractor</span></td><td><code>7ebfc30cf4609142</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ShortArrayValueExtractor</span></td><td><code>5a4ca336f2b793e7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorDescriptor</span></td><td><code>2bdea07c99f0e4ab</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorDescriptor.Key</span></td><td><code>b1771ce85f4197c2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorManager</span></td><td><code>64f6729708d5f28b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorManager.1</span></td><td><code>dfce6e1f59a0595c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.engine.valueextraction.ValueExtractorResolver</span></td><td><code>50cf5b48ea893719</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.BeanMetaDataManagerImpl</span></td><td><code>531ece6446e8d477</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.DefaultBeanMetaDataClassNormalizer</span></td><td><code>6b716517f1975dc9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.AbstractConstraintMetaData</span></td><td><code>1a7d4d101b90fc82</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.AbstractConstraintMetaData.ContainerElementMetaDataTree</span></td><td><code>5edac944a2137b51</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder</span></td><td><code>398e61edb626d9b7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder.1</span></td><td><code>8fe7d63305fa3228</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataBuilder.BuilderDelegate</span></td><td><code>fd5c1a4888a9f2f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataImpl</span></td><td><code>0f4be671945fc865</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.BeanMetaDataImpl.DefaultGroupSequenceContext</span></td><td><code>373f277e1f6ab735</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.CascadingMetaDataBuilder</span></td><td><code>b31927bf24f53f70</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData</span></td><td><code>0d8d1fb472cb5d82</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData.Builder</span></td><td><code>0dc4c81a568f656f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.GroupConversionHelper</span></td><td><code>2f2c16b0aed356fe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.MetaDataBuilder</span></td><td><code>032ed6e6b7e04207</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.NonContainerCascadingMetaData</span></td><td><code>11a952d30118fd3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData</span></td><td><code>c0ccfa9d91d5c40f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData.Builder</span></td><td><code>ee1f895278f6081b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.PropertyMetaData</span></td><td><code>feaa17ed46129729</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.PropertyMetaData.Builder</span></td><td><code>f6ec55045d5e7d50</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ReturnValueMetaData</span></td><td><code>598614b258397f5f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.ValidatableParametersMetaData</span></td><td><code>40ac4d913adea823</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.MethodConfigurationRule</span></td><td><code>543757dd98243984</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.OverridingMethodMustNotAlterParameterConstraints</span></td><td><code>509c4e4b38cca806</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ParallelMethodsMustNotDefineGroupConversionForCascadedReturnValue</span></td><td><code>4b78ee1c4e580f3b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ParallelMethodsMustNotDefineParameterConstraints</span></td><td><code>3941b865326a1c11</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.ReturnValueMayOnlyBeMarkedOnceAsCascadedPerHierarchyLine</span></td><td><code>9ac515f0cfd550ad</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.aggregated.rule.VoidMethodsMustNotBeReturnValueConstrained</span></td><td><code>d7114afb93d42683</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.AnnotationProcessingOptionsImpl</span></td><td><code>34887d17f9b873a0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.AnnotationProcessingOptionsImpl.ExecutableParameterKey</span></td><td><code>22dd870a30c8ed46</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.BuiltinConstraint</span></td><td><code>9f607911e2094c83</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintHelper</span></td><td><code>72b63edd490a111c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintHelper.ValidatorDescriptorMap</span></td><td><code>95157e56a026757f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.ConstraintOrigin</span></td><td><code>60a228ef5409c39c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.MetaConstraint</span></td><td><code>0d43e3502ff19dd1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.core.MetaConstraints</span></td><td><code>07082636ef47ef01</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.BeanDescriptorImpl</span></td><td><code>edb9e6b0ed36d37e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ConstraintDescriptorImpl</span></td><td><code>55a51c6f0d7b54b6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ConstraintDescriptorImpl.ConstraintType</span></td><td><code>b666aed22d0bef7d</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.CrossParameterDescriptorImpl</span></td><td><code>ccdc4d88666ea445</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ElementDescriptorImpl</span></td><td><code>28cbdad63b27e640</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ElementDescriptorImpl.ConstraintFinderImpl</span></td><td><code>bb7ab6d24c6b28a9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl</span></td><td><code>dee77f82af50daf8</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ParameterDescriptorImpl</span></td><td><code>120dbc312c0173fb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.PropertyDescriptorImpl</span></td><td><code>cbda3c3aa1852195</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl</span></td><td><code>a7137d101f7cbbb5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.AbstractPropertyConstraintLocation</span></td><td><code>108b08384914c96b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation</span></td><td><code>142f1d2fe46e1fcb</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation.1</span></td><td><code>1e9f386ced9536f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ConstraintLocation.ConstraintLocationKind</span></td><td><code>e3ec1c89485df1cd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.CrossParameterConstraintLocation</span></td><td><code>0fb0ddb64b0d804a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.FieldConstraintLocation</span></td><td><code>9102f3f607f38c65</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.GetterConstraintLocation</span></td><td><code>ab78517d6eeb57c4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ParameterConstraintLocation</span></td><td><code>9b1c42c028898051</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.location.ReturnValueConstraintLocation</span></td><td><code>df81a54b2eb98ee7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider</span></td><td><code>3db72ffd526be94f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentExecutableParameterLocation</span></td><td><code>6e21a013996421da</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentFieldLocation</span></td><td><code>042d3c1a4f718994</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.AnnotationMetaDataProvider.TypeArgumentReturnValueLocation</span></td><td><code>cd96109171d22cf4</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.provider.ProgrammaticMetaDataProvider</span></td><td><code>be06fc92397d7006</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.AbstractConstrainedElement</span></td><td><code>f2e21262e24da4fe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.BeanConfiguration</span></td><td><code>2be7bc18461545b0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConfigurationSource</span></td><td><code>8b02a4987aec50d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedElement.ConstrainedElementKind</span></td><td><code>4c44887502fae605</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedExecutable</span></td><td><code>a982851ea3696fb1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedField</span></td><td><code>8619615d1f130ba3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.metadata.raw.ConstrainedParameter</span></td><td><code>e4399da74be02205</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.Constrainable</span></td><td><code>663ce3c607b3a8d6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.DefaultGetterPropertySelectionStrategy</span></td><td><code>158e12a38658868e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.Signature</span></td><td><code>dfca02ba6cbaee32</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanAnnotatedElement</span></td><td><code>5aedde6cb463400e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanConstructor</span></td><td><code>b3a7f4b810778571</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanExecutable</span></td><td><code>c7d94bc03f7dccdf</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanField</span></td><td><code>c8999cbcdeb8b62b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanField.FieldAccessor</span></td><td><code>86afd9ae0d5ebe9c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanGetter</span></td><td><code>0917ab7f12c6dde9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanGetter.GetterAccessor</span></td><td><code>ea365436019b6c2c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper</span></td><td><code>c2db8922723c08f6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper.JavaBeanConstrainableExecutable</span></td><td><code>5412357490133244</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanHelper.JavaBeanPropertyImpl</span></td><td><code>6b8f796776756a64</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanMethod</span></td><td><code>bb4ba308fb627ff0</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.properties.javabean.JavaBeanParameter</span></td><td><code>c71a2502976d16b5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.CollectionHelper</span></td><td><code>758adb7c98ee1879</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap</span></td><td><code>aa544d82407ca406</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.HashEntry</span></td><td><code>08ce4cf98f7cffa5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.Option</span></td><td><code>69e2b1389751ea79</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.ReferenceType</span></td><td><code>e4f712dc141e6491</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.Segment</span></td><td><code>f61ad4fe039fef15</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.SoftKeyReference</span></td><td><code>57a77c17ac7c96e1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.SoftValueReference</span></td><td><code>1cadc88ef1a473d1</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.Contracts</span></td><td><code>d4d96df1491f5ccd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableHelper</span></td><td><code>427a29a2595e7f31</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableHelper.SimpleMethodFilter</span></td><td><code>57f5131c9c762ee6</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ExecutableParameterNameProvider</span></td><td><code>e441605a85521a59</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.ReflectionHelper</span></td><td><code>5c538000e556aeab</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.StringHelper</span></td><td><code>a426da55aff02c0b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeHelper</span></td><td><code>cc1ed36cb6cdd6c9</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeResolutionHelper</span></td><td><code>25f1572a37186924</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.TypeVariables</span></td><td><code>f11cf727008b1a3f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.Version</span></td><td><code>f647c53d2104514a</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.annotation.AnnotationDescriptor</span></td><td><code>76d443349571af35</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.annotation.ConstraintAnnotationDescriptor</span></td><td><code>0848b761013220ae</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.ClassHierarchyHelper</span></td><td><code>a7181dd21602d14c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters</span></td><td><code>6f18898cd1d57cfe</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters.InterfacesFilter</span></td><td><code>77130d32aab48c7c</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.classhierarchy.Filters.WeldProxyFilter</span></td><td><code>360e7a2f25cb1f65</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Log_.logger</span></td><td><code>c2d08f0a07f70176</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.LoggerFactory</span></td><td><code>4ea78d92a9fd66df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Messages</span></td><td><code>73aae3e76468d2f3</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.Messages_.bundle</span></td><td><code>e13a120a9d2a4833</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.logging.formatter.ClassObjectFormatter</span></td><td><code>38f8782dd0353e8e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetAnnotationAttributes</span></td><td><code>9d00c8b1f623fe41</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetClassLoader</span></td><td><code>6b253d834e07808f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredConstructors</span></td><td><code>562ecc471359137b</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredField</span></td><td><code>4a4836649d09bd86</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredFields</span></td><td><code>5aef53643f57441e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredMethod</span></td><td><code>e192e7e526f1f91e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetDeclaredMethods</span></td><td><code>f9958f58a191a8d7</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetInstancesFromServiceLoader</span></td><td><code>bfbafc0fa05fbb7f</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetMethod</span></td><td><code>202f9123b9203c26</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.GetResolvedMemberMethods</span></td><td><code>bc3366b661f4a536</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.IsClassPresent</span></td><td><code>f1719917a67eee78</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.LoadClass</span></td><td><code>6c13cf70acbf6512</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.util.privilegedactions.NewInstance</span></td><td><code>c324de416aca6c17</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.BootstrapConfigurationImpl</span></td><td><code>c7b6924fb48ab208</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ResourceLoaderHelper</span></td><td><code>2da26e46e518cf56</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ValidationBootstrapParameters</span></td><td><code>39f70c00e01c16df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.internal.xml.config.ValidationXmlParser</span></td><td><code>d3610dd49311e3bd</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.AbstractMessageInterpolator</span></td><td><code>9801d94f665bf5e5</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.ExpressionLanguageFeatureLevel</span></td><td><code>a038c9f5f54ffbc2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator</span></td><td><code>01280786c9a3d75e</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.resourceloading.PlatformResourceBundleLocator</span></td><td><code>9502d46d324b92df</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.resourceloading.PlatformResourceBundleLocator.AggregateResourceBundleControl</span></td><td><code>3c9f9e3958d102f2</code></td></tr><tr><td><span class="el_class">org.hibernate.validator.spi.scripting.AbstractCachingScriptEvaluatorFactory</span></td><td><code>ca85406cb4c14dec</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.hapi.ctx.FhirDstu3</span></td><td><code>0803ff8fa8cbe1d0</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Base</span></td><td><code>945fd8f52b113320</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.BaseDateTimeType</span></td><td><code>0208511c111da31d</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.DateTimeType</span></td><td><code>67dff615a8cfc2c5</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.DateTimeType.1</span></td><td><code>c527e06a63d1ffc3</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Element</span></td><td><code>7eae6794f17f553b</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.PrimitiveType</span></td><td><code>733239c6c8a74619</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.ResourceType</span></td><td><code>195e3ef732fe2988</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.dstu3.model.Type</span></td><td><code>a0e281282cd33521</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.r4.hapi.ctx.FhirR4</span></td><td><code>0743c6982b3a1c8e</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.r4.model.ResourceType</span></td><td><code>5988df2a7f1b3ca5</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.utilities.DateTimeUtil</span></td><td><code>9e6775c9f92aaacf</code></td></tr><tr><td><span class="el_class">org.hl7.fhir.utilities.DateTimeUtil.1</span></td><td><code>053ca03b70a2df2b</code></td></tr><tr><td><span class="el_class">org.jboss.logging.DelegatingBasicLogger</span></td><td><code>3c3d79395ed6169d</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Log4j2Logger</span></td><td><code>8a51632d024aa4d3</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Log4j2LoggerProvider</span></td><td><code>9515afd916ec804c</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Logger</span></td><td><code>a0d8eeaec737c6b9</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Logger.Level</span></td><td><code>7faa510812a916d6</code></td></tr><tr><td><span class="el_class">org.jboss.logging.LoggerProviders</span></td><td><code>ba011451bd487664</code></td></tr><tr><td><span class="el_class">org.jboss.logging.LoggingLocale</span></td><td><code>a3957c29a3ff6c76</code></td></tr><tr><td><span class="el_class">org.jboss.logging.MDC</span></td><td><code>cef24d48e649b72a</code></td></tr><tr><td><span class="el_class">org.jboss.logging.Messages</span></td><td><code>beccc27a534dad53</code></td></tr><tr><td><span class="el_class">org.jboss.logging.SecurityActions</span></td><td><code>c7a3a794dcc4342d</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeFieldType</span></td><td><code>9d56e4eb52367a19</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeFieldType.StandardDateTimeFieldType</span></td><td><code>825a109fcb15d5fc</code></td></tr><tr><td><span class="el_class">org.joda.time.DateTimeZone</span></td><td><code>853b1350bf1e2538</code></td></tr><tr><td><span class="el_class">org.joda.time.DurationFieldType</span></td><td><code>52aec3adc53ca069</code></td></tr><tr><td><span class="el_class">org.joda.time.DurationFieldType.StandardDurationFieldType</span></td><td><code>c4e19b144e3ff0f3</code></td></tr><tr><td><span class="el_class">org.joda.time.UTCDateTimeZone</span></td><td><code>806dcff246383e27</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormat</span></td><td><code>615fafc4bb3609af</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormat.StyleFormatter</span></td><td><code>67cd49940577e060</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatter</span></td><td><code>efb13452c2345d0b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder</span></td><td><code>8889084ee40dfd40</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.CharacterLiteral</span></td><td><code>f74570e07a4e55c2</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.Composite</span></td><td><code>accbed46bade4129</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.FixedNumber</span></td><td><code>203616b315e7fcc2</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.Fraction</span></td><td><code>134b0b99c2f9c975</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.MatchingParser</span></td><td><code>22b0014672b439b7</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.NumberFormatter</span></td><td><code>90dbc44e0330536b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.PaddedNumber</span></td><td><code>bdf15b155e479f5b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.StringLiteral</span></td><td><code>7b897e25b533c2df</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.TextField</span></td><td><code>eb8625d4dc1bea12</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.TimeZoneOffset</span></td><td><code>36e22c22e7886602</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeFormatterBuilder.UnpaddedNumber</span></td><td><code>a419e58389825e18</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimeParserInternalParser</span></td><td><code>cfa0e2aa0d34030a</code></td></tr><tr><td><span class="el_class">org.joda.time.format.DateTimePrinterInternalPrinter</span></td><td><code>a6302df6894ee69b</code></td></tr><tr><td><span class="el_class">org.joda.time.format.ISODateTimeFormat</span></td><td><code>839d6cabf97097fc</code></td></tr><tr><td><span class="el_class">org.joda.time.format.ISODateTimeFormat.Constants</span></td><td><code>976c0b8b91942414</code></td></tr><tr><td><span class="el_class">org.joda.time.format.InternalParserDateTimeParser</span></td><td><code>e0bafa5eb924137f</code></td></tr><tr><td><span class="el_class">org.joda.time.tz.FixedDateTimeZone</span></td><td><code>f2cbdfac556dc9a2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertEquals</span></td><td><code>e7a43ed17afc829d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertFalse</span></td><td><code>414d495eda26f9bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNotNull</span></td><td><code>c8b577b40eb7a898</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNull</span></td><td><code>aed7910cfcac1f0c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertThrows</span></td><td><code>23754df203701965</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertTrue</span></td><td><code>189741ff9d4e661d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertionUtils</span></td><td><code>932bf67003486569</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.Assertions</span></td><td><code>58a85bf9838e70b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator</span></td><td><code>ff38de3576197150</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.IndicativeSentences</span></td><td><code>d3479e0ffacb9f9f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.ReplaceUnderscores</span></td><td><code>9c83688ffdea180b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Simple</span></td><td><code>d01947bfadff13a2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Standard</span></td><td><code>5f69fbdb73dadd83</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.TestInstance.Lifecycle</span></td><td><code>963667ad7acf2075</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ConditionEvaluationResult</span></td><td><code>fc311dfabd3a0e23</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext</span></td><td><code>6d743ab9f0c8d392</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext.Namespace</span></td><td><code>cc164c19cc2ec84e</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.InvocationInterceptor</span></td><td><code>78636fba04d849bd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.JupiterTestEngine</span></td><td><code>011031d0b1fe58db</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.CachingJupiterConfiguration</span></td><td><code>14c3e96d913ba609</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.DefaultJupiterConfiguration</span></td><td><code>150a59979eccb4d7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.EnumConfigurationParameterConverter</span></td><td><code>433eec982a6fabbc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.InstantiatingConfigurationParameterConverter</span></td><td><code>665228d315b7ac04</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.AbstractExtensionContext</span></td><td><code>9d93b2a6a01092c9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor</span></td><td><code>49129651cf7ad1b5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassExtensionContext</span></td><td><code>67d8de68b849441a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassTestDescriptor</span></td><td><code>2f87db51b4485e07</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.DisplayNameUtils</span></td><td><code>e1e9919d0d67675d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ExtensionUtils</span></td><td><code>722183e8696c5137</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineDescriptor</span></td><td><code>6354e569d97134a9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineExtensionContext</span></td><td><code>25e568b41a4f507e</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterTestDescriptor</span></td><td><code>8af8f2d9d691826c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.LifecycleMethodUtils</span></td><td><code>6249a1cbea332afc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodBasedTestDescriptor</span></td><td><code>27c3365cc0c4e908</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodExtensionContext</span></td><td><code>0508b2e2c19f7ac3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestInstanceLifecycleUtils</span></td><td><code>a247fc379f47df66</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor</span></td><td><code>72ce602be7bfa92c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractAnnotatedDescriptorWrapper</span></td><td><code>90b10f2d90d7b01b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor</span></td><td><code>f8eb297929c247eb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor.DescriptorWrapperOrderer</span></td><td><code>c8e1585f8474ed61</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassOrderingVisitor</span></td><td><code>1f09fc1c6b9779bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassSelectorResolver</span></td><td><code>47bba3d717485ecb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DefaultClassDescriptor</span></td><td><code>9064f3528773a161</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DiscoverySelectorResolver</span></td><td><code>5dc6be896f50996f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodFinder</span></td><td><code>621c8591e557439a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodOrderingVisitor</span></td><td><code>7d9864cebac818e1</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver</span></td><td><code>a425905a414a12d5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType</span></td><td><code>f4804d6ffc25a580</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.1</span></td><td><code>aeaeeb04a7d2c1a3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.2</span></td><td><code>4f06e6c9eef38fa4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.3</span></td><td><code>e3f41424e245bd2a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsInnerClass</span></td><td><code>d746bcff9a71ec26</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsNestedTestClass</span></td><td><code>f75dfd9ee2347890</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsPotentialTestContainer</span></td><td><code>909f14a1b9fe84dc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestClassWithTests</span></td><td><code>34690a186bfcf3ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestFactoryMethod</span></td><td><code>941a8af0d47a68fd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestMethod</span></td><td><code>f2039dbd13fce110</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestTemplateMethod</span></td><td><code>c13a4260435c18a8</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestableMethod</span></td><td><code>4be487dee199f633</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConditionEvaluator</span></td><td><code>df91d94b180fe511</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConstructorInvocation</span></td><td><code>60b80968f2bdedc3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.DefaultTestInstances</span></td><td><code>0fc6d90567826bc4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExecutableInvoker</span></td><td><code>d2368ccaaa2037b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExecutableInvoker.ReflectiveInterceptorCall</span></td><td><code>84813aa1a30927b7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore</span></td><td><code>e4054d96e0311350</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.CompositeKey</span></td><td><code>66813dae6cf686fe</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.MemoizingSupplier</span></td><td><code>df3ce2070a75daaf</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.StoredValue</span></td><td><code>57cb9ab75faabc0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain</span></td><td><code>9798b2a812d2015d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.InterceptedInvocation</span></td><td><code>199eef1acbe0b316</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.ValidatingInvocation</span></td><td><code>f064b1c2c4a4bf86</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext</span></td><td><code>b48cc2a96dab0116</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.Builder</span></td><td><code>d1557432e23d2776</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.State</span></td><td><code>3926323ef1c7fb03</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.MethodInvocation</span></td><td><code>8b8fd00463d994df</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.NamespaceAwareStore</span></td><td><code>c0df02c5fe61ed0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.TestInstancesProvider</span></td><td><code>357bca6226069e7b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.DisabledCondition</span></td><td><code>1604b4e34c1363e4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.ExtensionRegistry</span></td><td><code>a610f9723b95715c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.MutableExtensionRegistry</span></td><td><code>4951101173afa58b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.RepeatedTestExtension</span></td><td><code>32adc631c7f45534</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TempDirectory</span></td><td><code>55b0b3b7482f7782</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestInfoParameterResolver</span></td><td><code>3c520f8376f91ff7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestReporterParameterResolver</span></td><td><code>7187071bfc76c6ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutConfiguration</span></td><td><code>e255baf2a634c095</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutDurationParser</span></td><td><code>bb6a412c3829dae9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutExtension</span></td><td><code>e90faf479207d574</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.JupiterThrowableCollectorFactory</span></td><td><code>46546a446de4c9c0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.OpenTest4JAndJUnit4AwareThrowableCollector</span></td><td><code>e9ee7d4e1adecdd1</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try</span></td><td><code>5200e6adc191344c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try.Success</span></td><td><code>98cdc5b539e1abfd</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory</span></td><td><code>39fdfe1f67bc0eda</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory.DelegatingLogger</span></td><td><code>c71dcf008235901c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.AnnotationSupport</span></td><td><code>183c2f1d296c27a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.HierarchyTraversalMode</span></td><td><code>80fa2a13b9f5130d</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.ModifierSupport</span></td><td><code>5398073ee0b584ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.ReflectionSupport</span></td><td><code>945bcc92fedf115d</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.AnnotationUtils</span></td><td><code>192a2ed89eaed125</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassLoaderUtils</span></td><td><code>bf70ae4f9e1a53b8</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassNamePatternFilterUtils</span></td><td><code>661df78b93e45465</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassUtils</span></td><td><code>60a2276f3701443f</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClasspathScanner</span></td><td><code>54e3df9bb2092b52</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.CollectionUtils</span></td><td><code>8a03a781a6a5c2d1</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.Preconditions</span></td><td><code>c8254e72fb8d44dd</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils</span></td><td><code>9ac3110b58c001d0</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode</span></td><td><code>3125245fc9d900bc</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.StringUtils</span></td><td><code>237c0cb03ac19254</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter</span></td><td><code>6a52e5b4f7292f48</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter.1</span></td><td><code>cc0aadc5880fb4e4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener</span></td><td><code>f7640d771a4374d6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener.1</span></td><td><code>a4cdbe8dd38d8f57</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryRequest</span></td><td><code>2f8e616c1234b5ea</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener</span></td><td><code>693fee5cbd4c2df0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener.1</span></td><td><code>999902b68f81dd9a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.ExecutionRequest</span></td><td><code>f80b4e071e194cb8</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.Filter</span></td><td><code>5ffaaa90df97ca04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.FilterResult</span></td><td><code>a787a89e1f12d534</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult</span></td><td><code>b0cf35dcc829d3f4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult.Status</span></td><td><code>c505c2274f89f01d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor</span></td><td><code>aeaac58c9e7df241</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor.Type</span></td><td><code>20fe3e02963cb4b9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult</span></td><td><code>6b1b512d17bb680e</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult.Status</span></td><td><code>ad256e9fb4407e04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId</span></td><td><code>f649a106c8945a6a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId.Segment</span></td><td><code>f77d401d3f546230</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueIdFormat</span></td><td><code>6c86362ad62a1954</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.ClassSelector</span></td><td><code>a1cacad45a144508</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.DiscoverySelectors</span></td><td><code>d9d42aa13a2aea27</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.MethodSelector</span></td><td><code>69292f007e74298d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.AbstractTestDescriptor</span></td><td><code>b9c965daf4d9a476</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.ClassSource</span></td><td><code>37bd92069360f773</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.EngineDescriptor</span></td><td><code>8f2f77769ee0e9c9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.MethodSource</span></td><td><code>1d55ac49f5cabc20</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.ClassContainerSelectorResolver</span></td><td><code>dc6114dc7e983729</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution</span></td><td><code>ea497a81a10c339c</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution.DefaultContext</span></td><td><code>b39f8895aeb78b1e</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver</span></td><td><code>687cbe6b3b72b453</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.Builder</span></td><td><code>21b59a849a1e0107</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.DefaultInitializationContext</span></td><td><code>1904819635770d62</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver</span></td><td><code>8853a3b7d6531935</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match</span></td><td><code>922481c433789199</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match.Type</span></td><td><code>a62615901052f237</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Resolution</span></td><td><code>c90571b7b64f19a0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource</span></td><td><code>efa2e06c87a351c3</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource.LockMode</span></td><td><code>96e95d210b150f97</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine</span></td><td><code>5c686da27ab7f7b0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor</span></td><td><code>963cba9b029b4b19</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.LockManager</span></td><td><code>5aedd3bd3957b5a6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node</span></td><td><code>d5630bd7243c23ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node.SkipResult</span></td><td><code>5aca1404ff0f9294</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeExecutionAdvisor</span></td><td><code>7c2670c7a35cfba6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask</span></td><td><code>f652d8cc5e11bdc5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask.DefaultDynamicTestExecutor</span></td><td><code>abd00dd511d28b2f</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTaskContext</span></td><td><code>bdf88cd3834282a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTreeWalker</span></td><td><code>c689092b060d0b12</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils</span></td><td><code>a7ec8f66d373c169</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils.1</span></td><td><code>5a44a7e2cbf864b4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService</span></td><td><code>4021fb0b954634b6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SingleLock</span></td><td><code>2036ec8b92a38105</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ThrowableCollector</span></td><td><code>6fd7a27676be3c50</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestIdentifier</span></td><td><code>225bb434f8f223e2</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestPlan</span></td><td><code>9a2b71b572924cbc</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultDiscoveryRequest</span></td><td><code>7dda3ad9a0e6a666</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncher</span></td><td><code>9f3466cbe6d5a584</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherConfig</span></td><td><code>a355b55f1fea9e21</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineDiscoveryResultValidator</span></td><td><code>93df7a3977833cf5</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ExecutionListenerAdapter</span></td><td><code>52cf3c3c69d4dfba</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig</span></td><td><code>b3c713ac595fde03</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig.Builder</span></td><td><code>a17564c5b87448a3</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters</span></td><td><code>ef55cacb5e47a902</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder</span></td><td><code>e78a71b91c159e69</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherFactory</span></td><td><code>766208a42b7391ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.Root</span></td><td><code>32394ca895f9fb9a</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry</span></td><td><code>7c054c4cf76cb0f6</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderTestExecutionListenerRegistry</span></td><td><code>2299bac1075a6bf3</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.StreamInterceptingTestExecutionListener</span></td><td><code>3a1f3bd6b32f854b</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.TestExecutionListenerRegistry</span></td><td><code>2549306f9f4bc4a7</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.TestExecutionListenerRegistry.CompositeTestExecutionListener</span></td><td><code>54c88d30baf04181</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.LegacyReportingUtils</span></td><td><code>9dc21fd2f024a158</code></td></tr><tr><td><span class="el_class">org.mockito.Answers</span></td><td><code>7bb49d321e73bbc5</code></td></tr><tr><td><span class="el_class">org.mockito.ArgumentMatchers</span></td><td><code>09d65d5d1d4b1daf</code></td></tr><tr><td><span class="el_class">org.mockito.Mockito</span></td><td><code>bd9c62077a639c72</code></td></tr><tr><td><span class="el_class">org.mockito.MockitoAnnotations</span></td><td><code>4e582471d227b01d</code></td></tr><tr><td><span class="el_class">org.mockito.configuration.DefaultMockitoConfiguration</span></td><td><code>7c1c365c15c2133e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.MockitoCore</span></td><td><code>402eae6f392115ba</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.CaptorAnnotationProcessor</span></td><td><code>b1d3667699da5bde</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.ClassPathLoader</span></td><td><code>1837784d8946effa</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.DefaultDoNotMockEnforcer</span></td><td><code>c193dbfbfd7e7112</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.DefaultInjectionEngine</span></td><td><code>9d4f4284084eab52</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.GlobalConfiguration</span></td><td><code>cee487af60df9de4</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.IndependentAnnotationEngine</span></td><td><code>6712157121b4c009</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.IndependentAnnotationEngine.1</span></td><td><code>0c571489b6a84e81</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.InjectingAnnotationEngine</span></td><td><code>093bcb2236e9e096</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.MockAnnotationProcessor</span></td><td><code>c227d08ff7d98a5c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.SpyAnnotationEngine</span></td><td><code>0e1046ea3cb07962</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.ConstructorInjection</span></td><td><code>a2e0cfed216ffbf1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjection</span></td><td><code>41ad05a9cf251c66</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjection.OngoingMockInjection</span></td><td><code>4c9b53365f5f9c2a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjectionStrategy</span></td><td><code>cd40af08f6405c20</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.MockInjectionStrategy.1</span></td><td><code>c6860b7b40dd6139</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.PropertyAndSetterInjection</span></td><td><code>93b665d792e25fd6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.SpyOnInjectedFieldsHandler</span></td><td><code>6f93949c7ad54b5c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.NameBasedCandidateFilter</span></td><td><code>cbf3f2390a7a068c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.TerminalMockCandidateFilter</span></td><td><code>80b5d7c476edad41</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.filter.TypeBasedCandidateFilter</span></td><td><code>bb38595e57e057ee</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.scanner.InjectMocksScanner</span></td><td><code>1b7ab81c25844e8f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.injection.scanner.MockScanner</span></td><td><code>3b1d7ca146e28785</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.DefaultMockitoPlugins</span></td><td><code>a3d514713c9235ca</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.DefaultPluginSwitch</span></td><td><code>973f142b836667e1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginFileReader</span></td><td><code>1c7aa64a5a5a162d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginFinder</span></td><td><code>d946fdf7c3f2c58b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginInitializer</span></td><td><code>172e9a5c046703bf</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginLoader</span></td><td><code>2d00b0c8836bfc7a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.PluginRegistry</span></td><td><code>7c6b38725ad08380</code></td></tr><tr><td><span class="el_class">org.mockito.internal.configuration.plugins.Plugins</span></td><td><code>ff53f63a8240eb6e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.DelegatingMethod</span></td><td><code>7ea1353e5c77b5f3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.MockSettingsImpl</span></td><td><code>73433353e7684171</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.SuspendMethod</span></td><td><code>dc8e823dfe533d87</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ByteBuddyCrossClassLoaderSerializationSupport</span></td><td><code>91ac516637b8c4ee</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.BytecodeGenerator</span></td><td><code>896014d879c42ec9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineByteBuddyMockMaker</span></td><td><code>cba288e9eafa167f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator</span></td><td><code>6e93dbf821b9a251</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper</span></td><td><code>278db3d9ba946d37</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper.MethodParameterStrippingMethodVisitor</span></td><td><code>3def62f49dd7789f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.ParameterWritingVisitorWrapper.ParameterAddingClassVisitor</span></td><td><code>39cd81af1cdb0636</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineDelegateByteBuddyMockMaker</span></td><td><code>4ca287b5c381ce53</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.InlineDelegateByteBuddyMockMaker.1</span></td><td><code>ce01c3a23b0fe624</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockFeatures</span></td><td><code>161a6ae9389d4da3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice</span></td><td><code>2e6cf306dbc068b8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ConstructorShortcut</span></td><td><code>f3a070431524d642</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ConstructorShortcut.1</span></td><td><code>6d5acc901df77be9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.RealMethodCall</span></td><td><code>2de7cf23de0250f8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.ReturnValueWrapper</span></td><td><code>884b8fb93961f044</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodAdvice.SelfCallInfo</span></td><td><code>f7e9c35073684234</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.MockMethodInterceptor</span></td><td><code>d185526feefc5f6b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ModuleHandler</span></td><td><code>77380dd282d3eb30</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.ModuleHandler.ModuleSystemFound</span></td><td><code>d8515816e294707d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassBytecodeGenerator</span></td><td><code>94fd428955a86efe</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassInjectionLoader</span></td><td><code>47ea8dba5b15c796</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.SubclassInjectionLoader.WithReflection</span></td><td><code>55a84d6cf8f318a1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeCachingBytecodeGenerator</span></td><td><code>123a98feabc81a7a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeCachingBytecodeGenerator.MockitoMockKey</span></td><td><code>8fb34c2e10b7db99</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.bytebuddy.TypeSupport</span></td><td><code>652949fe1e4bb215</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.instance.DefaultInstantiatorProvider</span></td><td><code>3900ee0969504a34</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.instance.ObjenesisInstantiator</span></td><td><code>e451a21eadbc4d30</code></td></tr><tr><td><span class="el_class">org.mockito.internal.creation.settings.CreationSettings</span></td><td><code>417c97a74f5fad25</code></td></tr><tr><td><span class="el_class">org.mockito.internal.debugging.Localized</span></td><td><code>3453e26ea406565f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.debugging.LocationImpl</span></td><td><code>b13b42f8f18069c1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.DefaultStackTraceCleaner</span></td><td><code>0be2358e0d7b7d96</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.DefaultStackTraceCleanerProvider</span></td><td><code>475c82ec8ba01c75</code></td></tr><tr><td><span class="el_class">org.mockito.internal.exceptions.stacktrace.StackTraceFilter</span></td><td><code>3df073dc72decbe3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.InvocationNotifierHandler</span></td><td><code>7c138f78143ab433</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.MockHandlerFactory</span></td><td><code>236482acbbebaf4a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.MockHandlerImpl</span></td><td><code>e538c869e7bfe6c6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.NotifiedMethodInvocationReport</span></td><td><code>77e24bcf370dbd35</code></td></tr><tr><td><span class="el_class">org.mockito.internal.handler.NullResultGuardian</span></td><td><code>40a1d637e9eadd05</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.ArgumentsProcessor</span></td><td><code>d50039fd637b3496</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.DefaultInvocationFactory</span></td><td><code>fa6c69aea1733666</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InterceptedInvocation</span></td><td><code>40a1bce4be9e6523</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InterceptedInvocation.1</span></td><td><code>1a1152b98b0c7d86</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMarker</span></td><td><code>f84ab0aa4401f5c6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMatcher</span></td><td><code>0f3f05080ade9bf3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationMatcher.1</span></td><td><code>80b88eded9ee9335</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.InvocationsFinder</span></td><td><code>fb5d2489463954fb</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatcherApplicationStrategy</span></td><td><code>61ba3ebb5e5c5981</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatcherApplicationStrategy.MatcherApplicationType</span></td><td><code>338c14ae51b8af66</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.MatchersBinder</span></td><td><code>b39b9426c9814ac7</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.TypeSafeMatching</span></td><td><code>0523de66dbdeab05</code></td></tr><tr><td><span class="el_class">org.mockito.internal.invocation.mockref.MockWeakReference</span></td><td><code>ac456a2a5b693d6e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.listeners.StubbingLookupNotifier</span></td><td><code>6b94cdf6e74e7282</code></td></tr><tr><td><span class="el_class">org.mockito.internal.listeners.VerificationStartedNotifier</span></td><td><code>b5b225637c7897a9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.Any</span></td><td><code>0ef740a4f4344abc</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.Equals</span></td><td><code>1bb4b6d86ac8a29b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.matchers.LocalizedMatcher</span></td><td><code>23d1d86d4409a5f9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ArgumentMatcherStorageImpl</span></td><td><code>83a3e5fcf460cd8d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.MockingProgressImpl</span></td><td><code>f0bb250cbbac6b8b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.MockingProgressImpl.1</span></td><td><code>a1ad00aef40918d3</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.SequenceNumber</span></td><td><code>fd2449d941ed721b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ThreadSafeMockingProgress</span></td><td><code>5ef9d6f1a875dc18</code></td></tr><tr><td><span class="el_class">org.mockito.internal.progress.ThreadSafeMockingProgress.1</span></td><td><code>1c85bd989b9441aa</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.BaseStubbing</span></td><td><code>0fd68c747fb3e1ac</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.DoAnswerStyleStubbing</span></td><td><code>f2057cd0aee1a50b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.InvocationContainerImpl</span></td><td><code>c16048ff1c19fd3e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.OngoingStubbingImpl</span></td><td><code>646db189ef95b765</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.CallsRealMethods</span></td><td><code>16da2f316c946fec</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.DefaultAnswerValidator</span></td><td><code>de0c324c57207f3c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.answers.InvocationInfo</span></td><td><code>558393abbeee5acd</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.GloballyConfiguredAnswer</span></td><td><code>f308e3faf16f6212</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsDeepStubs</span></td><td><code>0ba1eff301842cf2</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsEmptyValues</span></td><td><code>fb54ce54650adcb6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsMocks</span></td><td><code>f72b0e3d274c564c</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsMoreEmptyValues</span></td><td><code>4a4f9f45d874e56f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.ReturnsSmartNulls</span></td><td><code>8920a999612923c9</code></td></tr><tr><td><span class="el_class">org.mockito.internal.stubbing.defaultanswers.TriesToReturnSelf</span></td><td><code>b9eec415ba57796d</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.Checks</span></td><td><code>c6a1d20be0e11d77</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.ConsoleMockitoLogger</span></td><td><code>b50468c7ba4abdba</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.DefaultMockingDetails</span></td><td><code>eb4060f4b147ea49</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockCreationValidator</span></td><td><code>e30e40e6aabce2d8</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockNameImpl</span></td><td><code>c374206ea5426e18</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.MockUtil</span></td><td><code>22b633290ad851ce</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.ObjectMethodsGuru</span></td><td><code>2e0e0e3f520fd2eb</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.Primitives</span></td><td><code>3126a7777504288b</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.StringUtil</span></td><td><code>fc180f2e2cfb19c5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsMockWrapper</span></td><td><code>2ddb4b6df187f1be</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsSafeSet</span></td><td><code>f13e3c60a5f3dac1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.HashCodeAndEqualsSafeSet.1</span></td><td><code>04a9da11a07d7dbd</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.Iterables</span></td><td><code>f2f271f84160edef</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.collections.Sets</span></td><td><code>ba0259dd5d0f4cdf</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal</span></td><td><code>a9d73ba77d913255</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.2</span></td><td><code>a27d6b80a8d8bf8e</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.3</span></td><td><code>7dd9cb94952e0870</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.DetachedThreadLocal.Cleaner</span></td><td><code>a2ff4aab71c0d490</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap</span></td><td><code>d8c9ef1cdcd399b1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.LatentKey</span></td><td><code>f3c567dfe6ce1b23</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.WeakKey</span></td><td><code>b4650d7e8c02ff74</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentMap.WithInlinedExpunction</span></td><td><code>08bb38228585b485</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet</span></td><td><code>a3ede170dca14bf5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet.1</span></td><td><code>d59e6e47b1f360e5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.concurrent.WeakConcurrentSet.Cleaner</span></td><td><code>ffe9c1e341be01e5</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.io.IOUtil</span></td><td><code>dd048f2a9c401164</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.FieldReader</span></td><td><code>adeb073a2d5e6410</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.InstrumentationMemberAccessor</span></td><td><code>c76a00a7d336ca40</code></td></tr><tr><td><span class="el_class">org.mockito.internal.util.reflection.ModuleMemberAccessor</span></td><td><code>137604b9ad99ea8a</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.DefaultRegisteredInvocations</span></td><td><code>2c81cbe8de7c014f</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.MockAwareVerificationMode</span></td><td><code>7d19b8cd6993b835</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.Times</span></td><td><code>4aa9f1560e0ec411</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationDataImpl</span></td><td><code>c16c5da13b7fc7f1</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationEventImpl</span></td><td><code>4f05d64f894ba8bc</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.VerificationModeFactory</span></td><td><code>1ca686294e0a83db</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.checkers.MissingInvocationChecker</span></td><td><code>dfc0bf910d6f5cc6</code></td></tr><tr><td><span class="el_class">org.mockito.internal.verification.checkers.NumberOfInvocationsChecker</span></td><td><code>e5dd03036a7ede01</code></td></tr><tr><td><span class="el_class">org.mockito.mock.SerializableMode</span></td><td><code>35d1981ec862bf72</code></td></tr><tr><td><span class="el_class">org.mockito.plugins.AnnotationEngine.NoAction</span></td><td><code>cb985c28ad2cce16</code></td></tr><tr><td><span class="el_class">org.modelmapper.AbstractConverter</span></td><td><code>54a41831c2187d2d</code></td></tr><tr><td><span class="el_class">org.modelmapper.ModelMapper</span></td><td><code>43321fd2b7cbee6d</code></td></tr><tr><td><span class="el_class">org.modelmapper.config.Configuration.AccessLevel</span></td><td><code>bc26ac8ce6766541</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher</span></td><td><code>a53cea4536278e98</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.DestTokensMatcher</span></td><td><code>a14ca205c451ffdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.StringIterator</span></td><td><code>acdb16860c413ef4</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.InexactMatcher.TokensIterator</span></td><td><code>82b619dd04618807</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.LooseMatchingStrategy</span></td><td><code>aa78a0af3e3c0f55</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.MatchingStrategies</span></td><td><code>8e9684a9fc9b8071</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers</span></td><td><code>2028a55f02d3ae9f</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers.CamelCaseNameTokenizer</span></td><td><code>6114cf2b3ddfae6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTokenizers.UnderscoreNameTokenizer</span></td><td><code>b5d5be6b8138612c</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers</span></td><td><code>f72ede052f2515b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers.1</span></td><td><code>48158ad88a1cf152</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NameTransformers.2</span></td><td><code>504dc70a74b2839d</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions</span></td><td><code>05d1c9525fb6d1fa</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.1</span></td><td><code>d6fe49f3f9213c2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.2</span></td><td><code>ea198cacd03e8abb</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.NamingConventions.3</span></td><td><code>0826c2d7d9434306</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StandardMatchingStrategy</span></td><td><code>1fa76799644912ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StandardMatchingStrategy.Matcher</span></td><td><code>e82c2a0bbdd4f933</code></td></tr><tr><td><span class="el_class">org.modelmapper.convention.StrictMatchingStrategy</span></td><td><code>6ab4d827ddc9ea74</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ConfigurableConditionExpressionImpl</span></td><td><code>70232be1e3249c7c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors</span></td><td><code>7f235eba08e66c95</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.1</span></td><td><code>4f3cf785db948880</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.2</span></td><td><code>19b4fbcfc2fc2ab2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.3</span></td><td><code>e85e043c95825482</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.4</span></td><td><code>745739f13993d8be</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Errors.Converter</span></td><td><code>32d7f94cf1b5075f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ExplicitMappingBuilder.MappingOptions</span></td><td><code>c1080aa2085e3f2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder</span></td><td><code>56632f320446ff15</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.DestTokenIterator</span></td><td><code>0eb26fa8e54b6e69</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.SourceTokensMatcher</span></td><td><code>f160c7f2f7b1cca1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ImplicitMappingBuilder.WeightPropertyMappingImpl</span></td><td><code>9e92ce1acaa7c1e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.InheritingConfiguration</span></td><td><code>1127edf2e2d9e15a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.MappingEngineImpl</span></td><td><code>92576e9a546b116d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.MappingImpl</span></td><td><code>c326c78f2c3c8670</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.Pair</span></td><td><code>e61dbaa420a99298</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl</span></td><td><code>a53bff55bc6c3ab6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.AbstractMethodInfo</span></td><td><code>c5bda1197c5eb460</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.MethodAccessor</span></td><td><code>0290dd0c178d1825</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoImpl.MethodMutator</span></td><td><code>09ccbb8a4d1bac35</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoRegistry</span></td><td><code>12e8a563b5f964ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoRegistry.PropertyInfoKey</span></td><td><code>14277812f397e435</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver</span></td><td><code>51587c52ade9a4d9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.1</span></td><td><code>9d51a010a2d88b02</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.2</span></td><td><code>e92e8aa76cc7defa</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.3</span></td><td><code>2c9cd3796f0230f4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoResolver.DefaultPropertyResolver</span></td><td><code>2429e85b2fa05890</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver</span></td><td><code>9d11613eb9974adf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver.1</span></td><td><code>91664953b64f8944</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyInfoSetResolver.ResolveRequest</span></td><td><code>3e9f7ad9ab256c3b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyMappingImpl</span></td><td><code>7bd5372edee76274</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyNameInfoImpl</span></td><td><code>af06ff3ed5fba1c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector</span></td><td><code>462925734cac7ce0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector.DestinationInterceptor</span></td><td><code>981d2ddeac4d3795</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.PropertyReferenceCollector.SourceInterceptor</span></td><td><code>37f5256495955251</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ProxyFactory</span></td><td><code>10bdf0bc6465e09b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.ReferenceMapExpressionImpl</span></td><td><code>81ddcd28d49f955f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoImpl</span></td><td><code>56f942290a744187</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoRegistry</span></td><td><code>1d76af7c2e988b48</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeInfoRegistry.TypeInfoKey</span></td><td><code>3967d092c15e2d2c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl</span></td><td><code>412f688995b88d27</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.PathProperties</span></td><td><code>c173dcdb218aa282</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.PathProperty</span></td><td><code>d9783ee39b654004</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapImpl.Property</span></td><td><code>1705e4e88b89c67e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeMapStore</span></td><td><code>792acaaa15e25901</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypePair</span></td><td><code>74c8f803f89281ed</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.TypeResolvingList</span></td><td><code>37326cb6912004e1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.AnnotationWriter</span></td><td><code>b00d19ab1b0f5777</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Attribute</span></td><td><code>d8156d56ef7277ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ByteVector</span></td><td><code>0bdb2054c0030d50</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ClassVisitor</span></td><td><code>7ba7b61d4dd4e9d8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.ClassWriter</span></td><td><code>64d2ef772a5468e1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.FieldVisitor</span></td><td><code>dfa1c4ec138e2f82</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.FieldWriter</span></td><td><code>77b43de1c9d1e4eb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Handler</span></td><td><code>03a2093dd943e2fd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.MethodVisitor</span></td><td><code>174eb439999427b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.MethodWriter</span></td><td><code>bd8858b10c0e8d6c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Symbol</span></td><td><code>c96f206f91fefc9e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.SymbolTable</span></td><td><code>5087b58210933ea9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.SymbolTable.Entry</span></td><td><code>88d883b0bff633c3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.Type</span></td><td><code>538236d0700a9e2a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.TypeReference</span></td><td><code>9fa711b172748e00</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.signature.SignatureVisitor</span></td><td><code>d9807a585c6997f0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.asm.signature.SignatureWriter</span></td><td><code>b2175805563611e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ByteBuddy</span></td><td><code>0b6412866086f3f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion</span></td><td><code>39c2a626cfc09ff1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion.VersionLocator.Resolved</span></td><td><code>3b593902f9ff8bf2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.ClassFileVersion.VersionLocator.Resolver</span></td><td><code>7abac68cb82dac09</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.AbstractBase</span></td><td><code>4a1f4d6aedb52151</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.Suffixing</span></td><td><code>fae0e47f9ea54526</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType</span></td><td><code>be5e642e5a9c44df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.NamingStrategy.SuffixingRandom</span></td><td><code>a5b86870b502c795</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.asm.AsmVisitorWrapper.NoOp</span></td><td><code>919f93dc2c7a2bdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.ByteCodeElement.Token.TokenList</span></td><td><code>5d9c641fd2dc9c81</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.ModifierReviewable.AbstractBase</span></td><td><code>6140190e67a30942</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.NamedElement.WithDescriptor</span></td><td><code>2175203ff90e4e01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.TypeVariableSource.AbstractBase</span></td><td><code>b59bdc652cd2e97b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationDescription.AbstractBase</span></td><td><code>820ad2576b08cef6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationDescription.ForLoadedAnnotation</span></td><td><code>8a59ef7c20555bff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.AbstractBase</span></td><td><code>c904e933e07079bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.Empty</span></td><td><code>363155b6e3f39d19</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.Explicit</span></td><td><code>bd951c4232720951</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationList.ForLoadedAnnotations</span></td><td><code>51b186ce0bab6bbc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationSource.Empty</span></td><td><code>479cca50794a244b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.annotation.AnnotationValue</span></td><td><code>5cca5fe914567e5c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription</span></td><td><code>40fecc183b380e6a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.AbstractBase</span></td><td><code>cdddf40daf074f56</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.InDefinedShape.AbstractBase</span></td><td><code>42f2fc4ab80e3638</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.Latent</span></td><td><code>00666c4a9a1aabe5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.SignatureToken</span></td><td><code>538b8e9e81c3de41</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldDescription.Token</span></td><td><code>c95ff0dd57bd53d3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldList.AbstractBase</span></td><td><code>2c1a70f4f0a60221</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.field.FieldList.ForTokens</span></td><td><code>f2c0df46899dde72</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription</span></td><td><code>9006e7519ebcd8df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.AbstractBase</span></td><td><code>155fd55beda3a4d0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.ForLoadedConstructor</span></td><td><code>9b292131585c9a7c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.ForLoadedMethod</span></td><td><code>5e2394e96e8915bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase</span></td><td><code>6206a53325a72f4e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.InDefinedShape.AbstractBase.ForLoadedExecutable</span></td><td><code>344bd86c8b51fe6c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Latent</span></td><td><code>b3f339a70bad5ecf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Latent.TypeInitializer</span></td><td><code>f03017ec6bd43b0d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.SignatureToken</span></td><td><code>1bedffcea14132ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.Token</span></td><td><code>33978c9b3db3cea0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.TypeSubstituting</span></td><td><code>3075c88265358f70</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodDescription.TypeToken</span></td><td><code>129b6af41c198ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.AbstractBase</span></td><td><code>d334684d92b8066c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.Explicit</span></td><td><code>43fe05bdec4adb18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.ForLoadedMethods</span></td><td><code>f437bec95bdc1e01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.ForTokens</span></td><td><code>30c9731dd4ea41f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.MethodList.TypeSubstituting</span></td><td><code>19388f0772372046</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.AbstractBase</span></td><td><code>82163b59dbd04120</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter</span></td><td><code>015b6b5e30e28395</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfConstructor</span></td><td><code>3d841d174313be09</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.ForLoadedParameter.OfMethod</span></td><td><code>00f0163151439a69</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.InDefinedShape.AbstractBase</span></td><td><code>334461156858fabf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.Latent</span></td><td><code>480c8e1dd228b4c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.Token</span></td><td><code>798e97b3b90ad2bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterDescription.TypeSubstituting</span></td><td><code>f2c791b64d2efeb4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.AbstractBase</span></td><td><code>9ad50b6300fe78bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.Empty</span></td><td><code>588d6f547e513e64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable</span></td><td><code>808f13e5056fafdb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfConstructor</span></td><td><code>8561af49d8666914</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForLoadedExecutable.OfMethod</span></td><td><code>29c51214c1be8969</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.ForTokens</span></td><td><code>483e3f52e29aebea</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.method.ParameterList.TypeSubstituting</span></td><td><code>9435ecc275ab0713</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.ModifierContributor.Resolver</span></td><td><code>3cf15614001dd544</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.TypeManifestation</span></td><td><code>164a189cf661635b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.Visibility</span></td><td><code>34fd43395b07df1c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.modifier.Visibility.1</span></td><td><code>87386e5770669ad8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.AbstractBase</span></td><td><code>85022d5d5a96bac2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.ForLoadedPackage</span></td><td><code>b6f837f548427bc4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.PackageDescription.Simple</span></td><td><code>f1eff95b0fe97384</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.RecordComponentList.AbstractBase</span></td><td><code>566ce6fe60beb898</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.RecordComponentList.ForTokens</span></td><td><code>f7814bebfa5efdb1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDefinition.Sort</span></td><td><code>819d929dfa7ac6d0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription</span></td><td><code>ae7f0f0ca93a442b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.AbstractBase</span></td><td><code>157bbd6c92a95990</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.AbstractBase.OfSimpleType</span></td><td><code>8e936b4939ee98bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.ForLoadedType</span></td><td><code>14395905e38e6a51</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic</span></td><td><code>f7c01138b383de66</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AbstractBase</span></td><td><code>f80f36ba94358a0e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator</span></td><td><code>060c2bf377215df1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.Chained</span></td><td><code>5b59dd6200291ad3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableExceptionType</span></td><td><code>c92812817d6dd66e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedExecutableParameterType</span></td><td><code>2c1437a6c3ed68fd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedInterface</span></td><td><code>2d610350c2d28a99</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedMethodReturnType</span></td><td><code>c5f9db625ae27882</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.Delegator.ForLoadedSuperClass</span></td><td><code>dbcdc6163a5a41a5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForTypeArgument</span></td><td><code>5691bed1251a0740</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.ForWildcardUpperBoundType</span></td><td><code>968f03c0134ad4ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.AnnotationReader.NoOp</span></td><td><code>1731c39d0a5d939e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection</span></td><td><code>798eb98f7429c121</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedReturnType</span></td><td><code>bb6c3bebb2aa7cb9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.ForLoadedSuperClass</span></td><td><code>64179c0ed8a10a4b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfConstructorParameter</span></td><td><code>c018d350f401eb96</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.OfMethodParameter</span></td><td><code>7473212b1b66b7e3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation</span></td><td><code>72ec2236bd70ff81</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithEagerNavigation.OfAnnotatedElement</span></td><td><code>b13abff04a413cb0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation</span></td><td><code>cdda23bbd2c7ba63</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithLazyNavigation.OfAnnotatedElement</span></td><td><code>b8500b6e26ada2dc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.LazyProjection.WithResolvedErasure</span></td><td><code>7daec73a432f59d9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType</span></td><td><code>7632c49db4b3cb18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForErasure</span></td><td><code>4fd80467aad22e37</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfNonGenericType.ForLoadedType</span></td><td><code>23175236249841d1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType</span></td><td><code>d794e834544758c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForGenerifiedErasure</span></td><td><code>98a7e4bd3ed5d710</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType</span></td><td><code>2c28b6254eb04409</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfParameterizedType.ForLoadedType.ParameterArgumentTypeList</span></td><td><code>b3a47bb50ca2f0bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType</span></td><td><code>7404631780df1a64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType</span></td><td><code>9222ebef3377427b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardLowerBoundTypeList</span></td><td><code>340f692a52e3f0a8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.OfWildcardType.ForLoadedType.WildcardUpperBoundTypeList</span></td><td><code>5808a13856a9b29c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForRawType</span></td><td><code>acc7814c99135601</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor</span></td><td><code>fc030332dd60eeb7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument</span></td><td><code>c995523583d71b39</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying</span></td><td><code>738e32ac114c3578</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.1</span></td><td><code>6d4851b88b8f5c6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Reifying.2</span></td><td><code>21322b1e454cb57d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor</span></td><td><code>2c55f713a28c7937</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForAttachment</span></td><td><code>86ba76709918357a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Substitutor.ForDetachment</span></td><td><code>6ed1f77db3efd460</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator</span></td><td><code>03c95528325e1982</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.1</span></td><td><code>15fbb65a5a33596a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.2</span></td><td><code>bfaf29f443a4ae2e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.3</span></td><td><code>cfd1dd9b0f8a2a47</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Generic.Visitor.Validator.ForTypeAnnotations</span></td><td><code>8e38072b4af96b7f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeDescription.Latent</span></td><td><code>ced0e4fc8902b4a0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList</span></td><td><code>3bc3c37310de2448</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.AbstractBase</span></td><td><code>5a6e010bdabc476b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Empty</span></td><td><code>bea7329dcf5c869d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Explicit</span></td><td><code>b744e07d6f89b7c3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.ForLoadedTypes</span></td><td><code>3af2b321e213dc5d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.AbstractBase</span></td><td><code>63309fbe86cc9e92</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.Empty</span></td><td><code>f275978e584ae54f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.Explicit</span></td><td><code>927b18392a653370</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes</span></td><td><code>b94779df6db659cc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.OfTypeVariables</span></td><td><code>9bfda16975f5eb16</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForDetachedTypes.WithResolvedErasure</span></td><td><code>947dcc7fba048024</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes</span></td><td><code>335d08d8bf5da82c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.ForLoadedTypes.OfTypeVariables</span></td><td><code>013737856c70f366</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfConstructorExceptionTypes</span></td><td><code>be60842984533ef6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes</span></td><td><code>660134991291b4af</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfLoadedInterfaceTypes.TypeProjection</span></td><td><code>489bf58b3603e6fb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes</span></td><td><code>202bc2fdbefc6057</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.description.type.TypeList.Generic.OfMethodExceptionTypes.TypeProjection</span></td><td><code>27491bc9b8d8e730</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase</span></td><td><code>85b32e4013c977a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter</span></td><td><code>df078118a2a5f417</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter</span></td><td><code>594b57e9531624e0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Adapter.MethodMatchAdapter.AnnotationAdapter</span></td><td><code>c4ecec4c7a75d889</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.AbstractBase.Delegator</span></td><td><code>c045a392eb5d0809</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase</span></td><td><code>d726a10554247643</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.AbstractBase.Adapter</span></td><td><code>79d012e8272d51cb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ImplementationDefinition.AbstractBase</span></td><td><code>28296f2925418254</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Builder.MethodDefinition.ReceiverTypeDefinition.AbstractBase</span></td><td><code>cb62692fefd4a3ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default</span></td><td><code>04893d575b765044</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default.Loaded</span></td><td><code>228383be4ae4ea5a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.DynamicType.Default.Unloaded</span></td><td><code>d6d98f5be9a78daf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.TargetType</span></td><td><code>b082b35421258b13</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.Transformer.NoOp</span></td><td><code>eb7ed53d59a2b9da</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.TypeResolutionStrategy.Passive</span></td><td><code>a97129420c1200fc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default</span></td><td><code>d720508ed9466a6b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.1</span></td><td><code>8490d50b829a0487</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.2</span></td><td><code>612bcfc8d2dec5dd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.VisibilityBridgeStrategy.Default.3</span></td><td><code>c93ae196a334525b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassInjector.AbstractBase</span></td><td><code>7bbf62a2d7dcffcb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassInjector.UsingLookup</span></td><td><code>d724309322a6b66f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassLoadingStrategy</span></td><td><code>973faa6af54794e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.loading.ClassLoadingStrategy.UsingLookup</span></td><td><code>a1e2678099214597</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default</span></td><td><code>66f85c15b5aff62b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.1</span></td><td><code>ba54ed6042fcf6f5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.Default.2</span></td><td><code>98a324d9d81605ce</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.ClassWriterStrategy.FrameComputingClassWriter</span></td><td><code>8d7fb5212df90cf4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.FieldRegistry.Default</span></td><td><code>871865af08e9d847</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.FieldRegistry.Default.Compiled</span></td><td><code>7e4e17379acfdcf6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Default</span></td><td><code>cdf64ac0da1e3692</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default</span></td><td><code>708b2aaab2eb369e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.1</span></td><td><code>375f6583ac999ded</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.InstrumentedType.Factory.Default.2</span></td><td><code>1a3ac6c96fe07abf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler</span></td><td><code>e62e65c4ccc09e94</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.AbstractBase</span></td><td><code>a215be43b057c500</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default</span></td><td><code>b790384ed14e3cee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod</span></td><td><code>df6f57e760cbb6ee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod.Token</span></td><td><code>9938aa35a5e5508c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key</span></td><td><code>966af051a46bd586</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Detached</span></td><td><code>d503add1e4f22fa9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Harmonized</span></td><td><code>bb31c389e46ce7e7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store</span></td><td><code>ccdbf5ecfb6124c0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Initial</span></td><td><code>7da8bb7edfc7d895</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved</span></td><td><code>08cb390b95f4d2b8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node</span></td><td><code>1d3b7c27a4760d8b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Graph</span></td><td><code>3b06c4a1d7f40031</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Merger.Directional</span></td><td><code>d4301de9b5db9763</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Linked.Delegation</span></td><td><code>efcdc1fd62919a12</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.Node.Sort</span></td><td><code>65e23550e36817be</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodGraph.NodeList</span></td><td><code>85209ed477d5af18</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default</span></td><td><code>a6cbdf977539294b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled</span></td><td><code>df426aa97307f44f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Compiled.Entry</span></td><td><code>3edad35ca26addcf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Entry</span></td><td><code>56ec365957dc5628</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared</span></td><td><code>3066bf8e54756aa6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Default.Prepared.Entry</span></td><td><code>2376fd3a44aa360b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation</span></td><td><code>266090dae5175a22</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.MethodRegistry.Handler.ForImplementation.Compiled</span></td><td><code>f222709a51067789</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default</span></td><td><code>dfb561ffe5ba504b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.RecordComponentRegistry.Default.Compiled</span></td><td><code>40b559012dfe3630</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.Drain.Default</span></td><td><code>a7faa95c2bcff365</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.None</span></td><td><code>e7faad866de070ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeInitializer.Simple</span></td><td><code>ede23c299553f98f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeValidation</span></td><td><code>e5658f07d05b749a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default</span></td><td><code>85f92ab2d2536fd7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ClassDumpAction.Dispatcher.Disabled</span></td><td><code>6b2dbbd9c63112f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ForCreation</span></td><td><code>2c6d2528082988df</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.UnresolvedType</span></td><td><code>f8591b912d6ea7ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor</span></td><td><code>76ad6e6a443408e2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.Compound</span></td><td><code>b0717e19bb21a58e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClass</span></td><td><code>855d8a36b191c96d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.Constraint.ForClassFileVersion</span></td><td><code>50722e37d2eb32e2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingFieldVisitor</span></td><td><code>788ac31531f490bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.Default.ValidatingClassVisitor.ValidatingMethodVisitor</span></td><td><code>342f780bbfec3168</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.FieldPool.Record.ForImplicitField</span></td><td><code>abf427c6ab2e9ee0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.AccessBridgeWrapper</span></td><td><code>3a6d26554d93423c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod</span></td><td><code>7d1f0ddec5104901</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForDefinedMethod.WithBody</span></td><td><code>4e46fbb9520781ef</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.ForNonImplementedMethod</span></td><td><code>e844ad29fdfe843e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.TypeWriter.MethodPool.Record.Sort</span></td><td><code>b0334abbd56de846</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default</span></td><td><code>7be695ea08608488</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.1</span></td><td><code>eac29802245e4304</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.2</span></td><td><code>61d175698f052767</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.3</span></td><td><code>832144ed4f128683</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.4</span></td><td><code>8a7b0898510a0472</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy.Default.5</span></td><td><code>ca2e4f200d7339ab</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder</span></td><td><code>e8b940d1f3ef8b12</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.InstrumentableMatcher</span></td><td><code>9f27fd39bef8957c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget</span></td><td><code>b5d63841f3fd2f66</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.Factory</span></td><td><code>4db0c12c78570762</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver</span></td><td><code>f4f801a78fcc8c04</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.1</span></td><td><code>61158d542d38b55f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.dynamic.scaffold.subclass.SubclassImplementationTarget.OriginTypeResolver.2</span></td><td><code>eeead4f1774cb3cc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default</span></td><td><code>c52394f2b642798e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.CacheValueField</span></td><td><code>6dbbc013587d12a8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.Factory</span></td><td><code>d3cb95b94e402857</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.Default.FieldCacheEntry</span></td><td><code>17e90ad966aad40a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Context.ExtractableView.AbstractBase</span></td><td><code>cbfe80dca6744b29</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.SpecialMethodInvocation.AbstractBase</span></td><td><code>2d1c4d470e6ddb7e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.SpecialMethodInvocation.Simple</span></td><td><code>35471ada9369160f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase</span></td><td><code>b65e1cb6fb25b4ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation</span></td><td><code>40db7d5210456ae5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.1</span></td><td><code>7c457c813de6d41d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.Implementation.Target.AbstractBase.DefaultMethodInvocation.2</span></td><td><code>5cbf15c4d197ac7f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter</span></td><td><code>a51f1af68f6254b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter.ForInstance</span></td><td><code>d9324843fa71c2b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.InvocationHandlerAdapter.ForInstance.Appender</span></td><td><code>2d2bcd91c5f3c82c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.Compound</span></td><td><code>4ad0af187973602b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.ForStaticField</span></td><td><code>da400ad39e2dcda1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.LoadedTypeInitializer.NoOp</span></td><td><code>16a134163a526430</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall</span></td><td><code>b090138b3cf8c4a1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender</span></td><td><code>07da0ee1b62cb5bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler</span></td><td><code>0171719fef8e8351</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.1</span></td><td><code>76fd27a4952ff422</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.SuperMethodCall.Appender.TerminationHandler.2</span></td><td><code>203799d548c306e8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Default</span></td><td><code>1969418473e0c3a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.ForTypeAnnotations</span></td><td><code>e1a1ac6f19e60f64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnField</span></td><td><code>5620092070509b20</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationAppender.Target.OnType</span></td><td><code>36acc43238ad17e9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationRetention</span></td><td><code>1bda36dd12fa69bc</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default</span></td><td><code>cd6c4d935a00da0d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.1</span></td><td><code>1bc954c5e317614e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.AnnotationValueFilter.Default.2</span></td><td><code>73795f494fb3a41c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.FieldAttributeAppender.ForInstrumentedField</span></td><td><code>590347c2c77eabdd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.MethodAttributeAppender.NoOp</span></td><td><code>86485d8464746991</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.attribute.TypeAttributeAppender.ForInstrumentedType</span></td><td><code>feac84b744bec524</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom</span></td><td><code>d48fc4bf0f1ce62d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Compound</span></td><td><code>09a3ac3220b48442</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Simple</span></td><td><code>8ace03e1d70090b6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.ByteCodeAppender.Size</span></td><td><code>cd04b0151f40977d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal</span></td><td><code>efc293746f65a2f7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal.1</span></td><td><code>b75aedff0e27bd93</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.Removal.2</span></td><td><code>a42468e531ae63b1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase</span></td><td><code>34fa90365d45d484</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Compound</span></td><td><code>33ba1352da02c5c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Size</span></td><td><code>7d3fba41d71decbe</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackManipulation.Trivial</span></td><td><code>3324c59de75d5317</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.StackSize</span></td><td><code>8e86dd588fdc1f80</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.Assigner</span></td><td><code>f1284351f121fb33</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.Assigner.Typing</span></td><td><code>7154d580f26cc34f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.TypeCasting</span></td><td><code>001bd40528bd9197</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveTypeAwareAssigner</span></td><td><code>936def03137426a9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate</span></td><td><code>f4f22d3d6e57b02f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveUnboxingDelegate.ImplicitlyTypedUnboxingResponsible</span></td><td><code>b553960e8d5ce2c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner</span></td><td><code>45f8be2b413b1649</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.reference.GenericTypeAwareAssigner</span></td><td><code>0f1c534bcf71c63e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.assign.reference.ReferenceTypeAwareAssigner</span></td><td><code>014f86a6b34449a9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory</span></td><td><code>f1b7835d7afb40f4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator</span></td><td><code>7fcbf28d332de9ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayCreator.ForReferenceType</span></td><td><code>43b8a3214c3cdd01</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.collection.ArrayFactory.ArrayStackManipulation</span></td><td><code>b31b2b34f956ccdf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.ClassConstant</span></td><td><code>a4a12f4e3206fa54</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.ClassConstant.ForReferenceType</span></td><td><code>4beaf5868368fbed</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.DefaultValue</span></td><td><code>8b73a9c360a67a28</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.DoubleConstant</span></td><td><code>52bd9b449085618e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.FloatConstant</span></td><td><code>5fb3ccc731587bc4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.IntegerConstant</span></td><td><code>9e03f8dd11e86ff1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.LongConstant</span></td><td><code>986b2e266755333a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant</span></td><td><code>7330180ddcf37c17</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant.CachedMethod</span></td><td><code>98bb7839f408950c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.MethodConstant.ForMethod</span></td><td><code>163dd6bf0ea02943</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.NullConstant</span></td><td><code>2b2f956a02afa1c6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.constant.TextConstant</span></td><td><code>49197405714dea64</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess</span></td><td><code>e3d0ce9ea271fceb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher</span></td><td><code>bd4ece4f12887747</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.AbstractFieldInstruction</span></td><td><code>97cf3c81d8231fa9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldGetInstruction</span></td><td><code>b9d159e4e9112c59</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.FieldAccess.AccessDispatcher.FieldPutInstruction</span></td><td><code>72a43f4e9679b6ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodInvocation</span></td><td><code>c4bb2177e787b426</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodInvocation.Invocation</span></td><td><code>9669ea760b125f7e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodReturn</span></td><td><code>bc4ddd5778a4cdc2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess</span></td><td><code>42588dd07e5b8ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading</span></td><td><code>43418c9b5441eacf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.MethodLoading.TypeCastingHandler.NoOp</span></td><td><code>7b915a887c544ab7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.implementation.bytecode.member.MethodVariableAccess.OffsetLoading</span></td><td><code>e8ca83e07ead628a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.BooleanMatcher</span></td><td><code>47dab3336066dcea</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.CollectionItemMatcher</span></td><td><code>dd0a8fd098f08871</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.CollectionSizeMatcher</span></td><td><code>0c7222d5d06af59c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.DeclaringTypeMatcher</span></td><td><code>74a318108120aa5e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase</span></td><td><code>36fbbb6bfc2ece41</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.Conjunction</span></td><td><code>42633e90154b0623</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatcher.Junction.Disjunction</span></td><td><code>ba908be6031df4de</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ElementMatchers</span></td><td><code>ba1d5e1af7eb7cc1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.EqualityMatcher</span></td><td><code>f1a48271dc4688ad</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ErasureMatcher</span></td><td><code>2e9c10993e76bf6e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FieldTypeMatcher</span></td><td><code>841713a9042ea632</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FilterableList.AbstractBase</span></td><td><code>d95f2cff9af9994b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.FilterableList.Empty</span></td><td><code>c0e6b0ced2219e92</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.LatentMatcher.Resolved</span></td><td><code>f0d9e14566fe2cf6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodParameterTypeMatcher</span></td><td><code>27c523b204fa80f3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodParametersMatcher</span></td><td><code>7f28b58cb5f399aa</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodReturnTypeMatcher</span></td><td><code>b0450a1fb3e3332c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher</span></td><td><code>41720d5a722b92cb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort</span></td><td><code>8c29527e8b72c070</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.1</span></td><td><code>64e57b23123c3182</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.2</span></td><td><code>c9bffa50e4b10efb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.3</span></td><td><code>6e603721a528d1b9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.4</span></td><td><code>f10146499ec67ad8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.MethodSortMatcher.Sort.5</span></td><td><code>83e156e02f9d03bb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ModifierMatcher</span></td><td><code>94f631cedb860dc1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.ModifierMatcher.Mode</span></td><td><code>bf1c07ebe143b2b0</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.NameMatcher</span></td><td><code>e03864915b4afdf7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.NegatingMatcher</span></td><td><code>a55535b89cece21a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.SignatureTokenMatcher</span></td><td><code>cadf8ac6384b69ac</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher</span></td><td><code>0c2f102b0598c818</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode</span></td><td><code>92d3281cfb83177d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.1</span></td><td><code>8c658a6a6254930b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.2</span></td><td><code>24d44a58c6a1234f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.3</span></td><td><code>7d5e04fe568ebd44</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.4</span></td><td><code>813149e597183350</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.5</span></td><td><code>ef37a3899d944e20</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.6</span></td><td><code>25013d8f677d241d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.7</span></td><td><code>531001b28aac3526</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.8</span></td><td><code>59adebfb24d626bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.StringMatcher.Mode.9</span></td><td><code>5e8c8a6141ff4d4d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.TypeSortMatcher</span></td><td><code>da975afe2a8cb3bf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.matcher.VisibilityMatcher</span></td><td><code>2261bde512697ad5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.AbstractBase</span></td><td><code>b52fb7f9a23cc7c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.AbstractBase.Hierarchical</span></td><td><code>d4685211419d16c5</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.CacheProvider.Simple</span></td><td><code>452ee91ca0489cf1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.ClassLoading</span></td><td><code>b1251eab70ef5d8a</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.pool.TypePool.Empty</span></td><td><code>f9b65eb4e753f731</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.CompoundList</span></td><td><code>d8575a0145fb2233</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.GraalImageCode</span></td><td><code>4b016d07d8cbcb79</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.Invoker.Dispatcher</span></td><td><code>331191d6649fcc9d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaModule</span></td><td><code>da1d0ba7dc4a9a11</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaType</span></td><td><code>139131b9f3c4393b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.JavaType.LatentTypeWithSimpleName</span></td><td><code>614db04ddd96fa4b</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.OpenedClassReader</span></td><td><code>2f7bbb3856f56d50</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.RandomString</span></td><td><code>f8fe50d9ab60a126</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher</span></td><td><code>4ba705741513943c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForInstanceCheck</span></td><td><code>e1ede6df3d22bd17</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForNonStaticMethod</span></td><td><code>860b8f4e1eb76c0e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher.ForStaticMethod</span></td><td><code>be12ebca4a0d9171</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader</span></td><td><code>6900779c9a330881</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.CreationAction</span></td><td><code>5111a9003a405da9</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.DynamicClassLoader.Resolver.ForModuleSystem</span></td><td><code>f61d072133ec0a53</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.InvokerCreationAction</span></td><td><code>7400ba01b08088b8</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.dispatcher.JavaDispatcher.ProxiedInvocationHandler</span></td><td><code>d6eb9674a95f2f0c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.bytebuddy.utility.privilege.GetSystemPropertyAction</span></td><td><code>54ac71eddf9cb81f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ArrayConverter</span></td><td><code>b34a69626ec93465</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.AssignableConverter</span></td><td><code>1490ced60c779bff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.BooleanConverter</span></td><td><code>37ebe15b7b963c8f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.CalendarConverter</span></td><td><code>a1f6fc92267a4267</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.CharacterConverter</span></td><td><code>932b2fc0a9f71424</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ConverterStore</span></td><td><code>fa853a924c7c0c39</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.DateConverter</span></td><td><code>d616429fab58346c</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.EnumConverter</span></td><td><code>9c9472f80463860f</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.FromOptionalConverter</span></td><td><code>0420eb91351a3cbd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.MapConverter</span></td><td><code>e58baf703ea7e83d</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.MergingCollectionConverter</span></td><td><code>eb2e56e38f470577</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.NumberConverter</span></td><td><code>4f0fb4ecd7f67d51</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.OptionalConverter</span></td><td><code>5f5b3a1bf97c75c4</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.StringConverter</span></td><td><code>2b80eb1a37053e63</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.ToOptionalConverter</span></td><td><code>197599b256a00d48</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.converter.UuidConverter</span></td><td><code>3a558e39f681491e</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.ObjenesisBase</span></td><td><code>44cefb4ca7037448</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.ObjenesisStd</span></td><td><code>0cc2933320d6bdb6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.instantiator.sun.SunReflectionFactoryHelper</span></td><td><code>245240023951dae1</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.instantiator.sun.SunReflectionFactoryInstantiator</span></td><td><code>7ee33a928b596145</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>1fa4784ad17a7dd2</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.PlatformDescription</span></td><td><code>2680e11f224a75cd</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>30319d9043310633</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver</span></td><td><code>9b27827089be38ee</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver.1</span></td><td><code>a704db94c7cec047</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.typetools.TypeResolver.4</span></td><td><code>561e2a80f3069ed7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Assert</span></td><td><code>44b0ea6cc4e6cdd3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.CopyOnWriteLinkedHashMap</span></td><td><code>bbc87ddcad7218a7</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Iterables</span></td><td><code>ac328b5b172563ff</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Primitives</span></td><td><code>1a59b6e5e917db24</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Stack</span></td><td><code>08bd88c0a3c74cd6</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Strings</span></td><td><code>e48bc9892a4e6dbf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.util.Types</span></td><td><code>3317081bf3670bbf</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valueaccess.MapValueReader</span></td><td><code>86dbdab11752babb</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valueaccess.ValueAccessStore</span></td><td><code>d83862642f1faee3</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valuemutate.MapValueWriter</span></td><td><code>65912529dacd3722</code></td></tr><tr><td><span class="el_class">org.modelmapper.internal.valuemutate.ValueMutateStore</span></td><td><code>d93a42310a852dc2</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.ConditionalConverter.MatchResult</span></td><td><code>a7ebd5aee7678130</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.NameableType</span></td><td><code>557aa07ebbc89bab</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.PropertyType</span></td><td><code>256d3b179a8a06ab</code></td></tr><tr><td><span class="el_class">org.modelmapper.spi.Tokens</span></td><td><code>2e103039fb7d218d</code></td></tr><tr><td><span class="el_class">org.objenesis.ObjenesisBase</span></td><td><code>0c1d2fd83029257f</code></td></tr><tr><td><span class="el_class">org.objenesis.ObjenesisStd</span></td><td><code>f35c83a75caea811</code></td></tr><tr><td><span class="el_class">org.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>b0aaa6460452f5ce</code></td></tr><tr><td><span class="el_class">org.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>abae05ba56ea35a6</code></td></tr><tr><td><span class="el_class">org.postgresql.Driver</span></td><td><code>27e41adf441bccd9</code></td></tr><tr><td><span class="el_class">org.postgresql.Driver.1</span></td><td><code>2314368a2e89297e</code></td></tr><tr><td><span class="el_class">org.postgresql.PGProperty</span></td><td><code>6c7bd76e6d3b63b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner</span></td><td><code>d40c54d79e9278fa</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.BaseKey</span></td><td><code>401b9da5ca167633</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.Key</span></td><td><code>b8c0a9bff5ee2a4a</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.StringReference</span></td><td><code>f73da7fd288de9f7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.AsciiStringInterner.TempKey</span></td><td><code>58c5e75fbddc51a4</code></td></tr><tr><td><span class="el_class">org.postgresql.core.BaseQueryKey</span></td><td><code>d86be4127ec3a07f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CachedQuery</span></td><td><code>61aaebb22ffec8e3</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CachedQueryCreateAction</span></td><td><code>168d93dd704e1736</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CallableQueryKey</span></td><td><code>f61d402a8c54b3e7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.CommandCompleteParser</span></td><td><code>6f313558ceb4a7b9</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ConnectionFactory</span></td><td><code>19d6fc69721220c0</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Encoding</span></td><td><code>0d5d96c1636af308</code></td></tr><tr><td><span class="el_class">org.postgresql.core.EncodingPredictor.DecodeResult</span></td><td><code>76b860bf67130133</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Field</span></td><td><code>bd2fd60bc993ca33</code></td></tr><tr><td><span class="el_class">org.postgresql.core.JavaVersion</span></td><td><code>8a869dd8f93b0133</code></td></tr><tr><td><span class="el_class">org.postgresql.core.JdbcCallParseInfo</span></td><td><code>31fff44edf034263</code></td></tr><tr><td><span class="el_class">org.postgresql.core.NativeQuery</span></td><td><code>0a47c6575d2ae9e8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.PGStream</span></td><td><code>f1d447bb2dda4d2c</code></td></tr><tr><td><span class="el_class">org.postgresql.core.PGStream.1</span></td><td><code>a081c74e102b47be</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser</span></td><td><code>c815c8fd79dbe082</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser.1</span></td><td><code>1c8e1a74174dcea0</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Parser.SqlParseState</span></td><td><code>70ccb5e89a34a2ea</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorBase</span></td><td><code>5550e94da7c34dcb</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorBase.1</span></td><td><code>128724ea7860f4a7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryExecutorCloseAction</span></td><td><code>092d185372956f2f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.QueryWithReturningColumnsKey</span></td><td><code>7a516a9c17203f44</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ResultHandlerBase</span></td><td><code>84e1c61c887ea6d8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ResultHandlerDelegate</span></td><td><code>407e0a9dc379f154</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ServerVersion</span></td><td><code>b850b8b524573c47</code></td></tr><tr><td><span class="el_class">org.postgresql.core.ServerVersion.1</span></td><td><code>68f1345096fc406f</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SocketFactoryFactory</span></td><td><code>fa4d56af3c9ee97a</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SqlCommand</span></td><td><code>7c00b60e18e0a6a2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.SqlCommandType</span></td><td><code>374b76d4a2814832</code></td></tr><tr><td><span class="el_class">org.postgresql.core.TransactionState</span></td><td><code>ca38250a7f418350</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Tuple</span></td><td><code>8d60317efe21eb10</code></td></tr><tr><td><span class="el_class">org.postgresql.core.Utils</span></td><td><code>0a8aa5ae4339a4b9</code></td></tr><tr><td><span class="el_class">org.postgresql.core.VisibleBufferedInputStream</span></td><td><code>42cf7b01586fcaaf</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.AuthenticationPluginManager</span></td><td><code>411db9096f128904</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ChannelBindingOption</span></td><td><code>549cc973b1e3f6a7</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.CompositeQuery</span></td><td><code>6e339158c18cda91</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ConnectionFactoryImpl</span></td><td><code>6bbd9479d56cd999</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ConnectionFactoryImpl.StartupParam</span></td><td><code>45decb99cf14fbec</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.DescribeRequest</span></td><td><code>f782c4158f36618e</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ExecuteRequest</span></td><td><code>b1af84930bb46303</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.Portal</span></td><td><code>b593fcc8a04291c2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl</span></td><td><code>1642f21b3c4e35b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl.1</span></td><td><code>ab32e545e29ab7d2</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.QueryExecutorImpl.4</span></td><td><code>7adf5392e5cda293</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.ScramAuthenticator</span></td><td><code>835608c6222f1324</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.SimpleParameterList</span></td><td><code>66a049e7691088b8</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.SimpleQuery</span></td><td><code>a244cd6d7c00b3f4</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.adaptivefetch.AdaptiveFetchCache</span></td><td><code>d8b6d2675de53a90</code></td></tr><tr><td><span class="el_class">org.postgresql.core.v3.replication.V3ReplicationProtocol</span></td><td><code>51b747e25571003d</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.CandidateHost</span></td><td><code>263b4ad5ef4d5964</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.GlobalHostStatusTracker</span></td><td><code>cd6599c1132e7e4b</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.GlobalHostStatusTracker.HostSpecStatus</span></td><td><code>32513701f6683929</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostChooserFactory</span></td><td><code>6bad626625c67358</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement</span></td><td><code>86567837fa8d3f3c</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.1</span></td><td><code>24a0f79ae38bf78b</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.2</span></td><td><code>2953c8148b46fb44</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.3</span></td><td><code>1a59117d6b36c63f</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.4</span></td><td><code>e28d906d48c1944a</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.5</span></td><td><code>0f5c34f5815dae42</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostRequirement.6</span></td><td><code>d063013185e46a33</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.HostStatus</span></td><td><code>60038ede5cf937be</code></td></tr><tr><td><span class="el_class">org.postgresql.hostchooser.SingleHostChooser</span></td><td><code>142cba6582b480b7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.AutoSave</span></td><td><code>a6378edefa6acd97</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.EscapeSyntaxCallMode</span></td><td><code>b570b243e99677a7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.FieldMetadata</span></td><td><code>c97b9c7142322054</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.GSSEncMode</span></td><td><code>b5f8689360dd1d4b</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgCallableStatement</span></td><td><code>f3cd4d390f6c41a1</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection</span></td><td><code>f6ff73f8bddc9d6c</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection.ReadOnlyBehavior</span></td><td><code>e01cc760a6f03f22</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnection.TransactionCommandHandler</span></td><td><code>85ce53bc0471e50d</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgConnectionCleaningAction</span></td><td><code>4cd3123161820a3a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgDatabaseMetaData</span></td><td><code>fdee44f5f75b4987</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgPreparedStatement</span></td><td><code>b7603cf3e785fa1f</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSet</span></td><td><code>5321e1293da3cf95</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSet.1</span></td><td><code>daa64b6d6e60c81a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgResultSetMetaData</span></td><td><code>413b1ea7f3693f9a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgStatement</span></td><td><code>1f5bc6a458676e1e</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PgStatement.StatementResultHandler</span></td><td><code>31b5b6e0de3e8f11</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.PreferQueryMode</span></td><td><code>56ec0680aa45af15</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.QueryExecutorTimeZoneProvider</span></td><td><code>8b1daebe6598ce40</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.ResourceLock</span></td><td><code>4e91bcea545a38a8</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.ResultWrapper</span></td><td><code>325bc6a6ab469d9a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.SslMode</span></td><td><code>8836e502073e34b7</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.SslNegotiation</span></td><td><code>eb16fceeacd30186</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.StatementCancelState</span></td><td><code>61c49a676c6cd67f</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils</span></td><td><code>d738d465a0c5eb90</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.Infinity</span></td><td><code>813aea8c1fbc3b3a</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.ParsedBinaryTimestamp</span></td><td><code>a53d3a944ffbcb1b</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TimestampUtils.ParsedTimestamp</span></td><td><code>90600c15db263de1</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbc.TypeInfoCache</span></td><td><code>8fb6053e91b652ef</code></td></tr><tr><td><span class="el_class">org.postgresql.jdbcurlresolver.PgPassParser</span></td><td><code>bf76248f2dee3f00</code></td></tr><tr><td><span class="el_class">org.postgresql.plugin.AuthenticationRequestType</span></td><td><code>0afc947089104233</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.saslprep.SASLprep</span></td><td><code>453c397350f5af0a</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ClientFinalProcessor</span></td><td><code>8964e132135485fb</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.MessageFlow.Stage</span></td><td><code>19cd616d5e88cd4e</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ScramClient</span></td><td><code>fa5dc4ac180f9b26</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ScramClient.Builder</span></td><td><code>6ff32b04fbae7dca</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.client.ServerFirstProcessor</span></td><td><code>8e4ce7e0b3bb2563</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.AbstractCharAttributeValue</span></td><td><code>dfe69b36b0378a65</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.AbstractScramMessage</span></td><td><code>5ff7a50bc785bdc1</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ClientFinalMessage</span></td><td><code>d7c9f67279a77c9f</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ClientFirstMessage</span></td><td><code>8f7580e905796cb5</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.CryptoUtil</span></td><td><code>9b4c38bccbc790b0</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2AttributeValue</span></td><td><code>474642b7531de038</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2Attributes</span></td><td><code>6552a81d32afc188</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2CbindFlag</span></td><td><code>e90abe5af97dccd9</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.Gs2Header</span></td><td><code>6fa447f922de7029</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramAttributeValue</span></td><td><code>03cdb83ebd51799e</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramAttributes</span></td><td><code>19311c7a1e475966</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramFunctions</span></td><td><code>7c5a6cf8e28bb9e5</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramMechanism</span></td><td><code>edbd0aadf110816d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ScramStringFormatting</span></td><td><code>3e4e0156d9c32a23</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ServerFinalMessage</span></td><td><code>d5c9028e2729babe</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.ServerFirstMessage</span></td><td><code>95b397eedf5341ce</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation</span></td><td><code>1ec916d2eef9454d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.1</span></td><td><code>b9939fce7c6e5183</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.2</span></td><td><code>6711095b63529622</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringPreparation.3</span></td><td><code>2ec24c8cc96e3d68</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringWritable</span></td><td><code>cc152c5f283c967c</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.StringWritableCsv</span></td><td><code>947099eb9aab0e3b</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.scram.common.util.Preconditions</span></td><td><code>d9e31938a537701d</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Option</span></td><td><code>16a1b1ab3ad99ce4</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Profile</span></td><td><code>a2fc13db1476c521</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Stringprep</span></td><td><code>5a2f66ee5ce522e8</code></td></tr><tr><td><span class="el_class">org.postgresql.shaded.com.ongres.stringprep.Tables</span></td><td><code>a4f7c2772c9a2379</code></td></tr><tr><td><span class="el_class">org.postgresql.util.ByteConverter</span></td><td><code>e4d3689ca1d354c3</code></td></tr><tr><td><span class="el_class">org.postgresql.util.GT</span></td><td><code>796e058c3d4964d3</code></td></tr><tr><td><span class="el_class">org.postgresql.util.HostSpec</span></td><td><code>209daea8c5602c65</code></td></tr><tr><td><span class="el_class">org.postgresql.util.IntList</span></td><td><code>b59c044b9a54dc29</code></td></tr><tr><td><span class="el_class">org.postgresql.util.JdbcBlackHole</span></td><td><code>1cbecf57eb94c954</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner</span></td><td><code>bdcbe1b3a2837c35</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner.1</span></td><td><code>74058cf25fb1e026</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LazyCleaner.Node</span></td><td><code>5b70812f551ac340</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LruCache</span></td><td><code>a2af7e34e5c23da4</code></td></tr><tr><td><span class="el_class">org.postgresql.util.LruCache.LimitedMap</span></td><td><code>cd5463018e8ce3ac</code></td></tr><tr><td><span class="el_class">org.postgresql.util.NumberParser</span></td><td><code>e783c479218c1488</code></td></tr><tr><td><span class="el_class">org.postgresql.util.NumberParser.1</span></td><td><code>b8b9727d3b387a0f</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PGPropertyMaxResultBufferParser</span></td><td><code>f0be253272b6d1dd</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PGPropertyUtil</span></td><td><code>c2b236af4fa6117c</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PSQLException</span></td><td><code>428596975d677eff</code></td></tr><tr><td><span class="el_class">org.postgresql.util.PSQLState</span></td><td><code>a242522ea116f646</code></td></tr><tr><td><span class="el_class">org.postgresql.util.ServerErrorMessage</span></td><td><code>0b355bd8e5caba31</code></td></tr><tr><td><span class="el_class">org.postgresql.util.SharedTimer</span></td><td><code>4901e3cbe643a778</code></td></tr><tr><td><span class="el_class">org.postgresql.util.URLCoder</span></td><td><code>d3e3ab08eb11efaa</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.IntSet</span></td><td><code>0619ceabcf70c6db</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.Nullness</span></td><td><code>664a70e6d9e3aa8b</code></td></tr><tr><td><span class="el_class">org.postgresql.util.internal.PgBufferedOutputStream</span></td><td><code>e179aaeff063d325</code></td></tr><tr><td><span class="el_class">org.quartz.SchedulerContext</span></td><td><code>edcba0ebd15f3ec7</code></td></tr><tr><td><span class="el_class">org.quartz.SchedulerMetaData</span></td><td><code>6815a8582192a834</code></td></tr><tr><td><span class="el_class">org.quartz.Trigger.TriggerTimeComparator</span></td><td><code>b2711ad5e3ba628d</code></td></tr><tr><td><span class="el_class">org.quartz.core.ErrorLogger</span></td><td><code>d4b39828923eaf94</code></td></tr><tr><td><span class="el_class">org.quartz.core.ExecutingJobsManager</span></td><td><code>b9ece2391988d40c</code></td></tr><tr><td><span class="el_class">org.quartz.core.ListenerManagerImpl</span></td><td><code>0dee7d5e4c60c2d7</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzScheduler</span></td><td><code>6d1a6caea017109d</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzSchedulerResources</span></td><td><code>abee8a7f4c531ecd</code></td></tr><tr><td><span class="el_class">org.quartz.core.QuartzSchedulerThread</span></td><td><code>5a02b034982d55cb</code></td></tr><tr><td><span class="el_class">org.quartz.core.SchedulerSignalerImpl</span></td><td><code>8b2f717a6ebcb378</code></td></tr><tr><td><span class="el_class">org.quartz.ee.jta.JTAAnnotationAwareJobRunShellFactory</span></td><td><code>379f33b84cd0777f</code></td></tr><tr><td><span class="el_class">org.quartz.impl.DefaultThreadExecutor</span></td><td><code>1086689f313d7538</code></td></tr><tr><td><span class="el_class">org.quartz.impl.SchedulerDetailsSetter</span></td><td><code>9b2077e45b9ed1af</code></td></tr><tr><td><span class="el_class">org.quartz.impl.SchedulerRepository</span></td><td><code>0dab65a4497d8bd3</code></td></tr><tr><td><span class="el_class">org.quartz.impl.StdScheduler</span></td><td><code>907cf0a85dead9af</code></td></tr><tr><td><span class="el_class">org.quartz.impl.StdSchedulerFactory</span></td><td><code>57f14a943221032a</code></td></tr><tr><td><span class="el_class">org.quartz.listeners.SchedulerListenerSupport</span></td><td><code>d787f5ee8ea23095</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.PropertySettingJobFactory</span></td><td><code>0355dd4be7aec5cf</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.RAMJobStore</span></td><td><code>29a4abe1eec5a721</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleJobFactory</span></td><td><code>acb0ca322527238c</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleThreadPool</span></td><td><code>cdbfe208551a6522</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.SimpleThreadPool.WorkerThread</span></td><td><code>bdaed829e6064ba7</code></td></tr><tr><td><span class="el_class">org.quartz.simpl.TriggerWrapperComparator</span></td><td><code>e0ae773949faea7c</code></td></tr><tr><td><span class="el_class">org.quartz.utils.DirtyFlagMap</span></td><td><code>4d06d18848f85f3d</code></td></tr><tr><td><span class="el_class">org.quartz.utils.PropertiesParser</span></td><td><code>09626488bf696b63</code></td></tr><tr><td><span class="el_class">org.quartz.utils.StringKeyDirtyFlagMap</span></td><td><code>0f739594dc720a43</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.Preconditions</span></td><td><code>f106cd8cbbc833d5</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.ConstantThroughputRateLimiter</span></td><td><code>daeacfd64fa8d435</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiter</span></td><td><code>1a7d28cdec5da38b</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiterBuilder</span></td><td><code>cdbb7eff837216af</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.ratelimits.RateLimiterBuilder.RateLimiterStrategy</span></td><td><code>d0a2bc4c00a50536</code></td></tr><tr><td><span class="el_class">org.rnorth.ducttape.unreliables.Unreliables</span></td><td><code>07d2946fabe64f0e</code></td></tr><tr><td><span class="el_class">org.slf4j.LoggerFactory</span></td><td><code>a381b7ddf19bf47d</code></td></tr><tr><td><span class="el_class">org.slf4j.MDC</span></td><td><code>4d31efbdc380017c</code></td></tr><tr><td><span class="el_class">org.slf4j.bridge.SLF4JBridgeHandler</span></td><td><code>a24ab9068b3f1049</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.FormattingTuple</span></td><td><code>46e388b1eb4cb5c1</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.MessageFormatter</span></td><td><code>42e7db43bad15507</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.NOPLoggerFactory</span></td><td><code>54f5632bfcb8d8d5</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.SubstituteLoggerFactory</span></td><td><code>dc7efc0107a4a62d</code></td></tr><tr><td><span class="el_class">org.slf4j.helpers.Util</span></td><td><code>857ff3acc0576435</code></td></tr><tr><td><span class="el_class">org.slf4j.impl.StaticLoggerBinder</span></td><td><code>039b3c899e055991</code></td></tr><tr><td><span class="el_class">org.slf4j.impl.StaticMDCBinder</span></td><td><code>649700d80abb641d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Advisor</span></td><td><code>ef54cdaeb47b432b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Advisor.1</span></td><td><code>d687402cfbb21f65</code></td></tr><tr><td><span class="el_class">org.springframework.aop.ClassFilter</span></td><td><code>e82ad45e715a2767</code></td></tr><tr><td><span class="el_class">org.springframework.aop.MethodMatcher</span></td><td><code>c29355b2b77e1007</code></td></tr><tr><td><span class="el_class">org.springframework.aop.Pointcut</span></td><td><code>d9a2e71c55afc2ed</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TrueClassFilter</span></td><td><code>66997f391f3335ac</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TrueMethodMatcher</span></td><td><code>bd93a7009fefd242</code></td></tr><tr><td><span class="el_class">org.springframework.aop.TruePointcut</span></td><td><code>3712670a2abb92b3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.AspectJProxyUtils</span></td><td><code>d6b2e1cf951a2197</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactory</span></td><td><code>b162d94e0a197629</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactory.AspectJAnnotationParameterNameDiscoverer</span></td><td><code>f7beb1297e7d32a1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator</span></td><td><code>ec5101a7a56a25c0</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator.BeanFactoryAspectJAdvisorsBuilderAdapter</span></td><td><code>425a7d4852a811f3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.BeanFactoryAspectJAdvisorsBuilder</span></td><td><code>9e2fdb3311c47ec8</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory</span></td><td><code>b8775b0325008888</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator</span></td><td><code>75c5b76319a943d3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator.PartiallyComparableAdvisorHolder</span></td><td><code>b6fdffa324e4853c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.aspectj.autoproxy.AspectJPrecedenceComparator</span></td><td><code>6568cfa556a0645f</code></td></tr><tr><td><span class="el_class">org.springframework.aop.config.AopConfigUtils</span></td><td><code>8fd124ab73265d14</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AbstractAdvisingBeanPostProcessor</span></td><td><code>19dda0c9dedbeea7</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AdvisedSupport</span></td><td><code>1a00caae3fdff967</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AdvisedSupport.MethodCacheKey</span></td><td><code>54e9c577d8db367d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.AopProxyUtils</span></td><td><code>d20dd23c1373edf3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy</span></td><td><code>362ef7c9e3068cfb</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.AdvisedDispatcher</span></td><td><code>f3c0b9c7e3b00005</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.CglibMethodInvocation</span></td><td><code>23a0876704a3a48c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.DynamicAdvisedInterceptor</span></td><td><code>296bfc67cae2dda7</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.EqualsInterceptor</span></td><td><code>531156aac8618ad0</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.HashCodeInterceptor</span></td><td><code>b88bd3f887698ae4</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.ProxyCallbackFilter</span></td><td><code>4d2c811f6bfedd90</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.SerializableNoOp</span></td><td><code>023e181acb544865</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.StaticDispatcher</span></td><td><code>7ddcfddaf276d27c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.CglibAopProxy.StaticUnadvisedInterceptor</span></td><td><code>a47f9d417aa3f4ad</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.DefaultAdvisorChainFactory</span></td><td><code>c7dda89780285dc3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.DefaultAopProxyFactory</span></td><td><code>b2c973f5a761adab</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.JdkDynamicAopProxy</span></td><td><code>4c802fbbb08cf45a</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ObjenesisCglibAopProxy</span></td><td><code>9c81ecc368cdf7dc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyConfig</span></td><td><code>da9e527ce0e87e39</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyCreatorSupport</span></td><td><code>1821c42e8839668b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyFactory</span></td><td><code>e0b96918a670afaa</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ProxyProcessorSupport</span></td><td><code>6c1763bc516aec9b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.ReflectiveMethodInvocation</span></td><td><code>d4fd0afa71efa12e</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.AfterReturningAdviceAdapter</span></td><td><code>062a53f080ee5a1b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.DefaultAdvisorAdapterRegistry</span></td><td><code>5c685171123ce41d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.GlobalAdvisorAdapterRegistry</span></td><td><code>397dafe6cf6f6bb5</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.MethodBeforeAdviceAdapter</span></td><td><code>b6ed39cc2de5fe66</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.adapter.ThrowsAdviceAdapter</span></td><td><code>455ea0b8cf24a354</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator</span></td><td><code>0312b8ea58cfb6a6</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator.BeanFactoryAdvisorRetrievalHelperAdapter</span></td><td><code>fc35016c25cd15b3</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator</span></td><td><code>c94a9665b1b102d2</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AbstractBeanFactoryAwareAdvisingPostProcessor</span></td><td><code>1718d54909ab3596</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.AutoProxyUtils</span></td><td><code>68156f4f0998c6fc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.BeanFactoryAdvisorRetrievalHelper</span></td><td><code>7c2c296716af1e50</code></td></tr><tr><td><span class="el_class">org.springframework.aop.framework.autoproxy.ProxyCreationContext</span></td><td><code>6d416aebf6c95e6d</code></td></tr><tr><td><span class="el_class">org.springframework.aop.interceptor.ExposeInvocationInterceptor</span></td><td><code>74e112b9e33b15b2</code></td></tr><tr><td><span class="el_class">org.springframework.aop.interceptor.ExposeInvocationInterceptor.1</span></td><td><code>b29d64af4122f32c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.scope.ScopedProxyUtils</span></td><td><code>a586edd613974812</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractBeanFactoryPointcutAdvisor</span></td><td><code>e690f224fa2465a1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractGenericPointcutAdvisor</span></td><td><code>106f0964bccbd00b</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AbstractPointcutAdvisor</span></td><td><code>1826502a73f44db5</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.AopUtils</span></td><td><code>386cf262c8b36bdb</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ClassFilters</span></td><td><code>d996e857520c7234</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ClassFilters.IntersectionClassFilter</span></td><td><code>8b94411089699bc1</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.ComposablePointcut</span></td><td><code>4f094bbfcbbd7638</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.DefaultPointcutAdvisor</span></td><td><code>3623a95704d49d39</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.StaticMethodMatcher</span></td><td><code>3026c4f0909f147f</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.StaticMethodMatcherPointcut</span></td><td><code>287fc22ee10b5ddc</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.annotation.AnnotationClassFilter</span></td><td><code>efdc8c13399628db</code></td></tr><tr><td><span class="el_class">org.springframework.aop.support.annotation.AnnotationMatchingPointcut</span></td><td><code>4c4f0ee833e4a75c</code></td></tr><tr><td><span class="el_class">org.springframework.aop.target.EmptyTargetSource</span></td><td><code>1667d7cf3cc65f8e</code></td></tr><tr><td><span class="el_class">org.springframework.aop.target.SingletonTargetSource</span></td><td><code>ae1fdc62beffeb7f</code></td></tr><tr><td><span class="el_class">org.springframework.asm.AnnotationVisitor</span></td><td><code>86177032fceae2cb</code></td></tr><tr><td><span class="el_class">org.springframework.asm.AnnotationWriter</span></td><td><code>09a3272c26e27d4b</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Attribute</span></td><td><code>818e34343aee567f</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ByteVector</span></td><td><code>497c4a0020da8b32</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassReader</span></td><td><code>02c36ddc15e1783c</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassVisitor</span></td><td><code>f4ec55c5038f23de</code></td></tr><tr><td><span class="el_class">org.springframework.asm.ClassWriter</span></td><td><code>e278872fa5de2d91</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Context</span></td><td><code>f61dfcd9105062d7</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Edge</span></td><td><code>75fcf927f0e1727a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.FieldVisitor</span></td><td><code>56d636b4e7c08b03</code></td></tr><tr><td><span class="el_class">org.springframework.asm.FieldWriter</span></td><td><code>65acdc7b813096c1</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Frame</span></td><td><code>448a952c85904643</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Handle</span></td><td><code>6d8c7e503837bb12</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Handler</span></td><td><code>4cf000e56c2c3c02</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Label</span></td><td><code>bc2fa7ee63dec43a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.MethodVisitor</span></td><td><code>9b0b81169dc3f6c1</code></td></tr><tr><td><span class="el_class">org.springframework.asm.MethodWriter</span></td><td><code>5d26da405e8ffd56</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Symbol</span></td><td><code>28333b059d7a579e</code></td></tr><tr><td><span class="el_class">org.springframework.asm.SymbolTable</span></td><td><code>4f2562bd2342989b</code></td></tr><tr><td><span class="el_class">org.springframework.asm.SymbolTable.Entry</span></td><td><code>5e95f09fdec28a06</code></td></tr><tr><td><span class="el_class">org.springframework.asm.Type</span></td><td><code>41cb414463d8845a</code></td></tr><tr><td><span class="el_class">org.springframework.asm.TypePath</span></td><td><code>7f7cfebb19dc1a61</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor</span></td><td><code>25f974598142eceb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor.PropertyHandler</span></td><td><code>7726cd62b91ed846</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractNestablePropertyAccessor.PropertyTokenHolder</span></td><td><code>0ee732b4fcaa98ae</code></td></tr><tr><td><span class="el_class">org.springframework.beans.AbstractPropertyAccessor</span></td><td><code>8629b55baaeb6a44</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanMetadataAttribute</span></td><td><code>8cf3dad0351b685a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanMetadataAttributeAccessor</span></td><td><code>870898df99a4e69f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanUtils</span></td><td><code>faf77bea5b45e52f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanWrapperImpl</span></td><td><code>1fa2c26f29cb3470</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeanWrapperImpl.BeanPropertyHandler</span></td><td><code>abaa751daa75ac8e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.BeansException</span></td><td><code>0543c63b55aa3ec1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.CachedIntrospectionResults</span></td><td><code>813b1da85578ab2b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo</span></td><td><code>2386814e73a25ac1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.PropertyDescriptorComparator</span></td><td><code>b461926eb42677ab</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.SimpleIndexedPropertyDescriptor</span></td><td><code>a72ed42c939df2d9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfo.SimplePropertyDescriptor</span></td><td><code>b1392285e7c12be0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.ExtendedBeanInfoFactory</span></td><td><code>c7c7752172de1df8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.FatalBeanException</span></td><td><code>9d88baaafb59a756</code></td></tr><tr><td><span class="el_class">org.springframework.beans.GenericTypeAwarePropertyDescriptor</span></td><td><code>546854fffbaf65fe</code></td></tr><tr><td><span class="el_class">org.springframework.beans.MutablePropertyValues</span></td><td><code>7c91b0939d2bab5c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyAccessorUtils</span></td><td><code>68325c1e604284c5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyDescriptorUtils</span></td><td><code>617b1324b0ee10c1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyEditorRegistrySupport</span></td><td><code>a7aca8baec411d07</code></td></tr><tr><td><span class="el_class">org.springframework.beans.PropertyValue</span></td><td><code>f55260d736565fb7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.SimpleTypeConverter</span></td><td><code>c2a485c2c4760758</code></td></tr><tr><td><span class="el_class">org.springframework.beans.TypeConverterDelegate</span></td><td><code>6f0b44459a9ae68a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.TypeConverterSupport</span></td><td><code>5fa522029fbc23db</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanCreationException</span></td><td><code>10b315dd93d9d50c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanCurrentlyInCreationException</span></td><td><code>3ec385c118191877</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.BeanFactoryUtils</span></td><td><code>bce352acab412e0c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.FactoryBean</span></td><td><code>712a87cd0512dd09</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.InjectionPoint</span></td><td><code>a4c72d1770a7a7fb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.NoSuchBeanDefinitionException</span></td><td><code>882626fdbe4bcc64</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.ObjectProvider</span></td><td><code>a94310da6186767b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.UnsatisfiedDependencyException</span></td><td><code>0edb50b8eafc2497</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AnnotatedGenericBeanDefinition</span></td><td><code>619e8f20e52cbd04</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.Autowire</span></td><td><code>5b521c6e0200af6d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor</span></td><td><code>1b550f7f1f226b88</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.AutowiredFieldElement</span></td><td><code>161f0520d3fa854d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.AutowiredMethodElement</span></td><td><code>5dd543f6933c827c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.ShortcutDependencyDescriptor</span></td><td><code>130d5bd973836f54</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.BeanFactoryAnnotationUtils</span></td><td><code>42afbdd32e6cec3e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor</span></td><td><code>a043b9bac7d18cde</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.1</span></td><td><code>1b66ba92e94cb29d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.LifecycleElement</span></td><td><code>02b4ed0c82400db7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.LifecycleMetadata</span></td><td><code>8a8d7870aa141386</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata</span></td><td><code>addb42baff1b43c3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata.1</span></td><td><code>43ef1ac68bc3474a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.InjectionMetadata.InjectedElement</span></td><td><code>b6c3f44002cd9e19</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.QualifierAnnotationAutowireCandidateResolver</span></td><td><code>bbfd7df845d2f7f8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor</span></td><td><code>5a662aa523f7b902</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.AbstractFactoryBean</span></td><td><code>ad164c061ee07276</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.AutowiredPropertyMarker</span></td><td><code>26d9a743bf97cf72</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanDefinitionHolder</span></td><td><code>3b70fa34c1022f80</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanDefinitionVisitor</span></td><td><code>74f88f77765e2ba7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanExpressionContext</span></td><td><code>af2e0aa265480df0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.BeanPostProcessor</span></td><td><code>31a3b8078cd2b4de</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.ConstructorArgumentValues</span></td><td><code>974eff1301c7a799</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder</span></td><td><code>53952c06705bd495</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.DependencyDescriptor</span></td><td><code>2717994de849ffe3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.DependencyDescriptor.1</span></td><td><code>53235c089020d60a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.EmbeddedValueResolver</span></td><td><code>67c6aa7eff4a2af4</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessor</span></td><td><code>d45dfbe8c3b017dc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.NamedBeanHolder</span></td><td><code>2452594c2a8b0afb</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PlaceholderConfigurerSupport</span></td><td><code>fb62dccf379ce479</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PropertiesFactoryBean</span></td><td><code>6cdb6c1b91ff49e7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.PropertyResourceConfigurer</span></td><td><code>8fc0749add384007</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.RuntimeBeanReference</span></td><td><code>0bd630af284fdc88</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.config.SmartInstantiationAwareBeanPostProcessor</span></td><td><code>d410f2e0a60feaee</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.BeanComponentDefinition</span></td><td><code>97239406e6143e43</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.EmptyReaderEventListener</span></td><td><code>66cf0f3278fa7506</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.FailFastProblemReporter</span></td><td><code>5ba1c86bd60fce8d</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.NullSourceExtractor</span></td><td><code>380cd58a6c753854</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.parsing.PassThroughSourceExtractor</span></td><td><code>6b35528d7f0c2809</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory</span></td><td><code>54065cf602da8e47</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.FactoryBeanMethodTypeFinder</span></td><td><code>3e0152ef0a6da1de</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanDefinition</span></td><td><code>f525227d47f5ec93</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanDefinitionReader</span></td><td><code>8eed4a6c3d0ce428</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory</span></td><td><code>85ccc52c4af0f793</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory.BeanPostProcessorCache</span></td><td><code>7dcfabd0f93814b9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AbstractBeanFactory.BeanPostProcessorCacheAwareList</span></td><td><code>39848665ad4671c1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AutowireCandidateQualifier</span></td><td><code>e2e718d2926fd313</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.AutowireUtils</span></td><td><code>44c81fa5e4e22cae</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionBuilder</span></td><td><code>0b117ac0ebfe0f71</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionDefaults</span></td><td><code>465409ce7ac606a2</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionReaderUtils</span></td><td><code>208e83e858b5738a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.BeanDefinitionValueResolver</span></td><td><code>eeefc7f249f8ad77</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.CglibSubclassingInstantiationStrategy</span></td><td><code>a563b40b14a5489f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver</span></td><td><code>88e7b8fc2e189304</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver.ArgumentsHolder</span></td><td><code>3e0665ed15e3e330</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.ConstructorResolver.ConstructorPropertiesChecker</span></td><td><code>863054f1e67ded9f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultBeanNameGenerator</span></td><td><code>55ebd73a1cdc28a6</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory</span></td><td><code>b322468d9a9084a9</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.1</span></td><td><code>cd4845b732ea5466</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.2</span></td><td><code>5b6575421b6ac3fd</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider</span></td><td><code>c742d6b252caf199</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider.2</span></td><td><code>8ad547e241e0b2d5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.DependencyObjectProvider.3</span></td><td><code>fbf4a44705234f95</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.FactoryAwareOrderSourceProvider</span></td><td><code>d3250f57da3b3bde</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.MultiElementDescriptor</span></td><td><code>7362b4a88f148e1b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.NestedDependencyDescriptor</span></td><td><code>13c87172106dbc32</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultListableBeanFactory.StreamDependencyDescriptor</span></td><td><code>923ec1c0bcaf2329</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DefaultSingletonBeanRegistry</span></td><td><code>2e13867d601540f5</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.DisposableBeanAdapter</span></td><td><code>e35225c20a619b07</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.FactoryBeanRegistrySupport</span></td><td><code>99c74fcfc0d39cdf</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.GenericBeanDefinition</span></td><td><code>ac91c5bf6c2439f0</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.GenericTypeAwareAutowireCandidateResolver</span></td><td><code>ee9509933c9fc0e3</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.MergedBeanDefinitionPostProcessor</span></td><td><code>dbfe9af65ed74e99</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.MethodOverrides</span></td><td><code>02bf1e2f93a375da</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.NullBean</span></td><td><code>e569c45ba8cb9f69</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.RootBeanDefinition</span></td><td><code>c66a4b7b525dc119</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.SimpleAutowireCandidateResolver</span></td><td><code>484c37bd2a5b92be</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.support.SimpleInstantiationStrategy</span></td><td><code>63611899eec828c8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.DefaultDocumentLoader</span></td><td><code>f33a4e5ddd7424ee</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.XmlBeanDefinitionReader</span></td><td><code>666dc2cc2306131a</code></td></tr><tr><td><span class="el_class">org.springframework.beans.factory.xml.XmlBeanDefinitionReader.1</span></td><td><code>314e956097cb5105</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ByteArrayPropertyEditor</span></td><td><code>181c863773c983bf</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharArrayPropertyEditor</span></td><td><code>bead55453e03a944</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharacterEditor</span></td><td><code>70502cd57d980a0c</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CharsetEditor</span></td><td><code>57cdb9b3bce38e91</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ClassArrayEditor</span></td><td><code>b976ce9a8db4c481</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ClassEditor</span></td><td><code>ebe3e6a2ae7c4bf2</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CurrencyEditor</span></td><td><code>15eb0a232a991dc1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomBooleanEditor</span></td><td><code>51b576b87ebd43fc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomCollectionEditor</span></td><td><code>f926c36f46bf0512</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomMapEditor</span></td><td><code>aa09a775696f5ed7</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.CustomNumberEditor</span></td><td><code>fd415437506f733b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.FileEditor</span></td><td><code>ac516fb1c5132ca8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.InputSourceEditor</span></td><td><code>3878badde453f7f1</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.InputStreamEditor</span></td><td><code>519c08fee3b1c7a8</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.LocaleEditor</span></td><td><code>ef2c6a2ebce881e6</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PathEditor</span></td><td><code>0a813b85f0f3f067</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PatternEditor</span></td><td><code>5701eec941fca72b</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.PropertiesEditor</span></td><td><code>b15706d4d5d44248</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ReaderEditor</span></td><td><code>83eff1682c3bc5cc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.StringArrayPropertyEditor</span></td><td><code>7ef4f3e0d227b024</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.TimeZoneEditor</span></td><td><code>7f37437da55c16a4</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.URIEditor</span></td><td><code>5023880daac6928f</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.URLEditor</span></td><td><code>c1db6f85946d10fc</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.UUIDEditor</span></td><td><code>fcc38198e72b691e</code></td></tr><tr><td><span class="el_class">org.springframework.beans.propertyeditors.ZoneIdEditor</span></td><td><code>719b0a6638c998fd</code></td></tr><tr><td><span class="el_class">org.springframework.beans.support.ResourceEditorRegistrar</span></td><td><code>b69ae45337080c07</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ApplicationContextFactory</span></td><td><code>1c35257aaac1c2e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.Banner.Mode</span></td><td><code>1671eb939d3d025d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BeanDefinitionLoader</span></td><td><code>e7d19ca02f800336</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BeanDefinitionLoader.ClassExcludeFilter</span></td><td><code>eed1c2f291408d4f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapContextClosedEvent</span></td><td><code>da78a525c36dac73</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.InstanceSupplier</span></td><td><code>a4be181cc8e23603</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.InstanceSupplier.1</span></td><td><code>0e68c50c60102199</code></td></tr><tr><td><span class="el_class">org.springframework.boot.BootstrapRegistry.Scope</span></td><td><code>9db2258389f1ae19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ClearCachesApplicationListener</span></td><td><code>9f836d67a246ae16</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationArguments</span></td><td><code>68256ed60a832d78</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationArguments.Source</span></td><td><code>282730bec49a2c6b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultApplicationContextFactory</span></td><td><code>6b8a7554af8cb838</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultBootstrapContext</span></td><td><code>9152024e795bfb64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.DefaultPropertiesPropertySource</span></td><td><code>cdc65f3398da6690</code></td></tr><tr><td><span class="el_class">org.springframework.boot.EnvironmentConverter</span></td><td><code>1eaf183b60d2ef10</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplication</span></td><td><code>0916c9b87f37a7dc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplication.PropertySourceOrderingBeanFactoryPostProcessor</span></td><td><code>a7de228bbe81af50</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter</span></td><td><code>792fd17363f348cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter.Banners</span></td><td><code>d5c37c4466be3c71</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationBannerPrinter.PrintedBanner</span></td><td><code>616cd93ed0af98d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationRunListeners</span></td><td><code>75d00f9ced9a1a3a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook</span></td><td><code>2ef86547c43ef13d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook.ApplicationContextClosedListener</span></td><td><code>f45768c12f8176a1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringApplicationShutdownHook.Handlers</span></td><td><code>e04cec9c109647e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringBootBanner</span></td><td><code>70b2923944cb49da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.SpringBootVersion</span></td><td><code>e4fc1ff7a7409457</code></td></tr><tr><td><span class="el_class">org.springframework.boot.StartupInfoLogger</span></td><td><code>0b67221cceabef94</code></td></tr><tr><td><span class="el_class">org.springframework.boot.WebApplicationType</span></td><td><code>f2f3e3a921ed366a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiColor</span></td><td><code>cd3dd429350a7a04</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiOutput</span></td><td><code>9b529f6bbca35e14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiOutput.Enabled</span></td><td><code>7c2ea9a397946bdc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.ansi.AnsiStyle</span></td><td><code>ace7a2dd57f73fa2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationExcludeFilter</span></td><td><code>b9f6fceeec9c94bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportEvent</span></td><td><code>25e5452af442938c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector</span></td><td><code>f161da263fc37d11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.AutoConfigurationEntry</span></td><td><code>eda049128fec28ec</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.AutoConfigurationGroup</span></td><td><code>e6d0b9c92ed6ca3f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.ConfigurationClassFilter</span></td><td><code>6f2c852549fc6111</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationMetadataLoader</span></td><td><code>72ee35ed589b55ff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationMetadataLoader.PropertiesAutoConfigurationMetadata</span></td><td><code>ea82e8475b2588cc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages</span></td><td><code>b9fb55423bbf157d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.BasePackages</span></td><td><code>c99df65f04f09ac9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.BasePackagesBeanDefinition</span></td><td><code>589e960ea96cc605</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.PackageImports</span></td><td><code>b23b60c8327c8c99</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationPackages.Registrar</span></td><td><code>cf639b0b1238d8db</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter</span></td><td><code>a1da1e22b23bc7a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter.AutoConfigurationClass</span></td><td><code>41e9801822af2d24</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.AutoConfigurationSorter.AutoConfigurationClasses</span></td><td><code>94d687ba3229eaea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer</span></td><td><code>6c4e865d6e56f17a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.1</span></td><td><code>a98d38dbaa4d5192</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.CharsetInitializer</span></td><td><code>cdd69351ff702f7c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.ConversionServiceInitializer</span></td><td><code>3223c472b8ae5639</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.MessageConverterInitializer</span></td><td><code>a1c8eed607c38c19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.BackgroundPreinitializer.ValidationInitializer</span></td><td><code>4ba0e7512c65ffff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer</span></td><td><code>6d97920237f3cfab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer.CachingMetadataReaderFactoryPostProcessor</span></td><td><code>4a04a63c5bc6292f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer.SharedMetadataReaderFactoryBean</span></td><td><code>b6c9e27a7b5d6093</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration</span></td><td><code>2cd0f5d8e7cf2ea4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.AspectJAutoProxyingConfiguration</span></td><td><code>0d62851c9c377ecb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration</span></td><td><code>011d0a89005de8d1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration</span></td><td><code>d5a9b30312477202</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.batch.JobRepositoryDependsOnDatabaseInitializationDetector</span></td><td><code>5772e3bc39dc387c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheConfigurationImportSelector</span></td><td><code>898619240be14a15</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheCondition</span></td><td><code>d5f82332b4159a52</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheConfigurations</span></td><td><code>002ee01e0336112c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.cache.CacheType</span></td><td><code>85e3ab33e89b88ac</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.codec.CodecProperties</span></td><td><code>953f0ce9ac243b2f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition</span></td><td><code>f6b993fa67357dea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberConditions</span></td><td><code>7d0284eca04492a3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberMatchOutcomes</span></td><td><code>3bd6a5375e4d5ce3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberOutcomes</span></td><td><code>7d103057de404eab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AllNestedConditions</span></td><td><code>33d80e3173dd34fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.AnyNestedCondition</span></td><td><code>74f45fbc657575f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport</span></td><td><code>74eb9d307c82f967</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.AncestorsMatchedCondition</span></td><td><code>a016859620a54641</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.ConditionAndOutcome</span></td><td><code>79d51a8261726e85</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport.ConditionAndOutcomes</span></td><td><code>0486dac2dc77e476</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionEvaluationReportAutoConfigurationImportListener</span></td><td><code>a72d71e1052dd0f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage</span></td><td><code>798c07377a65869c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Builder</span></td><td><code>52265bcd0af10702</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.ItemsBuilder</span></td><td><code>f034801cb4143eed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style</span></td><td><code>a8010be41dff8642</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style.1</span></td><td><code>0d5604975ea62eb2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionMessage.Style.2</span></td><td><code>48a2c891ad53ab7e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionOutcome</span></td><td><code>47f32adfbfd77123</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type</span></td><td><code>96f69fb486cfb679</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition</span></td><td><code>e36ae77a1649f25a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter</span></td><td><code>4ce6ad23870d9f74</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter.1</span></td><td><code>5a5d0855652ce808</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.FilteringSpringBootCondition.ClassNameFilter.2</span></td><td><code>65162f67a816a55a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.NoneNestedConditions</span></td><td><code>2b9042b164a859e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition</span></td><td><code>26f8a931843720b1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.MatchResult</span></td><td><code>56264beb3df9fff7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.SingleCandidateSpec</span></td><td><code>9eb92ba494010154</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnBeanCondition.Spec</span></td><td><code>025d996893b4c57b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition</span></td><td><code>0d78809aeffd3f2a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition.StandardOutcomesResolver</span></td><td><code>52653a45d6a03fd5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnClassCondition.ThreadedOutcomesResolver</span></td><td><code>11939627e835c514</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnJndiCondition</span></td><td><code>71552c53add7ecaa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnPropertyCondition</span></td><td><code>e28b1904228b6094</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnPropertyCondition.Spec</span></td><td><code>cc19a93d438d5bb5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnResourceCondition</span></td><td><code>4fa7499dba196fa8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition</span></td><td><code>acae091df6eb214c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition.1</span></td><td><code>5efa33945285821e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.SearchStrategy</span></td><td><code>0f8a720573b8b7ab</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.condition.SpringBootCondition</span></td><td><code>e4fd3bc12ffe7f01</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration</span></td><td><code>0ec18aa0e399642b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration</span></td><td><code>b311f1b24341a66b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.LifecycleProperties</span></td><td><code>25d9a0313540321a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration.ResourceBundleCondition</span></td><td><code>0f1ef52dd3848b9e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration</span></td><td><code>8db2dcc45845d6de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration</span></td><td><code>be35b353720c5b83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport</span></td><td><code>619f248e0bf690d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.1</span></td><td><code>4d10c445f78eae42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.AutoConfiguredAnnotationRepositoryConfigurationSource</span></td><td><code>78de78ab4b829f65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration</span></td><td><code>fec99dfa299d7810</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition</span></td><td><code>77b6a5c80f05b388</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration.JpaRepositoriesImportSelector</span></td><td><code>7c34d596ee5b672d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesRegistrar</span></td><td><code>becbaf8d80fd05fb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration</span></td><td><code>7da03e566a13fcd8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties</span></td><td><code>9f7881ab6ac04485</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties.Pageable</span></td><td><code>2b2ece9c3abd8163</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties.Sort</span></td><td><code>69d9f2b26519c4fa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages</span></td><td><code>785788bb6d8ba9c2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages.EntityScanPackagesBeanDefinition</span></td><td><code>a786c50466f7931c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.domain.EntityScanPackages.Registrar</span></td><td><code>86c8d4951684cb12</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.flyway.FlywayMigrationInitializerDatabaseInitializerDetector</span></td><td><code>4b943bc0a6b4ea83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider</span></td><td><code>bc87fed2b13ed69d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider</span></td><td><code>3dbcbea7b74e07d7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration</span></td><td><code>2e1465ea465d6a5e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration.StandardGsonBuilderCustomizer</span></td><td><code>ca82fafcfd28d4d6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.gson.GsonProperties</span></td><td><code>570873ad1e6606c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration</span></td><td><code>eb182ff77a4492c4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition</span></td><td><code>e6e65b06cc6f9186</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition</span></td><td><code>bfb8fc1f9453e657</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConverters</span></td><td><code>3d6da231aeb54b42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConverters.1</span></td><td><code>ee7345aaff6ad882</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration</span></td><td><code>8da55984fb559d05</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition</span></td><td><code>4f19e3502552b0af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration</span></td><td><code>042f078d8f0ae907</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration</span></td><td><code>d609c1f94604d4e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration</span></td><td><code>f2c9cbe1e004cafa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration</span></td><td><code>9e55be31cd74f336</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration.DefaultCodecsConfiguration</span></td><td><code>6d68312d1c16db8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration.JacksonCodecConfiguration</span></td><td><code>de1026a89996526a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration</span></td><td><code>85ccbcc3ea21b77c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration.GitResourceAvailableCondition</span></td><td><code>db416e9367f67ed2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties</span></td><td><code>8dfe798cf2f71f26</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties.Build</span></td><td><code>1e156c41c21621df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.info.ProjectInfoProperties.Git</span></td><td><code>e1b7d59f2090494a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.integration.IntegrationPropertiesEnvironmentPostProcessor</span></td><td><code>0ccb7e7d34b3620f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration</span></td><td><code>e399d84b1b02cf49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration</span></td><td><code>d5a0925364898303</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration.StandardJackson2ObjectMapperBuilderCustomizer</span></td><td><code>1fb62779cd1e2125</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration</span></td><td><code>53ad7233e977e123</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.JacksonObjectMapperConfiguration</span></td><td><code>85deda0a9c11460c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.ParameterNamesModuleConfiguration</span></td><td><code>3f355ec285054528</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jackson.JacksonProperties</span></td><td><code>1999b9dd657aa5d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration</span></td><td><code>dbadd8f3214d610e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.EmbeddedDatabaseCondition</span></td><td><code>f8420047c8c6d59e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceAvailableCondition</span></td><td><code>47c55481330ee4fb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceCondition</span></td><td><code>742fc5107f9e15ea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.PooledDataSourceConfiguration</span></td><td><code>a648369099a205d2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration</span></td><td><code>2add4095a1481eaf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration.Hikari</span></td><td><code>d6016fc59a2d7986</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceProperties</span></td><td><code>db195dc1db726475</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceProperties.Xa</span></td><td><code>4966ea8cc9e2f547</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration</span></td><td><code>6c40e4c3e4bd2019</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration</span></td><td><code>750ba02c94d1cb2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcProperties</span></td><td><code>d2b978ceedc11bdf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcProperties.Template</span></td><td><code>639eee2e8f0458df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration</span></td><td><code>7818bf2742d8c999</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration</span></td><td><code>ccea44646d6b51a8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration</span></td><td><code>0df8db1d6d2e44b4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration</span></td><td><code>48d725865c947aa6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration</span></td><td><code>edcbc59790702f33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration</span></td><td><code>63c6c9aa4d422b79</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration.LiquibaseConfiguration</span></td><td><code>279a771db61b307a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration.LiquibaseDataSourceCondition</span></td><td><code>7c788f38e5cba9f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties</span></td><td><code>de8a0d3104a4d122</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.liquibase.LiquibaseSchemaManagementProvider</span></td><td><code>6a65873b551689ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener</span></td><td><code>9418f72aaa9a365d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener.ConditionEvaluationReportListener</span></td><td><code>03ad5ebe023a8bce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider</span></td><td><code>a037b80c57875a53</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.netty.NettyAutoConfiguration</span></td><td><code>cd8743fb242aec81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.netty.NettyProperties</span></td><td><code>3083b235a6b1eec2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateDefaultDdlAutoProvider</span></td><td><code>83ae38dd5da622a4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration</span></td><td><code>6c21d2071e659c18</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration</span></td><td><code>9a117fae7dffd2fe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties</span></td><td><code>bb5cf93ada2dd297</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.Naming</span></td><td><code>fe5f62effdd16700</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.HibernateSettings</span></td><td><code>f909d4be9c9dc1d2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration</span></td><td><code>70abc74d8baacd2e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.JpaWebConfiguration</span></td><td><code>3f17bf89407897c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.JpaWebConfiguration.1</span></td><td><code>9dcf6259e8e5b5c2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.orm.jpa.JpaProperties</span></td><td><code>055be1782a55763d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.JobStoreType</span></td><td><code>8c2019ddb057f3b9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration</span></td><td><code>7fc455c6e99acf30</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzProperties</span></td><td><code>3dfd0211fb468d59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.QuartzProperties.Jdbc</span></td><td><code>d14f9af4bf7fbd53</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.quartz.SchedulerDependsOnDatabaseInitializationDetector</span></td><td><code>4620beb268afd31a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.DefaultWebSecurityCondition</span></td><td><code>68f7160e70c256c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties</span></td><td><code>889de5eebd03a3aa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties.Filter</span></td><td><code>856816da1969b542</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.SecurityProperties.User</span></td><td><code>e8ee476f6c0c8ed4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration</span></td><td><code>c4b2d70cded1dbbf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition</span></td><td><code>dae04355e4c8b773</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration</span></td><td><code>ae2f68ac57f85f81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration</span></td><td><code>64eb292bbd1288f7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration</span></td><td><code>0637c6e116b9e5f1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.ErrorPageSecurityFilterConfiguration</span></td><td><code>ad8376c939b8a3d3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.SecurityFilterChainConfiguration</span></td><td><code>e902630e52d9d05a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.SpringBootWebSecurityConfiguration.WebSecurityEnablerConfiguration</span></td><td><code>fcbe8db1605cd64a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration</span></td><td><code>e9b5f1971eb4f0a6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.session.JdbcIndexedSessionRepositoryDependsOnDatabaseInitializationDetector</span></td><td><code>33a8397352a3a7f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration</span></td><td><code>b3f6f4db76dbf66c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SettingsCreator</span></td><td><code>82518c867f96c2e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer</span></td><td><code>3aaad144972e5500</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration</span></td><td><code>3edd9f010c7754a8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration.SqlInitializationModeCondition</span></td><td><code>056cb6aeaa36be98</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties</span></td><td><code>b81a32514472fd8e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration</span></td><td><code>fa5ea558173e1904</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties</span></td><td><code>35553ffd75b66ade</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties.Pool</span></td><td><code>cd01741c13347968</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskExecutionProperties.Shutdown</span></td><td><code>b4b03df9340becf0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration</span></td><td><code>f5015daa4d7935fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties</span></td><td><code>a990708e75c6b426</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties.Pool</span></td><td><code>2c833317735c7bd1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.task.TaskSchedulingProperties.Shutdown</span></td><td><code>76b1ac5406bffba5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.PathBasedTemplateAvailabilityProvider</span></td><td><code>cf3f6e33adb12641</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders</span></td><td><code>2d7ca1b2aa64b631</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders.1</span></td><td><code>ace58102e22d27a2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.template.TemplateAvailabilityProviders.NoTemplateAvailabilityProvider</span></td><td><code>739dac9cd73b8a11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider</span></td><td><code>c8e6ed48e234ae13</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration</span></td><td><code>b413b079776f7161</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.EnableTransactionManagementConfiguration</span></td><td><code>7828a4c0c9725228</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration</span></td><td><code>d2b29d72351f0fa2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.TransactionTemplateConfiguration</span></td><td><code>7684d4a46ad564f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers</span></td><td><code>0e50645da243f606</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.TransactionProperties</span></td><td><code>674d39e0429cce0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration</span></td><td><code>09364df523bf07ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.PrimaryDefaultValidatorPostProcessor</span></td><td><code>1124718dab987572</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration</span></td><td><code>8ec8cd07f5bb4dd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.validation.ValidatorAdapter</span></td><td><code>bf37d2723a759649</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties</span></td><td><code>892d60481c4a6c8c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties.IncludeAttribute</span></td><td><code>c71e44c1cd608b45</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ErrorProperties.Whitelabel</span></td><td><code>cd2e788130ebdf72</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.OnEnabledResourceChainCondition</span></td><td><code>bcfe3e828c90649b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties</span></td><td><code>0faef4a8b5f1ebae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty</span></td><td><code>bd28aea13339fb33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Accesslog</span></td><td><code>fada068da6ad88a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Accesslog.FORMAT</span></td><td><code>64b3d9f74587f8fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Jetty.Threads</span></td><td><code>a1f70ab5c706f651</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Netty</span></td><td><code>aec215c04657b599</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Reactive</span></td><td><code>d733615dcd2ad1a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Reactive.Session</span></td><td><code>6a202cdd687ae986</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Servlet</span></td><td><code>f35d22607f2f235c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat</span></td><td><code>b7eb6f8721f110d0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Accesslog</span></td><td><code>bb5a8c8b051cc86a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Mbeanregistry</span></td><td><code>4c1139880b69999a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Remoteip</span></td><td><code>d483b861e6790188</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Resource</span></td><td><code>be36af6338430966</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Threads</span></td><td><code>0d34b1d470ef1e45</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow</span></td><td><code>b0bf85d7fbe59b56</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Accesslog</span></td><td><code>5e7192ebaf32cb13</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Options</span></td><td><code>867066e22b929e92</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.ServerProperties.Undertow.Threads</span></td><td><code>cefae1b72b4ad6a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties</span></td><td><code>a5be7c797e64f59a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.LocaleResolver</span></td><td><code>e3db63a13ea13131</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources</span></td><td><code>89d581b98a428a67</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Cache</span></td><td><code>53cea447a3eff76f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Cache.Cachecontrol</span></td><td><code>3a6d6d725e4c7548</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain</span></td><td><code>7c95f9fd42dc69d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy</span></td><td><code>4115fe772165ae26</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy.Content</span></td><td><code>5a2a7757286d7cb9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.WebProperties.Resources.Chain.Strategy.Fixed</span></td><td><code>ae8ec324bf742ee9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration</span></td><td><code>cd1a158bb8bc8146</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition</span></td><td><code>d00fce5413bdd7ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration</span></td><td><code>1d26977e9fbd1e2b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration</span></td><td><code>276f2585d2cbf68b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration</span></td><td><code>53acae052c5a534f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.NettyWebServerFactoryCustomizer</span></td><td><code>bc521095f6b070fd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.embedded.TomcatWebServerFactoryCustomizer</span></td><td><code>004e090d9950d2f3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.format.DateTimeFormatters</span></td><td><code>f6847d790d7f1ab0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.format.WebConversionService</span></td><td><code>e477bece1f868c50</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration</span></td><td><code>c3ea9ee90d0bd6f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration.ReactorNetty</span></td><td><code>ba94c87e932b705f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration</span></td><td><code>6c8f626582d82418</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration.WebClientCodecsConfiguration</span></td><td><code>0c4a10b9183e3a8f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientCodecCustomizer</span></td><td><code>a4336b7bfdabf9af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration</span></td><td><code>6618e1a3729eadec</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition</span></td><td><code>d3312b2681ca3619</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletConfiguration</span></td><td><code>3ccf942f5bddcc8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition</span></td><td><code>8f8429ff4af894f4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration</span></td><td><code>be60c9683aa9867a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletPath</span></td><td><code>f1bdfd60c5b4f7e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.DispatcherServletRegistrationBean</span></td><td><code>9f108e9ea1bccf17</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration</span></td><td><code>0723dec1251ff550</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.LocaleCharsetMappingsCustomizer</span></td><td><code>13bae87be53dca76</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider</span></td><td><code>cdb9dd259079160c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration</span></td><td><code>69f730785f2b5b6c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.MultipartProperties</span></td><td><code>7b974f9e38d671c7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration</span></td><td><code>48ad6a3cdb026669</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.BeanPostProcessorsRegistrar</span></td><td><code>b9747b3ab4aa777e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration.EmbeddedTomcat</span></td><td><code>f317b847109cb3a5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryCustomizer</span></td><td><code>e826d9cfb1a6724e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.TomcatServletWebServerFactoryCustomizer</span></td><td><code>f426fdc12641ccb4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration</span></td><td><code>077da0b073a94bd4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.EnableWebMvcConfiguration</span></td><td><code>d92aa4375e5b9de1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter</span></td><td><code>4c370b302faaa69f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties</span></td><td><code>f4d67d1e4e676a59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Async</span></td><td><code>9538adddc7cf6e3b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Contentnegotiation</span></td><td><code>8999c7149ceb8a19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Format</span></td><td><code>a18f407c2f160b3f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.MatchingStrategy</span></td><td><code>7502084bf40bade9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Pathmatch</span></td><td><code>aafa074a7b929d90</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.Servlet</span></td><td><code>56bc6e1095002de8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties.View</span></td><td><code>4c4aaf224cd775de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.WelcomePageHandlerMapping</span></td><td><code>1bdefa77c2965d22</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.AbstractErrorController</span></td><td><code>ba8345d004ea9804</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController</span></td><td><code>936e8421b08e0aba</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.DefaultErrorViewResolver</span></td><td><code>4c09e891b0b05ae7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration</span></td><td><code>570c19867358db64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration</span></td><td><code>445c9ee53b538d48</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.ErrorPageCustomizer</span></td><td><code>3058a8f9bbcc0201</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition</span></td><td><code>9fdaac4e8efa9119</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.PreserveErrorControllerTargetClassPostProcessor</span></td><td><code>b769d8901d32028c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.StaticView</span></td><td><code>e3f6f66f3b9b8eac</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration</span></td><td><code>0c603dbdfb65a603</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.TomcatWebSocketServletWebServerCustomizer</span></td><td><code>f1245a7785a79681</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration</span></td><td><code>5ad07f0bce38f370</code></td></tr><tr><td><span class="el_class">org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration</span></td><td><code>d5121640edbf0ccd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.ApplicationAvailabilityBean</span></td><td><code>35118002c85a0ea8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.AvailabilityChangeEvent</span></td><td><code>ac8d2de0265705bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.LivenessState</span></td><td><code>c9fa70c3ce5bdf83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.availability.ReadinessState</span></td><td><code>8d4d2c75d559143a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.builder.ParentContextCloserApplicationListener</span></td><td><code>544a5d6a2b994ed0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudFoundryVcapEnvironmentPostProcessor</span></td><td><code>fc10cfadfe814ce2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform</span></td><td><code>810a83d4109bd6f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.1</span></td><td><code>b6fcde01348a76ca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.2</span></td><td><code>a3dae51bfc46b586</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.3</span></td><td><code>eb70e2c1c92fa348</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.4</span></td><td><code>d67405424d95783b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.5</span></td><td><code>154b4ad83a1ff491</code></td></tr><tr><td><span class="el_class">org.springframework.boot.cloud.CloudPlatform.6</span></td><td><code>71af5d97943540c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer</span></td><td><code>721ca7d777f5e45a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer.ComponentScanPackageCheck</span></td><td><code>476b9f2b25350329</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer.ConfigurationWarningsPostProcessor</span></td><td><code>26d4cc5186c32f95</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ContextIdApplicationContextInitializer</span></td><td><code>33a71ad7921f5add</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.ContextIdApplicationContextInitializer.ContextId</span></td><td><code>3dd23c747875d30c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.FileEncodingApplicationListener</span></td><td><code>72334ff426b0adb6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.TypeExcludeFilter</span></td><td><code>cd3c7034c6945980</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.annotation.ImportCandidates</span></td><td><code>b64bd43c378f84f2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.AnsiOutputApplicationListener</span></td><td><code>ff41877fc7070916</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData</span></td><td><code>293599fb55abd6de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.AlwaysPropertySourceOptions</span></td><td><code>0dd1c0f5b07f9f2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.Option</span></td><td><code>1db7bd24bb481e83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.Options</span></td><td><code>7d2899013f6fcbf8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigData.PropertySourceOptions</span></td><td><code>be9b533d7269fd85</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataActivationContext</span></td><td><code>0c236649242a28af</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironment</span></td><td><code>05934bd193f027f6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor</span></td><td><code>65969422fb61aa5b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.ContributorIterator</span></td><td><code>4784b89331fa213a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.ImportPhase</span></td><td><code>11266db9f0c72ba7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributor.Kind</span></td><td><code>388cad2d1ec41541</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributorPlaceholdersResolver</span></td><td><code>ad6374c030e8fcd0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors</span></td><td><code>7527176fcabae50d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.BinderOption</span></td><td><code>cb691f262e1b0b69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.ContributorConfigDataLocationResolverContext</span></td><td><code>6f2751d2ce4bfc47</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.ContributorDataLoaderContext</span></td><td><code>09821b25f81762f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentContributors.InactiveSourceChecker</span></td><td><code>761bbdd2c167c4cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor</span></td><td><code>58ba5b08a0153624</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentUpdateListener</span></td><td><code>659414a31e83bd35</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataEnvironmentUpdateListener.1</span></td><td><code>0b4e61c05d897817</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataImporter</span></td><td><code>2081615781dab4d9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLoader</span></td><td><code>41dafc9029d66ba4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLoaders</span></td><td><code>5a69f4e14d3c4444</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocation</span></td><td><code>a92671cb6407dcd8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocationBindHandler</span></td><td><code>1466660f1e71c9f7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataLocationResolvers</span></td><td><code>561d4f0f3b82a9da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction</span></td><td><code>23409825201d8981</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction.1</span></td><td><code>2eb1514f5fcba2c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataNotFoundAction.2</span></td><td><code>3bab05bbe828a160</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataProperties</span></td><td><code>b1cdfe47ed0c154c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataProperties.LegacyProfilesBindHandler</span></td><td><code>233bef46a1752390</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResolutionResult</span></td><td><code>a32d0336145de04c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResource</span></td><td><code>0a33628daaf3aaf2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigDataResourceNotFoundException</span></td><td><code>f770e7c119409d7b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigTreeConfigDataLoader</span></td><td><code>0f1b4c850e7857d8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.ConfigTreeConfigDataLocationResolver</span></td><td><code>4773ab01d1f96266</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.DelegatingApplicationContextInitializer</span></td><td><code>ffb2fc577ff9b841</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.DelegatingApplicationListener</span></td><td><code>118807ca7053a160</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.InvalidConfigDataPropertyException</span></td><td><code>ebad2910c6658803</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.LocationResourceLoader</span></td><td><code>27610e74dad6b86d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.LocationResourceLoader.ResourceType</span></td><td><code>ff4b8be4c9b3e90a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.Profiles</span></td><td><code>967b6ada63970455</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.Profiles.Type</span></td><td><code>fe3e6379dc6aa2e3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataLoader</span></td><td><code>11108b9822bfda5d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataLocationResolver</span></td><td><code>fe3c86d2bdcd6ced</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataReference</span></td><td><code>426f4760d4f55df3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.StandardConfigDataResource</span></td><td><code>9fae8212c0857723</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.UseLegacyConfigProcessingException</span></td><td><code>d67e031ee10bbb16</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.config.UseLegacyConfigProcessingException.UseLegacyProcessingBindHandler</span></td><td><code>f02509ac7b34b22b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationContextInitializedEvent</span></td><td><code>30442b977fa15441</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent</span></td><td><code>6f66ed7c373faa00</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationPreparedEvent</span></td><td><code>57634f2aa9c5e321</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationReadyEvent</span></td><td><code>ac5cff4337448da8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationStartedEvent</span></td><td><code>d859a7e804c27ad0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.ApplicationStartingEvent</span></td><td><code>c3d43901464275e0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.EventPublishingRunListener</span></td><td><code>04dd73c089c4ba49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.event.SpringApplicationEvent</span></td><td><code>1659aa41af31bb9e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.logging.LoggingApplicationListener</span></td><td><code>a370aa0c93896b2e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.logging.LoggingApplicationListener.Lifecycle</span></td><td><code>5b0aadbbe15ad96c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.BoundConfigurationProperties</span></td><td><code>4ba022222b05f5c3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBean</span></td><td><code>3934a904f99d8ec0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBean.BindMethod</span></td><td><code>a91fdabee284a27e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBeanRegistrar</span></td><td><code>374b6bcd0e7e7fa0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBindConstructorProvider</span></td><td><code>5b01bd4e2f1a233e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder</span></td><td><code>f1a4d61d93ded3f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder.ConfigurationPropertiesBindHandler</span></td><td><code>3487e25afbdcce31</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBinder.Factory</span></td><td><code>1ae556af5c98bff2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor</span></td><td><code>f28c3f8b2ac3eae7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConfigurationPropertiesJsr303Validator</span></td><td><code>766b11e437f25f86</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConversionServiceDeducer</span></td><td><code>d0e47179511e0fa6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.ConversionServiceDeducer.ConverterBeans</span></td><td><code>eb606f33304f7c4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar</span></td><td><code>2aa12e268b983c7a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper</span></td><td><code>28da7628c93f72a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper.NullPointerExceptionSafeSupplier</span></td><td><code>ea4eaa4602e47b14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertyMapper.Source</span></td><td><code>d12e8e09b9f950b9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.PropertySourcesDeducer</span></td><td><code>8d676a5ee50beab9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AbstractBindHandler</span></td><td><code>a4f677f99d80a62f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateBinder</span></td><td><code>75f5644082301ccb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateBinder.AggregateSupplier</span></td><td><code>f3c8fbab9d95c01f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.AggregateElementBinder</span></td><td><code>7ff0ed7dcc3269bf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ArrayBinder</span></td><td><code>a536fd6b06e5650b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConstructorProvider</span></td><td><code>bf383e65f307f795</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter</span></td><td><code>4a28b9020c2e37c1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.ResolvableTypeDescriptor</span></td><td><code>ef8ee4e215273463</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.TypeConverterConversionService</span></td><td><code>03d809f84666a069</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindConverter.TypeConverterConverter</span></td><td><code>32ce998262bf0407</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindHandler</span></td><td><code>9d34d454c55a542d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindHandler.1</span></td><td><code>0eb1c27d19a82c8d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BindResult</span></td><td><code>40fd776a7ab036bf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Bindable</span></td><td><code>4b633fe04ffb0563</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Bindable.BindRestriction</span></td><td><code>8def3daf6d9e4b4e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Binder</span></td><td><code>b70df904a74667cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.Binder.Context</span></td><td><code>debfddef5ba73382</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.BoundPropertiesTrackingBindHandler</span></td><td><code>56cde931352c19c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.CollectionBinder</span></td><td><code>3de1185aef5815b7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.DataObjectPropertyName</span></td><td><code>b9df91c08bfd21e4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.DefaultBindConstructorProvider</span></td><td><code>71e3406b61c7b5c0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.IndexedElementsBinder</span></td><td><code>7bbd6a4677ea0f02</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.IndexedElementsBinder.IndexedCollectionSupplier</span></td><td><code>7df6f585712ab521</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder</span></td><td><code>57b4de81ee969449</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.Bean</span></td><td><code>8c1e0339f5538491</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.BeanProperty</span></td><td><code>2ec06b177923cebb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.JavaBeanBinder.BeanSupplier</span></td><td><code>529d980100257e1b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.MapBinder</span></td><td><code>5212c888e14fdf69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.MapBinder.EntryBinder</span></td><td><code>a7c6333ce48af3ae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.PlaceholdersResolver</span></td><td><code>ef20d592de5df50c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.PropertySourcesPlaceholdersResolver</span></td><td><code>ad2f96fb3d5d68e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder</span></td><td><code>46554dbe2535ade2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.ConstructorParameter</span></td><td><code>d3314e07b609fa9f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.DefaultValueObject</span></td><td><code>5839892cdf4a736d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.ValueObjectBinder.ValueObject</span></td><td><code>fce8bf270f6ad610</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.handler.IgnoreTopLevelConverterNotFoundBindHandler</span></td><td><code>a6694a3778e5750d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.bind.handler.NoUnboundElementsBindHandler</span></td><td><code>c6cada51e776e74f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationProperty</span></td><td><code>7710126579fdb65d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName</span></td><td><code>fdc2e9b08f52f4c4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.ElementType</span></td><td><code>1bc2287cf335d392</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.Elements</span></td><td><code>729f7b93544adef2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.ElementsParser</span></td><td><code>01b0c99f7b27e766</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyName.Form</span></td><td><code>70a2eacff140f23a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySource</span></td><td><code>41542f36d0cb2c87</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySources</span></td><td><code>30cebaf2378d0df9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertyResolver</span></td><td><code>581b02045b7e3898</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertyResolver.DefaultResolver</span></td><td><code>ebb8109e58798e4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource</span></td><td><code>b50bfe34ea083cd2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.ConfigurationPropertyState</span></td><td><code>3bd5fcebbe04f89a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.DefaultPropertyMapper</span></td><td><code>256bd77f8ce20bb8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.DefaultPropertyMapper.LastMapping</span></td><td><code>1d4c8fde7b560f15</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.FilteredConfigurationPropertiesSource</span></td><td><code>bf93c3f4035fe741</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.FilteredIterableConfigurationPropertiesSource</span></td><td><code>9b4b37705b45e2f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.IterableConfigurationPropertySource</span></td><td><code>442a435bb45623f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.MapConfigurationPropertySource</span></td><td><code>b01b81cbfb7e2f20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.PropertyMapper</span></td><td><code>9f019c62a1a9ab02</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SoftReferenceConfigurationPropertyCache</span></td><td><code>c5c0eb066e57f8fe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySource</span></td><td><code>e78564b84cc588a7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySources</span></td><td><code>7ba889b7c1a4defd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.SourcesIterator</span></td><td><code>c5dd104a33c35dbd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource</span></td><td><code>9cc37024cecbe973</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource.ConfigurationPropertyNamesIterator</span></td><td><code>2a525ab83509cc4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource.Mappings</span></td><td><code>b499360875ca05c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.SystemEnvironmentPropertyMapper</span></td><td><code>3a0ff0c4a3b81963</code></td></tr><tr><td><span class="el_class">org.springframework.boot.context.properties.source.UnboundElementsSourceFilter</span></td><td><code>eff833ddd74dc201</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.ApplicationConversionService</span></td><td><code>703105b1da56b762</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.ArrayToDelimitedStringConverter</span></td><td><code>24cfa2634c416f14</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CharArrayFormatter</span></td><td><code>c64f59a5a3d1e2cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CharSequenceToObjectConverter</span></td><td><code>5f4ba54cd2266aa3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.CollectionToDelimitedStringConverter</span></td><td><code>82362d527b9cfd21</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DelimitedStringToArrayConverter</span></td><td><code>db11ae5fb13bdb8e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DelimitedStringToCollectionConverter</span></td><td><code>28be1a1ceda69841</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DurationToNumberConverter</span></td><td><code>2d81edc14a86cf8a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.DurationToStringConverter</span></td><td><code>3e40c346f5ee0df5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.InetAddressFormatter</span></td><td><code>582137ff797f415c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.InputStreamSourceToByteArrayConverter</span></td><td><code>5d58d892f7b71525</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.IsoOffsetFormatter</span></td><td><code>d28d6879b708f1e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientBooleanToEnumConverterFactory</span></td><td><code>f9c9f6fb2af00c62</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientObjectToEnumConverterFactory</span></td><td><code>2d8246ca81d1c203</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.LenientStringToEnumConverterFactory</span></td><td><code>b974637d4886dfe1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToDataSizeConverter</span></td><td><code>dc8a9039ec592965</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToDurationConverter</span></td><td><code>32dc759bfeafac05</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.NumberToPeriodConverter</span></td><td><code>097b2d62b48c3caa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.PeriodToStringConverter</span></td><td><code>898a24b0085b4510</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToDataSizeConverter</span></td><td><code>18153304533818bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToDurationConverter</span></td><td><code>e3e30fe7d38decff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToFileConverter</span></td><td><code>a4915273d43e589c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.convert.StringToPeriodConverter</span></td><td><code>e8ecc06eb929a8eb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.EnvironmentPostProcessorApplicationListener</span></td><td><code>7e08a225af86661d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.EnvironmentPostProcessorsFactory</span></td><td><code>2cf73988660f638c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedMapPropertySource</span></td><td><code>a044b67668343b55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader</span></td><td><code>0271800f17dff848</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader.CharacterReader</span></td><td><code>ebd6fa6be0e68752</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.OriginTrackedPropertiesLoader.Document</span></td><td><code>654b1d37cb62cafc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.PropertiesPropertySourceLoader</span></td><td><code>e52b2d2f4d270a4d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.RandomValuePropertySource</span></td><td><code>2746586b8a679fb1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.RandomValuePropertySourceEnvironmentPostProcessor</span></td><td><code>72138b3465c9c8f8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.ReflectionEnvironmentPostProcessorsFactory</span></td><td><code>b3212f7654b89171</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor</span></td><td><code>cf7b857c794f2edc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor.JsonPropertyValue</span></td><td><code>25de8b09e14d6d2c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor</span></td><td><code>1a830952911713d0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor.OriginAwareSystemEnvironmentPropertySource</span></td><td><code>20b9906af5ffad65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.env.YamlPropertySourceLoader</span></td><td><code>f9489214398cb8ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.flyway.FlywayDatabaseInitializerDetector</span></td><td><code>bd671edf9cf2e7cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonComponentModule</span></td><td><code>01462b5a32f01051</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonMixinModule</span></td><td><code>6b30c045a4f3ed8f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jackson.JsonMixinModule.JsonMixinComponentScanner</span></td><td><code>14381f1485673e99</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.AbstractDataSourceInitializerDatabaseInitializerDetector</span></td><td><code>96d42260e95f1b44</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder</span></td><td><code>8b3ec702b821e4f5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.DataSourceProperties</span></td><td><code>d3a95de047df4ae0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.DataSourceProperty</span></td><td><code>f14c6423912c9ded</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.HikariDataSourceProperties</span></td><td><code>8033ca0684b2dc4b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.MappedDataSourceProperties</span></td><td><code>851a2211da16f4d3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceBuilder.MappedDataSourceProperty</span></td><td><code>2b0f4e98c7ecd000</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DataSourceUnwrapper</span></td><td><code>96ae9e6c67cbc85b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver</span></td><td><code>85914347b7d471b8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.1</span></td><td><code>8f52d335c4fc3782</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.2</span></td><td><code>d9fc0001d270195f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.3</span></td><td><code>449099e15f17309c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.4</span></td><td><code>f8b8ceaa28d47353</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.5</span></td><td><code>591a6bf4ccb3545c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.6</span></td><td><code>88ae3de58527be59</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.DatabaseDriver.7</span></td><td><code>9d4d9484e44a72f9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.EmbeddedDatabaseConnection</span></td><td><code>c505145f779a1164</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.SpringJdbcDependsOnDatabaseInitializationDetector</span></td><td><code>9e81f1c604b7be64</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.UnsupportedDataSourcePropertyException</span></td><td><code>4707bd9b9de4f507</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.init.DataSourceScriptDatabaseInitializer</span></td><td><code>bd6e4261df5ca426</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.init.DataSourceScriptDatabaseInitializerDetector</span></td><td><code>6847ed136e40588f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.AbstractDataSourcePoolMetadata</span></td><td><code>d441902761bb082c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.CompositeDataSourcePoolMetadataProvider</span></td><td><code>74a306117522e489</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jdbc.metadata.HikariDataSourcePoolMetadata</span></td><td><code>4ffbeec9b0a8302e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.jooq.JooqDependsOnDatabaseInitializationDetector</span></td><td><code>a0a6b56fe4f46dcc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.liquibase.LiquibaseDatabaseInitializerDetector</span></td><td><code>f8baa61efe2e96ed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.AbstractLoggingSystem</span></td><td><code>1a01d07c20417590</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.AbstractLoggingSystem.LogLevels</span></td><td><code>c30b1c954768d7b4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog</span></td><td><code>42cb6d347ba750d5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.1</span></td><td><code>d2b354a9ec3311ce</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.Line</span></td><td><code>43ea925525777cf5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLog.Lines</span></td><td><code>0374d672935f6518</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DeferredLogs</span></td><td><code>41861103c5b30e1b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.DelegatingLoggingSystemFactory</span></td><td><code>f307a9b432cf4dfe</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LogFile</span></td><td><code>21999b14dda2d435</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LogLevel</span></td><td><code>17241f9b3e215178</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerConfigurationComparator</span></td><td><code>d2534e372cbe96d7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerGroup</span></td><td><code>ccc6ba973c7cc3fc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggerGroups</span></td><td><code>e8cfe9b7a52e6af9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingInitializationContext</span></td><td><code>1e26223a12306c6f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystem</span></td><td><code>07880b27a605b8cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystemFactory</span></td><td><code>b8af2cd20ab65f90</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.LoggingSystemProperties</span></td><td><code>db5c847f3dc4dcf4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.Slf4JLoggingSystem</span></td><td><code>a81a348e70fcef83</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.java.JavaLoggingSystem.Factory</span></td><td><code>1c2549f66f91e3dd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.Factory</span></td><td><code>f1cf3f37debdadb0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.log4j2.SpringBootPropertySource</span></td><td><code>46381c182c9b004f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem</span></td><td><code>0fd8927496845ba7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem.1</span></td><td><code>532c546583b68b69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystem.Factory</span></td><td><code>4a04c8fc61cff16c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.LogbackLoggingSystemProperties</span></td><td><code>dcf48e3bf7cb449e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringBootJoranConfigurator</span></td><td><code>eb4820c89dc70fd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringProfileAction</span></td><td><code>c39453792014f361</code></td></tr><tr><td><span class="el_class">org.springframework.boot.logging.logback.SpringPropertyAction</span></td><td><code>48a644e9173b3dc0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.Origin</span></td><td><code>98257a656c3ed6b3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginLookup</span></td><td><code>b0affa2ef074d81a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedResource</span></td><td><code>5ba774844310a338</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedValue</span></td><td><code>82f3d79b1daa6b42</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.OriginTrackedValue.OriginTrackedCharSequence</span></td><td><code>999e48e771dd5520</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.PropertySourceOrigin</span></td><td><code>f5f11ab9cd2a09fc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.TextResourceOrigin</span></td><td><code>2802c354480d5643</code></td></tr><tr><td><span class="el_class">org.springframework.boot.origin.TextResourceOrigin.Location</span></td><td><code>2a7fe95db89d04e2</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder</span></td><td><code>0ff726a9200c2621</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder.Builder</span></td><td><code>c270c08c12dccef9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.JpaDatabaseInitializerDetector</span></td><td><code>7b15ff06676289dc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.JpaDependsOnDatabaseInitializationDetector</span></td><td><code>f5833422c26124bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy</span></td><td><code>7c31b19b079c2702</code></td></tr><tr><td><span class="el_class">org.springframework.boot.r2dbc.init.R2dbcScriptDatabaseInitializerDetector</span></td><td><code>ce6a5cca4c2a5e54</code></td></tr><tr><td><span class="el_class">org.springframework.boot.reactor.DebugAgentEnvironmentPostProcessor</span></td><td><code>7bff2e88b8a40f7c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.rsocket.context.RSocketPortInfoApplicationContextInitializer</span></td><td><code>0766208683a69865</code></td></tr><tr><td><span class="el_class">org.springframework.boot.rsocket.context.RSocketPortInfoApplicationContextInitializer.Listener</span></td><td><code>7f52017ce138dec9</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer</span></td><td><code>452daca8f0bb4478</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer.ScriptLocationResolver</span></td><td><code>5866996eb8f6f08f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.DatabaseInitializationMode</span></td><td><code>735c356aa2882d0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.DatabaseInitializationSettings</span></td><td><code>f169ec45cfebab33</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AbstractBeansOfTypeDatabaseInitializerDetector</span></td><td><code>281d75e70d310330</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AbstractBeansOfTypeDependsOnDatabaseInitializationDetector</span></td><td><code>50cca425c17665f5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.AnnotationDependsOnDatabaseInitializationDetector</span></td><td><code>73793f565397c6c5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.BeansOfTypeDetector</span></td><td><code>d62d5dd256627bfa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer</span></td><td><code>2778d84061ceb308</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer.DependsOnDatabaseInitializationPostProcessor</span></td><td><code>39001c9928805f8b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer.DependsOnDatabaseInitializationPostProcessor.InitializerBeanNames</span></td><td><code>4f9dc611692499bb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.sql.init.dependency.DatabaseInitializerDetector</span></td><td><code>62add512d3b089bc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.system.ApplicationPid</span></td><td><code>a4e6f9c27bd7ed07</code></td></tr><tr><td><span class="el_class">org.springframework.boot.task.TaskExecutorBuilder</span></td><td><code>737a345c7b511c17</code></td></tr><tr><td><span class="el_class">org.springframework.boot.task.TaskSchedulerBuilder</span></td><td><code>89a813fd6c603401</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory</span></td><td><code>9b8ba8026d0e5344</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener</span></td><td><code>a3a6fc880cc0eede</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener.PostProcessor</span></td><td><code>48c58581625994ed</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory</span></td><td><code>42f3315b066281e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory.DisableMetricExportContextCustomizer</span></td><td><code>31307b5da98adea0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizerFactory</span></td><td><code>e7bed41bd1b92bba</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.AnnotationsPropertySource</span></td><td><code>362d5632916b5947</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer</span></td><td><code>2949e4a211d3993d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer.PropertyMappingCheckBeanPostProcessor</span></td><td><code>39d913a00fea47cd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizerFactory</span></td><td><code>92800aae53815f65</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.properties.SkipPropertyMapping</span></td><td><code>b0e54b0c3c9e505d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener</span></td><td><code>a598cadabcf5242e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener</span></td><td><code>d648fac93d006266</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener</span></td><td><code>6fc0a865981d7bff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.SpringBootMockMvcBuilderCustomizer.DeferredLinesWriter</span></td><td><code>7c088e07fabaed5a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory</span></td><td><code>ef5a380b14a36625</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory.Customizer</span></td><td><code>3dbab5c65cc814f0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverScope</span></td><td><code>ab0ab8f8fe9e5f55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener</span></td><td><code>fa9738ec33dbac9b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener</span></td><td><code>d77f2ee82ac99b56</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.ImportsContextCustomizerFactory</span></td><td><code>7f796a36dfe5a90f</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader</span></td><td><code>65ad00df4ffb54e5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.ContextCustomizerAdapter</span></td><td><code>f0fd4c729aa8c18a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.PrepareEnvironmentListener</span></td><td><code>6e94cf22931581a0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.WebConfigurer</span></td><td><code>75f7600636eb69df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootContextLoader.WebConfigurer.DefensiveWebApplicationContextInitializer</span></td><td><code>9a5216dffe426a11</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTest.WebEnvironment</span></td><td><code>f79db620845a35c8</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestArgs</span></td><td><code>1f485f078546a807</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestContextBootstrapper</span></td><td><code>f3fc969f8a88c627</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.SpringBootTestWebEnvironment</span></td><td><code>4965281bf733ffc5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer</span></td><td><code>41bac6ceb9564498</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizerFactory</span></td><td><code>eaee9436d9498473</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.context.filter.TestTypeExcludeFilter</span></td><td><code>0ca625b295bfe708</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.graphql.tester.HttpGraphQlTesterContextCustomizerFactory</span></td><td><code>006bafdcc621398b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory</span></td><td><code>0370cdaa1978f335</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory.DuplicateJsonObjectContextCustomizer</span></td><td><code>34bd2e25d95286cb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.Definition</span></td><td><code>252313e6676f6007</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.DefinitionsParser</span></td><td><code>1a26532190d1d296</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockDefinition</span></td><td><code>2639a210f7bbd560</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockReset</span></td><td><code>576de1a6418d13cf</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockReset.ResetInvocationListener</span></td><td><code>b38b064fe11cee19</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoBeans</span></td><td><code>99f0ebef15b45d86</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoContextCustomizer</span></td><td><code>33445d48848930b3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoContextCustomizerFactory</span></td><td><code>aed4e59f9e43fbd6</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoPostProcessor</span></td><td><code>25c6000cde1b7481</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoPostProcessor.SpyPostProcessor</span></td><td><code>d04da26917e3e9da</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener</span></td><td><code>903fb43fdc655586</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.MockitoAnnotationCollection</span></td><td><code>b2b18deb7002db81</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.QualifierDefinition</span></td><td><code>0234983ff5c47745</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener</span></td><td><code>b13c0d0b29ec4be5</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.mockito.SpringBootMockResolver</span></td><td><code>0d421c9057a50572</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.mock.web.SpringBootMockServletContext</span></td><td><code>7568f8e51eea38ae</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues</span></td><td><code>7803145f193530d1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues.Pair</span></td><td><code>e429e19a9a786f92</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.util.TestPropertyValues.Type</span></td><td><code>591abca8059212df</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.SpringBootTestRandomPortEnvironmentPostProcessor</span></td><td><code>ac6d23ab6da7b0e1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer</span></td><td><code>461431b63b1ab32d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.client.TestRestTemplateContextCustomizerFactory</span></td><td><code>042274766736acc7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer</span></td><td><code>cb11ff065f403a20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizerFactory</span></td><td><code>849415ddd1a778f3</code></td></tr><tr><td><span class="el_class">org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory</span></td><td><code>42c71bb1304daa4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator</span></td><td><code>993835fcda9f6e9b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.1</span></td><td><code>622a3e1e6126a17d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.TypeSupplier</span></td><td><code>f5ef5b60d243d804</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.Instantiator.TypeSupplier.1</span></td><td><code>61301b73b055926e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe</span></td><td><code>19168437a1b76045</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.Callbacks</span></td><td><code>3a56daa68958c2d4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.GenericTypeFilter</span></td><td><code>f7970bb527b4dd0d</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.InvocationResult</span></td><td><code>da598d389dfcaca1</code></td></tr><tr><td><span class="el_class">org.springframework.boot.util.LambdaSafe.LambdaSafeCallback</span></td><td><code>043f285fed380a0a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.MessageInterpolatorFactory</span></td><td><code>9207b3152f6ec612</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.MessageSourceMessageInterpolator</span></td><td><code>3009a7e3514d3aa4</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.beanvalidation.FilteredMethodValidationPostProcessor</span></td><td><code>5c8da2a6fcea6e20</code></td></tr><tr><td><span class="el_class">org.springframework.boot.validation.beanvalidation.MethodValidationExcludeFilter</span></td><td><code>1813cbc31db4dd38</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.context.ServerPortInfoApplicationContextInitializer</span></td><td><code>68757a22d379c63e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.embedded.tomcat.TldPatterns</span></td><td><code>627439507d6a9381</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory</span></td><td><code>aa14258009eb9519</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.reactive.context.AnnotationConfigReactiveWebServerApplicationContext.Factory</span></td><td><code>385589869859bd32</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.AbstractConfigurableWebServerFactory</span></td><td><code>d2bfb849a45c8e69</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Compression</span></td><td><code>bbcc5a7f0fbb5e49</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Cookie</span></td><td><code>23e1a86e1ae9f13e</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.ErrorPage</span></td><td><code>cef2ee2c8b306fbd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.ErrorPageRegistrarBeanPostProcessor</span></td><td><code>f2a205622207ff82</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Http2</span></td><td><code>330989d870e36af7</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.MimeMappings</span></td><td><code>bba4390181b888cc</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.MimeMappings.Mapping</span></td><td><code>91659a0763c3cfe0</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.Shutdown</span></td><td><code>f4833b7f976f4aeb</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.server.WebServerFactoryCustomizerBeanPostProcessor</span></td><td><code>a4860a247a617dea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.AbstractFilterRegistrationBean</span></td><td><code>e201e36ed4aaccfd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean</span></td><td><code>b43c345c924b8904</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DispatcherType</span></td><td><code>ea9b13e776316e4c</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.DynamicRegistrationBean</span></td><td><code>d1c89fcc74b65932</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.FilterRegistrationBean</span></td><td><code>821f707e37d28afa</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.MultipartConfigFactory</span></td><td><code>925d64e14294a847</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.RegistrationBean</span></td><td><code>2314275215e5a61a</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.ServletRegistrationBean</span></td><td><code>ddd7424c9db9d22b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.Factory</span></td><td><code>ff57a6724e266b72</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.context.ApplicationServletEnvironment</span></td><td><code>feb1813305b46aca</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.error.DefaultErrorAttributes</span></td><td><code>304b805043be57dd</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.error.ErrorAttributes</span></td><td><code>4946286e06300d10</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter</span></td><td><code>f13eb2a3ff6ac579</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter.AlwaysAllowWebInvocationPrivilegeEvaluator</span></td><td><code>46a23f368b207380</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter</span></td><td><code>da1849011569b2ea</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedFormContentFilter</span></td><td><code>0314570b28c6db70</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter</span></td><td><code>0bcb3364cc548eff</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.AbstractServletWebServerFactory</span></td><td><code>626c2b5958a3e2de</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.DocumentRoot</span></td><td><code>a1c04ac314b75111</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Encoding</span></td><td><code>55f4ec770925ce55</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Encoding.Type</span></td><td><code>8a6247e6b4b63d95</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Jsp</span></td><td><code>85aff8301aec13ee</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Session</span></td><td><code>5b97c7a6aaa4b043</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.Session.Cookie</span></td><td><code>e5908aba0539e954</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.SessionStoreDirectory</span></td><td><code>ab126f47b9cf2782</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.server.StaticResourceJars</span></td><td><code>9a24f60a090ba63b</code></td></tr><tr><td><span class="el_class">org.springframework.boot.web.servlet.support.ServletContextApplicationContextInitializer</span></td><td><code>a398dfec137f67e0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator</span></td><td><code>16659dd60b7ac522</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData</span></td><td><code>76b8216645b5e5c9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.1</span></td><td><code>1b2cea60a682e2c3</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.2</span></td><td><code>48cb6c18556a29b4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.ClassLoaderData.3</span></td><td><code>c542b77694d94c97</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AbstractClassGenerator.Source</span></td><td><code>ff8f43537c34cd3b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.AsmApi</span></td><td><code>1d4074768b3cdf07</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Block</span></td><td><code>e2a6d60f476b1ad3</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter</span></td><td><code>3ba8734723964e36</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.1</span></td><td><code>39f150d2118e1804</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.2</span></td><td><code>12f18330a16d0cb0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.3</span></td><td><code>6236e78708abef85</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassEmitter.FieldInfo</span></td><td><code>bab342d76f528d96</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassInfo</span></td><td><code>d2740fe06275245b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassLoaderAwareGeneratorStrategy</span></td><td><code>69ca9256582983bf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader</span></td><td><code>855515cc037952e8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader.1</span></td><td><code>0bb78b05c2e49eea</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ClassNameReader.EarlyExitException</span></td><td><code>ca8401a07d39dc83</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CodeEmitter</span></td><td><code>f4079541ab09e9ac</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CodeEmitter.State</span></td><td><code>2ec828dd81bc0c0c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.CollectionUtils</span></td><td><code>5a718fd52de86b53</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Constants</span></td><td><code>082826b62bc5a8a9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DebuggingClassWriter</span></td><td><code>83379891fa1a41a5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DebuggingClassWriter.1</span></td><td><code>76a5cf5cdcbd19be</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DefaultGeneratorStrategy</span></td><td><code>e12309df161d92d9</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DefaultNamingPolicy</span></td><td><code>f800bc1e724c5de2</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.DuplicatesPredicate</span></td><td><code>72b22809364bc365</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils</span></td><td><code>2acf8c170e46a0fe</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.10</span></td><td><code>15e0b91c23b0ff36</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.11</span></td><td><code>cb38cfb536f16439</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.12</span></td><td><code>e1f96bc4886152aa</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.13</span></td><td><code>f3ff067069b9242e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.14</span></td><td><code>1e0ff056f23c7b6a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.15</span></td><td><code>f6a268f6f3dabfd8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.16</span></td><td><code>2d4566661b378d53</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.5</span></td><td><code>e2151d0c3b851bb4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.6</span></td><td><code>4de24939f0a7665a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.7</span></td><td><code>6e452784329d5558</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.8</span></td><td><code>1712bc0fd784fe03</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.9</span></td><td><code>7651c322c3d5d3de</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.EmitUtils.ArrayDelimiters</span></td><td><code>18ab89bbb8bc1140</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory</span></td><td><code>aaff5e32f290b72d</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.1</span></td><td><code>395e231da0305811</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.2</span></td><td><code>bda3ca578abbccd7</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.3</span></td><td><code>789f11328fb9edb4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.4</span></td><td><code>e2459242d9d89d51</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.KeyFactory.Generator</span></td><td><code>57db1ed68fa4a1c5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Local</span></td><td><code>5d30973c49f46e69</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.LocalVariablesSorter</span></td><td><code>8f972b2a9b8f51bc</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.LocalVariablesSorter.State</span></td><td><code>0d6e48dab9681aaf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodInfo</span></td><td><code>d516e0c1efb7cca8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodInfoTransformer</span></td><td><code>4fb5bd591e720eda</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodWrapper</span></td><td><code>865dbce2ad8e7d24</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.MethodWrapper.MethodWrapperKey..KeyFactoryByCGLIB..552be97a</span></td><td><code>f35945d793084d6e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils</span></td><td><code>c9ec97d6f34b8bad</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.1</span></td><td><code>c4e753e259164426</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.2</span></td><td><code>da31569df7b7157b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.3</span></td><td><code>d4062a1215a41c24</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.4</span></td><td><code>88a5e23807bd1182</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.5</span></td><td><code>7b8e5c1ee318f532</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.7</span></td><td><code>c6511bc675f2a21e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.ReflectUtils.8</span></td><td><code>76e844b510e9d626</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.RejectModifierPredicate</span></td><td><code>eae531685546bb9c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.Signature</span></td><td><code>351053ceeb854fc2</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.SpringNamingPolicy</span></td><td><code>50bfffd266d25701</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.TypeUtils</span></td><td><code>e82358d7b15f29b0</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.VisibilityPredicate</span></td><td><code>2d3a360a28cb8493</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.WeakCacheKey</span></td><td><code>27e63a2597959ca4</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.CustomizerRegistry</span></td><td><code>24225651041ba904</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache</span></td><td><code>88704dd4e739bbc8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache.1</span></td><td><code>6ef651073f2e7e04</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.core.internal.LoadingCache.2</span></td><td><code>a41eea9d584fdc4f</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.BridgeMethodResolver</span></td><td><code>bbb9f15787112ede</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.CallbackInfo</span></td><td><code>d6fd445a3d6f017f</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.DispatcherGenerator</span></td><td><code>0ac6262c87237a40</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer</span></td><td><code>372eac5588e1c83d</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.1</span></td><td><code>3ab2a2d4a9ab9026</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.2</span></td><td><code>485314879038802a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.3</span></td><td><code>272f30984224adbb</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.4</span></td><td><code>17fb00bcbadf891e</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.5</span></td><td><code>3ad491ddc9838467</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.6</span></td><td><code>09222951f58cd763</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.EnhancerFactoryData</span></td><td><code>ca8adaae39389f9a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.Enhancer.EnhancerKey..KeyFactoryByCGLIB..4ce19e8f</span></td><td><code>5f5a3ce9c5601714</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.FixedValueGenerator</span></td><td><code>20384f48bf1763a6</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.InvocationHandlerGenerator</span></td><td><code>a198020a9c973f61</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.LazyLoaderGenerator</span></td><td><code>fb509e8d9bbbbded</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator</span></td><td><code>4e9d41c80f250339</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator.1</span></td><td><code>0e1a460afeb4e30a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodInterceptorGenerator.2</span></td><td><code>96e07b9c8833b9bf</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy</span></td><td><code>0cb4c15aff0bcd9c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy.CreateInfo</span></td><td><code>d3b5659617fa2a28</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.MethodProxy.FastClassInfo</span></td><td><code>3645d6c2256ef51b</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOp</span></td><td><code>49f25723ade142d1</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOp.1</span></td><td><code>acc3921bfc2620d8</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.proxy.NoOpGenerator</span></td><td><code>fa8188f64396c488</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClass</span></td><td><code>f43165c248a79d5a</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClass.Generator</span></td><td><code>7292c80c42635ce5</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter</span></td><td><code>a897a57567b25d62</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.1</span></td><td><code>3fc8e1d69dab0eb1</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.3</span></td><td><code>3de8e736f1f0db99</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.4</span></td><td><code>64317dddff70ed76</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.reflect.FastClassEmitter.GetIndexCallback</span></td><td><code>d6fda17b9938d83c</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.ClassEmitterTransformer</span></td><td><code>72ae4c57048be866</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.ClassTransformer</span></td><td><code>8984f423cbc28a10</code></td></tr><tr><td><span class="el_class">org.springframework.cglib.transform.TransformingClassGenerator</span></td><td><code>28e7820bc18cb3d4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration</span></td><td><code>f8d8c07a29cda016</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration</span></td><td><code>1379fe3e4c0eefaa</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration</span></td><td><code>6949360e15f3168a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.JpaInvokerConfiguration</span></td><td><code>be795b861e8f244a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshProperties</span></td><td><code>f1612bb9bb376284</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeBeanDefinitionEnhancer</span></td><td><code>615a7c49211f80d3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.BootstrapApplicationListener</span></td><td><code>13b1dc045c4125f0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.LoggingSystemShutdownListener</span></td><td><code>8a0b024828b5c942</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.RefreshBootstrapRegistryInitializer</span></td><td><code>fbe90584be2b2a28</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.TextEncryptorConfigBootstrapper</span></td><td><code>7d3fc68745d62da4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.AbstractEnvironmentDecrypt</span></td><td><code>fa88784cf7045705</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.DecryptEnvironmentPostProcessor</span></td><td><code>b238d867c22e47bb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.KeyProperties</span></td><td><code>ca8741730c0c01c9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore</span></td><td><code>8eaf0e7c033376f9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.RsaProperties</span></td><td><code>b47eb8fe6da4ecd0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.TextEncryptorUtils</span></td><td><code>536683f2fcff35f6</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.bootstrap.encrypt.TextEncryptorUtils.FailsafeTextEncryptor</span></td><td><code>55f9183a478ac927</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.CommonsClientAutoConfiguration</span></td><td><code>94f33960cef9de31</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.DefaultServiceInstance</span></td><td><code>8de79ab86904064c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.HostInfoEnvironmentPostProcessor</span></td><td><code>da20c621e37bbe48</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.ReactiveCommonsClientAutoConfiguration</span></td><td><code>e1fc408fe0712ebc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.actuator.HasFeatures</span></td><td><code>78542e605a418748</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.actuator.NamedFeature</span></td><td><code>236bbd98bdc5046b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient</span></td><td><code>01d8d62ef3f0aa8c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration</span></td><td><code>04e3c1e8a8d71370</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.reactive.ReactiveCompositeDiscoveryClient</span></td><td><code>1e28db6e568114a5</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.composite.reactive.ReactiveCompositeDiscoveryClientAutoConfiguration</span></td><td><code>77caf4e9bda30857</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicatorProperties</span></td><td><code>abaf83b6606f4e28</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient</span></td><td><code>2c3a8ade11e4a217</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration</span></td><td><code>0a774331b3e56377</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties</span></td><td><code>66cb7ae3cb701aa2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryClient</span></td><td><code>3699e8040f41154e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryClientAutoConfiguration</span></td><td><code>aea85a4544bc6ce7</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.discovery.simple.reactive.SimpleReactiveDiscoveryProperties</span></td><td><code>b0241f1318ed5e7a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration.RetryMissingOrDisabledCondition</span></td><td><code>ff2b3ec62c0fc068</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration</span></td><td><code>e3239370dc98d74e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration.OnAnyLoadBalancerImplementationPresentCondition</span></td><td><code>68512305d373ace0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration</span></td><td><code>e62ab413acfc21cf</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration</span></td><td><code>893ee046dd025e11</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties</span></td><td><code>2cdc133784ad0ef1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration</span></td><td><code>308edb4b2a2034e8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration</span></td><td><code>2a2b333f81b27e53</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor</span></td><td><code>ba43ddc4486af185</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor.1</span></td><td><code>fd9fbd97354c1ada</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultApacheHttpClientConnectionManagerFactory</span></td><td><code>7655020629cc5234</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultApacheHttpClientFactory</span></td><td><code>ebb79ced5836c1a0</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultOkHttpClientConnectionPoolFactory</span></td><td><code>fa31680790c61982</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.DefaultOkHttpClientFactory</span></td><td><code>dcf7a6700c767fee</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration</span></td><td><code>87b2f6836db0939b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration.ApacheHttpClientConfiguration</span></td><td><code>9390f425ea8b26bf</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.httpclient.HttpClientConfiguration.OkHttpClientConfiguration</span></td><td><code>e8b43bef2485f8a2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.security.ResourceServerTokenRelayAutoConfiguration.OAuth2OnClientInResourceServerCondition</span></td><td><code>9239202233ae4ee7</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtils</span></td><td><code>b0a4fb82ff1902b9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtils.HostInfo</span></td><td><code>2375ed9ed4fb94c4</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.InetUtilsProperties</span></td><td><code>cb3cdd23cf526c1b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.commons.util.UtilAutoConfiguration</span></td><td><code>1dde9cfd041a6e93</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompatibilityVerifierAutoConfiguration</span></td><td><code>0fbc42787500b8ef</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompatibilityVerifierProperties</span></td><td><code>e41ece1020f7bb3d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.CompositeCompatibilityVerifier</span></td><td><code>57d21cbaba86a870</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier</span></td><td><code>67ea0533fc9c0cfb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.1</span></td><td><code>ddd8f4c06d5cea3f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.2</span></td><td><code>84f60e2bf50710c8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.SpringBootVersionVerifier.3</span></td><td><code>34c15dcb00ec6f00</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.configuration.VerificationResult</span></td><td><code>a06ff145fb1eec7f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.environment.EnvironmentManager</span></td><td><code>704f7d409b971a27</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.named.NamedContextFactory</span></td><td><code>12a5d18977808378</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.properties.ConfigurationPropertiesBeans</span></td><td><code>a814ca3fc1d30b2b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder</span></td><td><code>38581afcfdba3cdd</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.refresh.ConfigDataContextRefresher</span></td><td><code>06f8a1b1bbdd2594</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.refresh.ContextRefresher</span></td><td><code>fe8c07b090ad00e3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.restart.RestartListener</span></td><td><code>e494d850aba5853c</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.GenericScope</span></td><td><code>a2455ca039fca045</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.GenericScope.BeanLifecycleWrapperCache</span></td><td><code>2c4f24fe4cf26eae</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.StandardScopeCache</span></td><td><code>e989206b5b6fc27f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.context.scope.refresh.RefreshScope</span></td><td><code>41a20eef5df0e9b8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.endpoint.event.RefreshEventListener</span></td><td><code>90d5e4aa09f658cb</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.logging.LoggingRebinder</span></td><td><code>3686164238d30e6b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.DefaultFeignLoggerFactory</span></td><td><code>701cc8bf53218ea8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.DefaultTargeter</span></td><td><code>6315019bc7c9f135</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignAutoConfiguration</span></td><td><code>4db86a977542406e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignAutoConfiguration.DefaultFeignTargeterConfiguration</span></td><td><code>3f2f5d21a376b513</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignCircuitBreakerDisabledConditions</span></td><td><code>cb92c31154a96e76</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientFactoryBean</span></td><td><code>d11a05a1dc43b721</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientMetricsEnabledCondition</span></td><td><code>e39dc332b3f9d99b</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientProperties</span></td><td><code>3869197a087cf191</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientSpecification</span></td><td><code>3b04ba0a0a1f99a9</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration</span></td><td><code>5d8d4b19c7f07cfe</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration.1</span></td><td><code>0bccac4856339a94</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsConfiguration.DefaultFeignBuilderConfiguration</span></td><td><code>03bcd3db330ebfdd</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignClientsRegistrar</span></td><td><code>172c7ff0e2b7e658</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.FeignContext</span></td><td><code>a506cf0eea25f02a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.HttpClient5DisabledConditions</span></td><td><code>3eda5b579370a941</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.CookieValueParameterProcessor</span></td><td><code>8eb2827c8b213383</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.MatrixVariableParameterProcessor</span></td><td><code>533b0f850ccd0775</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.PathVariableParameterProcessor</span></td><td><code>c545049ccc4b472a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.QueryMapParameterProcessor</span></td><td><code>654868ae72af5ab1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestHeaderParameterProcessor</span></td><td><code>bca55838a4511255</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestParamParameterProcessor</span></td><td><code>dbebf676a50d6f3a</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.annotation.RequestPartParameterProcessor</span></td><td><code>1df7edd3a90d9b4f</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.clientconfig.FeignClientConfigurer</span></td><td><code>d29421a6aed8cf33</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignEncoderProperties</span></td><td><code>2f28d759c89d6ad8</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties</span></td><td><code>1746962d2926d26d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties</span></td><td><code>cc40a41c78429a91</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties.PoolConcurrencyPolicy</span></td><td><code>12e23d8bed8da04e</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.Hc5Properties.PoolReusePolicy</span></td><td><code>4ab2e589cbad02c3</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignHttpClientProperties.OkHttp</span></td><td><code>d6dba5f9e61079d6</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.FeignUtils</span></td><td><code>ef2c0ddaa0c111ce</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.PageableSpringEncoder</span></td><td><code>bddd5a259073b688</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.PageableSpringQueryMapEncoder</span></td><td><code>5d4b06c1b02deacc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.ResponseEntityDecoder</span></td><td><code>0c8bdfb44d5b7951</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringDecoder</span></td><td><code>eb2f9c87d1cb2370</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringEncoder</span></td><td><code>67bd2d286ac1a23d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract</span></td><td><code>803236e8640d6f2d</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract.ConvertingExpanderFactory</span></td><td><code>4e58c5a04ec3f6e2</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.openfeign.support.SpringMvcContract.SimpleAnnotatedParameterContext</span></td><td><code>76b790f0b109cdfc</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.ConditionalOnBootstrapDisabled.OnBootstrapDisabledCondition</span></td><td><code>94d2acdb6747ef73</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.ConditionalOnBootstrapEnabled.OnBootstrapEnabledCondition</span></td><td><code>75a7dff723a7f988</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.PropertyUtils</span></td><td><code>dbc7287b95e2d610</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.random.CachedRandomPropertySource</span></td><td><code>fbb439ce346c23f1</code></td></tr><tr><td><span class="el_class">org.springframework.cloud.util.random.CachedRandomPropertySourceEnvironmentPostProcessor</span></td><td><code>7cc174eeffe49765</code></td></tr><tr><td><span class="el_class">org.springframework.context.ApplicationEvent</span></td><td><code>83cb66a9e3580ca6</code></td></tr><tr><td><span class="el_class">org.springframework.context.PayloadApplicationEvent</span></td><td><code>dab204af6beaa183</code></td></tr><tr><td><span class="el_class">org.springframework.context.SmartLifecycle</span></td><td><code>580036ed72a22f86</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AdviceMode</span></td><td><code>8c0454606c4bd0de</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AdviceModeImportSelector</span></td><td><code>c4dc960d63afc8d1</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotatedBeanDefinitionReader</span></td><td><code>897d6f2e8e7ffe57</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationBeanNameGenerator</span></td><td><code>1a4ac548cdcdd738</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationConfigApplicationContext</span></td><td><code>545ac5c0b34de1b3</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationConfigUtils</span></td><td><code>3eba687d124d556f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AnnotationScopeMetadataResolver</span></td><td><code>39178d9dd0165637</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AspectJAutoProxyRegistrar</span></td><td><code>48223b8400a83304</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.AutoProxyRegistrar</span></td><td><code>1f98080442544624</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.BeanAnnotationHelper</span></td><td><code>50f9c0a5609d7d07</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.BeanMethod</span></td><td><code>b2bbb0c7f2e35111</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ClassPathBeanDefinitionScanner</span></td><td><code>23dbc08126c2fbc4</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider</span></td><td><code>82eb4d43593e88aa</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.CommonAnnotationBeanPostProcessor</span></td><td><code>727c1ed1a80577e8</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ComponentScanAnnotationParser</span></td><td><code>cc364b137e78720a</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ComponentScanAnnotationParser.1</span></td><td><code>102212c872af920f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConditionEvaluator</span></td><td><code>f72ae849c4719e1c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConditionEvaluator.ConditionContextImpl</span></td><td><code>8519893fbd6bfb22</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClass</span></td><td><code>c42d389c1516e1ab</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader</span></td><td><code>f2354c5d71534b6c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.ConfigurationClassBeanDefinition</span></td><td><code>6f56a9cd29e5c1ff</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.TrackedConditionEvaluator</span></td><td><code>3f282c92838ce57d</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer</span></td><td><code>f5202a3ffe4630d3</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareGeneratorStrategy</span></td><td><code>be23cc469db7a3b5</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareGeneratorStrategy.1</span></td><td><code>4329a2760414c2c0</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanFactoryAwareMethodInterceptor</span></td><td><code>a943879bae2c3ac9</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.BeanMethodInterceptor</span></td><td><code>16f2fced898a254d</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassEnhancer.ConditionalCallbackFilter</span></td><td><code>b4500e6f5c8fe809</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser</span></td><td><code>c6b297f24dee74cf</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorGrouping</span></td><td><code>792da396a6d3042a</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorGroupingHandler</span></td><td><code>48a487914dcc878b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorHandler</span></td><td><code>5865164655ff704c</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.DeferredImportSelectorHolder</span></td><td><code>51d40af6857f95a6</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.ImportStack</span></td><td><code>945e9261e385b596</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassParser.SourceClass</span></td><td><code>22c748c0b8920eee</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassPostProcessor</span></td><td><code>d7fb3dd6f5391d56</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassPostProcessor.ImportAwareBeanPostProcessor</span></td><td><code>d6fffcae701fe095</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationClassUtils</span></td><td><code>0334d911503fd303</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase</span></td><td><code>560dc1ac5efded73</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ConfigurationMethod</span></td><td><code>7bbde10fbd56dc59</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver</span></td><td><code>39c5001b763878da</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver.1</span></td><td><code>478a00cb6fb4fc6f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.DeferredImportSelector.Group.Entry</span></td><td><code>3f5f109b118a04de</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.FilterType</span></td><td><code>07bcbc82439adf8b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator</span></td><td><code>79169c3fdace56e9</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ImportBeanDefinitionRegistrar</span></td><td><code>58e50834cacf6219</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ImportSelector</span></td><td><code>a7852eff51cbead1</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ParserStrategyUtils</span></td><td><code>935bd9607fa1b8d8</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ProfileCondition</span></td><td><code>169c26592f62f39b</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScannedGenericBeanDefinition</span></td><td><code>85cba26291a60045</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScopeMetadata</span></td><td><code>f4c94273854e79b5</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.ScopedProxyMode</span></td><td><code>98c5bda3bb764e44</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.TypeFilterUtils</span></td><td><code>45f04a8a3b9d327f</code></td></tr><tr><td><span class="el_class">org.springframework.context.annotation.TypeFilterUtils.1</span></td><td><code>0fa6829ebeb64fd6</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster</span></td><td><code>23747158baac4bdf</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.CachedListenerRetriever</span></td><td><code>6c4411c0fab14187</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.DefaultListenerRetriever</span></td><td><code>9f574a1076f423be</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.AbstractApplicationEventMulticaster.ListenerCacheKey</span></td><td><code>870f98fe44e4c176</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ApplicationContextEvent</span></td><td><code>99355cd7effbfcfe</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ContextClosedEvent</span></td><td><code>454518749a18dc48</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.ContextRefreshedEvent</span></td><td><code>7685faae0b73b5e2</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.DefaultEventListenerFactory</span></td><td><code>c88ebb05d5c9bbd5</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.EventExpressionEvaluator</span></td><td><code>8c3cd34d70fa3dd0</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.EventListenerMethodProcessor</span></td><td><code>dc09c6cfbbc2dc33</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.GenericApplicationListenerAdapter</span></td><td><code>aea76c7ed49262b6</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.SimpleApplicationEventMulticaster</span></td><td><code>9d1e567f1a4a68e5</code></td></tr><tr><td><span class="el_class">org.springframework.context.event.SmartApplicationListener</span></td><td><code>cf05d5cb6c64c041</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanExpressionContextAccessor</span></td><td><code>54f22f02669c1fd2</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanFactoryAccessor</span></td><td><code>d0aabf289d9ac5e3</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.BeanFactoryResolver</span></td><td><code>7bafc3251813e9be</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.CachedExpressionEvaluator</span></td><td><code>a2ff71920ef013cf</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.EnvironmentAccessor</span></td><td><code>8cbb51749f4ba41c</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.MapAccessor</span></td><td><code>e5455b294f754444</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.StandardBeanExpressionResolver</span></td><td><code>a94869362149626e</code></td></tr><tr><td><span class="el_class">org.springframework.context.expression.StandardBeanExpressionResolver.1</span></td><td><code>e4be0e65585a1f68</code></td></tr><tr><td><span class="el_class">org.springframework.context.index.CandidateComponentsIndexLoader</span></td><td><code>92aa29134f9ef73f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractApplicationContext</span></td><td><code>c3c7cfd8f988325a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractMessageSource</span></td><td><code>07cae2cff217da1a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.AbstractResourceBasedMessageSource</span></td><td><code>dd378b42e49a353e</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationContextAwareProcessor</span></td><td><code>4831557feef2df5f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationListenerDetector</span></td><td><code>d9612ca339cf3e81</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ApplicationObjectSupport</span></td><td><code>2612900a9e481055</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor</span></td><td><code>5d0b51095a5e9ba9</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor.LifecycleGroup</span></td><td><code>d22d5a011dc9612a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DefaultLifecycleProcessor.LifecycleGroupMember</span></td><td><code>383157bfedc4cea7</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.DelegatingMessageSource</span></td><td><code>587e04cc80616cad</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.EmbeddedValueResolutionSupport</span></td><td><code>33fd6e4c01797b9f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.GenericApplicationContext</span></td><td><code>77ec1b11a5428b1f</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.LiveBeansView</span></td><td><code>fad60b913896e0c9</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.MessageSourceAccessor</span></td><td><code>61a3bb9169ca7ef3</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.MessageSourceSupport</span></td><td><code>fa18b4a586bbd7d4</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PostProcessorRegistrationDelegate</span></td><td><code>4d3cbc1651b115f2</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PostProcessorRegistrationDelegate.BeanPostProcessorChecker</span></td><td><code>1f6837c57e6f2606</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PropertySourcesPlaceholderConfigurer</span></td><td><code>e7e76a955620351a</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.PropertySourcesPlaceholderConfigurer.1</span></td><td><code>f2ed7dd357d5549c</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ResourceBundleMessageSource</span></td><td><code>79e67fcae44d87db</code></td></tr><tr><td><span class="el_class">org.springframework.context.support.ResourceBundleMessageSource.MessageSourceControl</span></td><td><code>216033abf8bc755d</code></td></tr><tr><td><span class="el_class">org.springframework.core.AttributeAccessorSupport</span></td><td><code>4260f940c9373c86</code></td></tr><tr><td><span class="el_class">org.springframework.core.BridgeMethodResolver</span></td><td><code>6be8e35b682d363d</code></td></tr><tr><td><span class="el_class">org.springframework.core.CollectionFactory</span></td><td><code>0aefff6cf4e930b1</code></td></tr><tr><td><span class="el_class">org.springframework.core.Constants</span></td><td><code>c36d404d3824e294</code></td></tr><tr><td><span class="el_class">org.springframework.core.Conventions</span></td><td><code>973a966aa5ae679f</code></td></tr><tr><td><span class="el_class">org.springframework.core.DecoratingClassLoader</span></td><td><code>668e6314a2d5c7ba</code></td></tr><tr><td><span class="el_class">org.springframework.core.DefaultParameterNameDiscoverer</span></td><td><code>b41a493774fe0725</code></td></tr><tr><td><span class="el_class">org.springframework.core.GenericTypeResolver</span></td><td><code>e85d6e442c0ae553</code></td></tr><tr><td><span class="el_class">org.springframework.core.GenericTypeResolver.TypeVariableMapVariableResolver</span></td><td><code>f93e36a90d3435f6</code></td></tr><tr><td><span class="el_class">org.springframework.core.KotlinDetector</span></td><td><code>0dc2ed8934e996e3</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer</span></td><td><code>096054af0b43f07d</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer.LocalVariableTableVisitor</span></td><td><code>9083238d8223d6d7</code></td></tr><tr><td><span class="el_class">org.springframework.core.LocalVariableTableParameterNameDiscoverer.ParameterNameDiscoveringVisitor</span></td><td><code>36c5a3179da8ead4</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodClassKey</span></td><td><code>76a127ef7f0c2244</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodIntrospector</span></td><td><code>40ce4160b1a8770f</code></td></tr><tr><td><span class="el_class">org.springframework.core.MethodParameter</span></td><td><code>1e7791a56b139d1a</code></td></tr><tr><td><span class="el_class">org.springframework.core.NamedInheritableThreadLocal</span></td><td><code>aa147e3fe75667a7</code></td></tr><tr><td><span class="el_class">org.springframework.core.NamedThreadLocal</span></td><td><code>50a4b84dcfc515f2</code></td></tr><tr><td><span class="el_class">org.springframework.core.NativeDetector</span></td><td><code>56dc3e9af599dc20</code></td></tr><tr><td><span class="el_class">org.springframework.core.NestedExceptionUtils</span></td><td><code>b7260ae3640fe639</code></td></tr><tr><td><span class="el_class">org.springframework.core.NestedRuntimeException</span></td><td><code>ee2a8e4c7f030794</code></td></tr><tr><td><span class="el_class">org.springframework.core.OrderComparator</span></td><td><code>e5cb63e3a5a4454c</code></td></tr><tr><td><span class="el_class">org.springframework.core.OverridingClassLoader</span></td><td><code>d01f0a350bc41770</code></td></tr><tr><td><span class="el_class">org.springframework.core.ParameterizedTypeReference</span></td><td><code>8e269aaa6aafdca9</code></td></tr><tr><td><span class="el_class">org.springframework.core.PrioritizedParameterNameDiscoverer</span></td><td><code>78983df87aa930cc</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapter</span></td><td><code>822fcc87ce1902ba</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry</span></td><td><code>4f0aa880364222da</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorAdapter</span></td><td><code>eae13d07d9f2f654</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorJdkFlowAdapterRegistrar</span></td><td><code>a3be8e9733ce737b</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveAdapterRegistry.ReactorRegistrar</span></td><td><code>e1ad194d5068ab4f</code></td></tr><tr><td><span class="el_class">org.springframework.core.ReactiveTypeDescriptor</span></td><td><code>2dd1b02fb22d9860</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType</span></td><td><code>3c5bc01f806c8a58</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.1</span></td><td><code>0b714d1a274ba0e1</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.DefaultVariableResolver</span></td><td><code>c2155d0f85ab4ceb</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.EmptyType</span></td><td><code>fd80d07b531f69c9</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.SyntheticParameterizedType</span></td><td><code>1b21652b5a451374</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.TypeVariablesVariableResolver</span></td><td><code>fe2f6dd0689cbc8e</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.WildcardBounds</span></td><td><code>bf21f32f1ff12903</code></td></tr><tr><td><span class="el_class">org.springframework.core.ResolvableType.WildcardBounds.Kind</span></td><td><code>6ac226f09c6eb74b</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper</span></td><td><code>678661f946404a83</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.FieldTypeProvider</span></td><td><code>9c5bc8725d602f45</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.MethodInvokeTypeProvider</span></td><td><code>a7a369201b8b6db3</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.MethodParameterTypeProvider</span></td><td><code>2a66a8a12753699e</code></td></tr><tr><td><span class="el_class">org.springframework.core.SerializableTypeWrapper.TypeProxyInvocationHandler</span></td><td><code>4b3f995af378b662</code></td></tr><tr><td><span class="el_class">org.springframework.core.SimpleAliasRegistry</span></td><td><code>fbf14eec2c7d2193</code></td></tr><tr><td><span class="el_class">org.springframework.core.SpringProperties</span></td><td><code>8479bce077966276</code></td></tr><tr><td><span class="el_class">org.springframework.core.StandardReflectionParameterNameDiscoverer</span></td><td><code>52e69827f219ea90</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AbstractMergedAnnotation</span></td><td><code>a2eaf21deb40737e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotatedElementUtils</span></td><td><code>853036e7254dcce0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotatedElementUtils.AnnotatedElementForAnnotations</span></td><td><code>a86e2e7e479801a3</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationAttributes</span></td><td><code>9425c17b05fe81c9</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationAwareOrderComparator</span></td><td><code>88fb9eedb6621779</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter</span></td><td><code>3b4e68bc5b0564b8</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter.1</span></td><td><code>731afcbd7c925ddd</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationFilter.2</span></td><td><code>bf4ca23e363cbe8b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping</span></td><td><code>1aebf6605e7ad9a5</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping.MirrorSets</span></td><td><code>6c6ad40ea509f8ef</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMapping.MirrorSets.MirrorSet</span></td><td><code>3771e8c5104e3ff7</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMappings</span></td><td><code>4fa688f6996f8a6e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationTypeMappings.Cache</span></td><td><code>fc3ee214a60a6271</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationUtils</span></td><td><code>2be45c15eaa45fb5</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsProcessor</span></td><td><code>5c9b3f2839a74a92</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsScanner</span></td><td><code>f939e682acf980cd</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AnnotationsScanner.1</span></td><td><code>80df8452806fc35c</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.AttributeMethods</span></td><td><code>b3604241d368ba8d</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger</span></td><td><code>1760e2f15fc055f0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger.1</span></td><td><code>69130e55aa339291</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.IntrospectionFailureLogger.2</span></td><td><code>e32cb403012dbeeb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotation</span></td><td><code>6ae84617d26a54b1</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotation.Adapt</span></td><td><code>2e6f89b9a9961c3b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationCollectors</span></td><td><code>e3c88709d3eba84e</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates</span></td><td><code>113c58d70ba00efb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates.FirstRunOfPredicate</span></td><td><code>452a750cf4bd483b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationPredicates.UniquePredicate</span></td><td><code>107975a5a587c6e0</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors</span></td><td><code>414c3b4df5f5d4e6</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors.FirstDirectlyDeclared</span></td><td><code>9815c07587c67f64</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationSelectors.Nearest</span></td><td><code>6c1daa8cf2b93d65</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotations</span></td><td><code>e7cb1ace931ea2a3</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotations.SearchStrategy</span></td><td><code>74f59a10eff86fc4</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationsCollection</span></td><td><code>e234fb9a0eb59118</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MergedAnnotationsCollection.AnnotationsSpliterator</span></td><td><code>8866b0171d2d4f21</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.MissingMergedAnnotation</span></td><td><code>676e984170373392</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.OrderUtils</span></td><td><code>6f96988914d327bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.PackagesAnnotationFilter</span></td><td><code>e0973d2e2a49417c</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers</span></td><td><code>e474d8d4437edcf1</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.ExplicitRepeatableContainer</span></td><td><code>bb523bf21245bd5d</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.NoRepeatableContainers</span></td><td><code>3908525dbd6dad38</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.RepeatableContainers.StandardRepeatableContainers</span></td><td><code>4823a2bd926f68cc</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.SynthesizedMergedAnnotationInvocationHandler</span></td><td><code>425957c1427e4591</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.SynthesizingMethodParameter</span></td><td><code>df9797c29d4d7a17</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotation</span></td><td><code>f9403ca0615caaf9</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations</span></td><td><code>5f5ba88b66f894af</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.Aggregate</span></td><td><code>8ee9eaa9076a971b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.AggregatesCollector</span></td><td><code>3391fae82f28d637</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.AggregatesSpliterator</span></td><td><code>684dd868de473b8b</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.IsPresent</span></td><td><code>42458f4118f8b435</code></td></tr><tr><td><span class="el_class">org.springframework.core.annotation.TypeMappedAnnotations.MergedAnnotationFinder</span></td><td><code>bf2384fd0fcc8f56</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.Property</span></td><td><code>92c255dc9dc89a7c</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.TypeDescriptor</span></td><td><code>ad737b62c63b6f17</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.TypeDescriptor.AnnotatedElementAdapter</span></td><td><code>77c24a587608adc3</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.Converter</span></td><td><code>2578108c4b76a9f4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.ConvertingComparator</span></td><td><code>be2bf8ea585a0053</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.converter.GenericConverter.ConvertiblePair</span></td><td><code>47277af2c8796b30</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.AbstractConditionalEnumConverter</span></td><td><code>e52b7ffca207b2a2</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToArrayConverter</span></td><td><code>e1d6eb8e143a0f3e</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToCollectionConverter</span></td><td><code>ae8a41c17ac2cfe8</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToObjectConverter</span></td><td><code>0adebbdf69ee28af</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ArrayToStringConverter</span></td><td><code>f392badc590390ad</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ByteBufferConverter</span></td><td><code>a4362816313574b0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CharacterToNumberFactory</span></td><td><code>76c982068142e0a5</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToArrayConverter</span></td><td><code>c42a5366a61c19ae</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToCollectionConverter</span></td><td><code>cd0eb2f4b5a09ecb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToObjectConverter</span></td><td><code>2db70afdb2d912fd</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.CollectionToStringConverter</span></td><td><code>7abcefdc33eb1453</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ConversionUtils</span></td><td><code>356c819475f481da</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.DefaultConversionService</span></td><td><code>88e4a62ea2f94713</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.EnumToIntegerConverter</span></td><td><code>2b5a19f768913bb9</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.EnumToStringConverter</span></td><td><code>d28d48a056800d66</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.FallbackObjectToStringConverter</span></td><td><code>421f4fd4d944ab76</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService</span></td><td><code>d8cf7bfe6a050064</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterAdapter</span></td><td><code>e87a728f9ce140f6</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterCacheKey</span></td><td><code>19b14348651d4f0a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConverterFactoryAdapter</span></td><td><code>b5bc742e0cee54bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.Converters</span></td><td><code>e819ed8095c3920b</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.ConvertersForPair</span></td><td><code>a8f530e8e4d2a29a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.GenericConversionService.NoOpConverter</span></td><td><code>292817a54f80e2f0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.IdToEntityConverter</span></td><td><code>4a1bd8d7f46bc47d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.IntegerToEnumConverterFactory</span></td><td><code>3c7264b963eed208</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.MapToMapConverter</span></td><td><code>122c4b0d008a79cd</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToCharacterConverter</span></td><td><code>4fd3d858e3612945</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToNumberConverterFactory</span></td><td><code>01d65b24a2069618</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.NumberToNumberConverterFactory.NumberToNumber</span></td><td><code>b74ff8811350c89d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToArrayConverter</span></td><td><code>7968f1faa290b4c3</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToCollectionConverter</span></td><td><code>441ecfcac1b1f227</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToObjectConverter</span></td><td><code>031ec96fed02ca3d</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToOptionalConverter</span></td><td><code>7dbe8179dd5b4d23</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ObjectToStringConverter</span></td><td><code>fe8e4e6e39906e84</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.PropertiesToStringConverter</span></td><td><code>1228e6e1ed886ffb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StreamConverter</span></td><td><code>b0c07b0a3e955052</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToArrayConverter</span></td><td><code>2abe74b63a2caacc</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToBooleanConverter</span></td><td><code>1727acb0c080e86f</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCharacterConverter</span></td><td><code>7fbd0d87c99698fb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCharsetConverter</span></td><td><code>bd2597ad67597d4a</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCollectionConverter</span></td><td><code>37e3a49e9785bfcb</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToCurrencyConverter</span></td><td><code>1a9c58d7f472cb23</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToEnumConverterFactory</span></td><td><code>ed1a93fd706298c0</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToLocaleConverter</span></td><td><code>8cba5c1837ca93e4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToNumberConverterFactory</span></td><td><code>85b4d6b99c6b9438</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToNumberConverterFactory.StringToNumber</span></td><td><code>a335bb3937da3868</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToPropertiesConverter</span></td><td><code>bb1101d3e2cec6e4</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToTimeZoneConverter</span></td><td><code>df70ee5d021dd5ec</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.StringToUUIDConverter</span></td><td><code>2b0efd5b83a8af85</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ZoneIdToTimeZoneConverter</span></td><td><code>80c26850887ed2fa</code></td></tr><tr><td><span class="el_class">org.springframework.core.convert.support.ZonedDateTimeToCalendarConverter</span></td><td><code>ada1a53eb486d46f</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.AbstractEnvironment</span></td><td><code>5b31fc12f31e591a</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.AbstractPropertyResolver</span></td><td><code>7cab120f42834cd0</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.CommandLineArgs</span></td><td><code>98fad3d07d0cc8f5</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.CommandLinePropertySource</span></td><td><code>97010ce5ae66aaeb</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.EnumerablePropertySource</span></td><td><code>39fd1f60d9050967</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MapPropertySource</span></td><td><code>278fb2ece4af95ee</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MissingRequiredPropertiesException</span></td><td><code>c641b63e794fdd79</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.MutablePropertySources</span></td><td><code>fa5119aece5158e1</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.Profiles</span></td><td><code>7eeebf730cc5696d</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser</span></td><td><code>7268f200d7f86997</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser.Context</span></td><td><code>287b4c43920b3d89</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.ProfilesParser.ParsedProfiles</span></td><td><code>c37a6341ffe95e32</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertiesPropertySource</span></td><td><code>79f6cc42fc481f03</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource</span></td><td><code>fb657a8743ec132a</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource.ComparisonPropertySource</span></td><td><code>7ebdfaf64daa2df3</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySource.StubPropertySource</span></td><td><code>64e8a71dbd922110</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.PropertySourcesPropertyResolver</span></td><td><code>9d4a0a1efe2168f7</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SimpleCommandLineArgsParser</span></td><td><code>a425c3b9c2105362</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SimpleCommandLinePropertySource</span></td><td><code>55d56aab4f01eadb</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.StandardEnvironment</span></td><td><code>4e4187f823953fa3</code></td></tr><tr><td><span class="el_class">org.springframework.core.env.SystemEnvironmentPropertySource</span></td><td><code>d50a586472b69aa7</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.AbstractFileResolvingResource</span></td><td><code>d1dee249f3344dc2</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.AbstractResource</span></td><td><code>06597b21d4538426</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.ClassPathResource</span></td><td><code>725d21742ca938ad</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DefaultResourceLoader</span></td><td><code>1f552532c47e5032</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DefaultResourceLoader.ClassPathContextResource</span></td><td><code>3533d0492caec070</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.DescriptiveResource</span></td><td><code>637ef9bb0b5c4c41</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResource</span></td><td><code>43dccf62674b6788</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResourceLoader</span></td><td><code>d227e0a09dfd48f1</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileSystemResourceLoader.FileSystemContextResource</span></td><td><code>bb761f0d2a2899cf</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.FileUrlResource</span></td><td><code>626b3662ee902014</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.ResourceEditor</span></td><td><code>28c8e56b8d65300d</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.UrlResource</span></td><td><code>099350707f4b976e</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.DefaultPropertySourceFactory</span></td><td><code>e6b9f1497fb42da5</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.EncodedResource</span></td><td><code>67281da9935bcfe5</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PathMatchingResourcePatternResolver</span></td><td><code>86ae8cc1cf012953</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PropertiesLoaderSupport</span></td><td><code>aea0b9b08385ba3e</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.PropertiesLoaderUtils</span></td><td><code>a145b823c88697bb</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourceArrayPropertyEditor</span></td><td><code>89d6a171d017e578</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePatternUtils</span></td><td><code>1a5a1d149aa3c6c8</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePropertiesPersister</span></td><td><code>250aba5449e3ee64</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.ResourcePropertySource</span></td><td><code>7309b8953146de45</code></td></tr><tr><td><span class="el_class">org.springframework.core.io.support.SpringFactoriesLoader</span></td><td><code>c83b5737c6d87a74</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.CompositeLog</span></td><td><code>db5b084ad41e7dc6</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogDelegateFactory</span></td><td><code>63712d9de62fd9e7</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage</span></td><td><code>15c2a219b9c21e90</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage</span></td><td><code>b9d81aae3f539efe</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage1</span></td><td><code>e47c0db4e5c0aeb5</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.FormatMessage2</span></td><td><code>d5ada364408d1dd3</code></td></tr><tr><td><span class="el_class">org.springframework.core.log.LogMessage.SupplierMessage</span></td><td><code>6e20027a829c7194</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.ApplicationStartup</span></td><td><code>c20b37681880e60f</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup</span></td><td><code>24acf016a90bef82</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup.DefaultStartupStep</span></td><td><code>10d988ef492a9bf1</code></td></tr><tr><td><span class="el_class">org.springframework.core.metrics.DefaultApplicationStartup.DefaultStartupStep.DefaultTags</span></td><td><code>e29d290f9e160e16</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SimpleAsyncTaskExecutor</span></td><td><code>312ed759fbba2ec2</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SimpleAsyncTaskExecutor.ConcurrencyThrottleAdapter</span></td><td><code>6f706b1a0be9d3b0</code></td></tr><tr><td><span class="el_class">org.springframework.core.task.SyncTaskExecutor</span></td><td><code>58a28ecb849d6203</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.AnnotatedTypeMetadata</span></td><td><code>887d45606c4f242e</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.AnnotationMetadata</span></td><td><code>2c9a5d4b4ac9a686</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.ClassMetadata</span></td><td><code>9c939da6fc5ce9f5</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardAnnotationMetadata</span></td><td><code>ab4dd7a4b170e1b7</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardClassMetadata</span></td><td><code>c2d8bac47016fee4</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.StandardMethodMetadata</span></td><td><code>79cc7c8a0201d66f</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.CachingMetadataReaderFactory</span></td><td><code>cea03dae07ab7dc9</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.CachingMetadataReaderFactory.LocalResourceCache</span></td><td><code>41775f83527e3ea9</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.MergedAnnotationReadingVisitor</span></td><td><code>e7fcbeac47e4e37c</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.MergedAnnotationReadingVisitor.ArrayVisitor</span></td><td><code>dfaeebd596ad1cf0</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadata</span></td><td><code>af2f984357afd614</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadataReadingVisitor</span></td><td><code>b80f39845808adac</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleAnnotationMetadataReadingVisitor.Source</span></td><td><code>305af125db061c7b</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMetadataReader</span></td><td><code>faab03e2f9387cc4</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMetadataReaderFactory</span></td><td><code>4f111f8623f7a3f1</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadata</span></td><td><code>6a8e9c6ff07cfbba</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadataReadingVisitor</span></td><td><code>67659b1241630412</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.classreading.SimpleMethodMetadataReadingVisitor.Source</span></td><td><code>c1c24ffb094b4fc8</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter</span></td><td><code>26502fadb38c4223</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AnnotationTypeFilter</span></td><td><code>48e3b502517951fa</code></td></tr><tr><td><span class="el_class">org.springframework.core.type.filter.AssignableTypeFilter</span></td><td><code>107f2198b7d27a3a</code></td></tr><tr><td><span class="el_class">org.springframework.dao.annotation.PersistenceExceptionTranslationAdvisor</span></td><td><code>3de982e329b1d25c</code></td></tr><tr><td><span class="el_class">org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor</span></td><td><code>04399063473ffb1e</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.ChainedPersistenceExceptionTranslator</span></td><td><code>2741d3105a4ad9fe</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.DataAccessUtils</span></td><td><code>e303e2627b6e22d4</code></td></tr><tr><td><span class="el_class">org.springframework.dao.support.PersistenceExceptionTranslationInterceptor</span></td><td><code>2ca5384ad32a89fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.config.ConfigurationUtils</span></td><td><code>f4c1c7048517a5b3</code></td></tr><tr><td><span class="el_class">org.springframework.data.config.ParsingUtils</span></td><td><code>556a0c829ee65434</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters</span></td><td><code>14b717becdb4aee0</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToInstantConverter</span></td><td><code>0ab8b7c6e5a9b83a</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalDateConverter</span></td><td><code>a03ab20d3368b411</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalDateTimeConverter</span></td><td><code>3389a185e632f4dc</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DateToLocalTimeConverter</span></td><td><code>9f4173eb169e8061</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.DurationToStringConverter</span></td><td><code>be5fb9d968263b2c</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.InstantToDateConverter</span></td><td><code>b059dbfb2434d6ec</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.InstantToLocalDateTimeConverter</span></td><td><code>1b94dbc26d0649ea</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateTimeToDateConverter</span></td><td><code>ffe88756e31247ed</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateTimeToInstantConverter</span></td><td><code>768fcb1021b6f656</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalDateToDateConverter</span></td><td><code>ca403fa2bdc8fe27</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.LocalTimeToDateConverter</span></td><td><code>a472891100e37ae5</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.PeriodToStringConverter</span></td><td><code>eaf886220aa133a5</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToDurationConverter</span></td><td><code>cdafac7026260ec1</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToInstantConverter</span></td><td><code>a9f6a033c4f01180</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToLocalDateConverter</span></td><td><code>cbd2229ecdb4ff18</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToLocalDateTimeConverter</span></td><td><code>fdb3a297b36c4662</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToPeriodConverter</span></td><td><code>dbdb51a351968e82</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.StringToZoneIdConverter</span></td><td><code>b13378f66ea6c432</code></td></tr><tr><td><span class="el_class">org.springframework.data.convert.Jsr310Converters.ZoneIdToStringConverter</span></td><td><code>878f03cf2b824ac9</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.AbstractPageRequest</span></td><td><code>5aedb5704204782b</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.PageRequest</span></td><td><code>770e9f6bff152488</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range</span></td><td><code>199ac0e7a13ae069</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range.Bound</span></td><td><code>4b89a39184925000</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Range.RangeBuilder</span></td><td><code>34b4e906500dc48c</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort</span></td><td><code>e5d8943c661431cc</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.Direction</span></td><td><code>330a84ce8d75bd05</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.NullHandling</span></td><td><code>46628962e0631485</code></td></tr><tr><td><span class="el_class">org.springframework.data.domain.Sort.Order</span></td><td><code>d6af8f6c325f2797</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.GeoModule</span></td><td><code>6655a434fdb60df2</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.Metrics</span></td><td><code>9461ffe6b7867c98</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.format.DistanceFormatter</span></td><td><code>ef8bef69441cc871</code></td></tr><tr><td><span class="el_class">org.springframework.data.geo.format.PointFormatter</span></td><td><code>4afd3bc68ed540a9</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaMetamodelMappingContext</span></td><td><code>bdbc08bd02a5effa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaMetamodelMappingContext.Metamodels</span></td><td><code>fbfb7779943a93ae</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaPersistentEntityImpl</span></td><td><code>4c960e8381f28b2b</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.mapping.JpaPersistentPropertyImpl</span></td><td><code>6195c3d65d9a382b</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.projection.CollectionAwareProjectionFactory</span></td><td><code>d03a9e8523efb082</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.HibernateJpaParametersParameterAccessor</span></td><td><code>bfd2a31a69c77495</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.JpaClassUtils</span></td><td><code>0a3f718cfab959d7</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider</span></td><td><code>dea04c56b0bdbf67</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.1</span></td><td><code>db71c69d7e4bc7c3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.2</span></td><td><code>59d09520c5709305</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.provider.PersistenceProvider.3</span></td><td><code>26853db9206dc655</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaMetamodelMappingContextFactoryBean</span></td><td><code>0ac07f06c2f36e5a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension</span></td><td><code>6191ddfc86ca994d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension.LazyJvmAgent</span></td><td><code>61a991a8aa8138f6</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractJpaQuery</span></td><td><code>044593abc6905951</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractJpaQuery.TupleConverter</span></td><td><code>f05f451a53feaeed</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.AbstractStringBasedJpaQuery</span></td><td><code>5118621dc2327999</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DeclaredQuery</span></td><td><code>a55f169c58841fe3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultJpaEntityMetadata</span></td><td><code>9edb3f2b7cdb0759</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultJpaQueryMethodFactory</span></td><td><code>14e9c2bf141edf23</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.DefaultQueryEnhancer</span></td><td><code>e44da9577cfab8f3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.EmptyDeclaredQuery</span></td><td><code>6ffc30559f282596</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.EscapeCharacter</span></td><td><code>304d7291828e690f</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ExpressionBasedStringQuery</span></td><td><code>254952188bd59927</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaCountQueryCreator</span></td><td><code>7c8c4e8015c58467</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParameters</span></td><td><code>4f80d2342dd6e861</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParameters.JpaParameter</span></td><td><code>9bea1f887e86c112</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaParametersParameterAccessor</span></td><td><code>c7e282722ae9a78c</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator</span></td><td><code>7a0e7aae7a2a79a8</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator.1</span></td><td><code>8691914b602602ac</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryCreator.PredicateBuilder</span></td><td><code>f17f050dcb177e6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution</span></td><td><code>80a35ee7819b40a0</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.CollectionExecution</span></td><td><code>e433264668b0b6c3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.ModifyingExecution</span></td><td><code>7c2b8c196a497af9</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryExecution.SingleEntityExecution</span></td><td><code>1bbd256a7b7f3ccf</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryFactory</span></td><td><code>39d6a73ae380a922</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy</span></td><td><code>1d4eb0108594e3b6</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.1</span></td><td><code>d77a6911ae0ae7b3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.AbstractQueryLookupStrategy</span></td><td><code>ac128c77f5a876cc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.CreateIfNotFoundQueryLookupStrategy</span></td><td><code>c3daeba5f2694466</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.CreateQueryLookupStrategy</span></td><td><code>102685247c8c8765</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.DeclaredQueryLookupStrategy</span></td><td><code>913523855a10d119</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy.NoQuery</span></td><td><code>ae78ec9c609aac72</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaQueryMethod</span></td><td><code>4676d7dcec5ef2ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.JpaResultConverters.BlobToByteArrayConverter</span></td><td><code>61c39952df1571fa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.NamedQuery</span></td><td><code>d5d8c1d7209c7291</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.NativeJpaQuery</span></td><td><code>ec4120c1e5b775ea</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterBinder</span></td><td><code>fb2b21f14b4bc26e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterBinderFactory</span></td><td><code>62b6dc902c4d1003</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider</span></td><td><code>ca8ed029d513da66</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider.1</span></td><td><code>9b7d7afd7fb00771</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.ParameterMetadataProvider.ParameterMetadata</span></td><td><code>50a1ce41cbe429c5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery</span></td><td><code>b094ddddec2db068</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery.CountQueryPreparer</span></td><td><code>3764298ee26084e1</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.PartTreeJpaQuery.QueryPreparer</span></td><td><code>6007c3e0cd5ade63</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryEnhancer</span></td><td><code>43b0d1eb212f25d4</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryEnhancerFactory</span></td><td><code>dea2d6876a94a53d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.BindableQuery</span></td><td><code>0c98c7d28fa7eb01</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling</span></td><td><code>39171b90fa3509aa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling.1</span></td><td><code>9200b9d6d1146c2e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.ErrorHandling.2</span></td><td><code>94d1130e9f20dcdc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.NamedOrIndexedQueryParameterSetter</span></td><td><code>eb8d0d83bc17463a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.QueryMetadata</span></td><td><code>8c90e95380d69be5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetter.QueryMetadataCache</span></td><td><code>11e5e5b9d16ba4b4</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory</span></td><td><code>31257f87951908dc</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.BasicQueryParameterSetterFactory</span></td><td><code>d9946ece51f7de65</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.CriteriaQueryParameterSetterFactory</span></td><td><code>6c4c4ec19392b5ac</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.ExpressionBasedQueryParameterSetterFactory</span></td><td><code>e08f2db5136286d3</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryParameterSetterFactory.ParameterImpl</span></td><td><code>b4828c869d68ddd5</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.QueryUtils</span></td><td><code>37f6b89bc6e6a11d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.SimpleJpaQuery</span></td><td><code>16f48f61711f2bd7</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StoredProcedureAttributeSource</span></td><td><code>91c6b72ff7442738</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery</span></td><td><code>d6a54624a623c665</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.1</span></td><td><code>2f2cd35dedfaa040</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.InParameterBinding</span></td><td><code>e2bc1cf41398e1bb</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.Metadata</span></td><td><code>8d49b98d06ad9680</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBinding</span></td><td><code>8aeed6eea64ae3cd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBindingParser</span></td><td><code>2891904d2bd167fa</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.query.StringQuery.ParameterBindingParser.ParameterBindingType</span></td><td><code>0dc366b2f55586c0</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor</span></td><td><code>6cce2b0e590c5e44</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.CrudMethodMetadataPopulatingMethodInterceptor</span></td><td><code>217dd69913fa4aca</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.DefaultCrudMethodMetadata</span></td><td><code>b4249780270b5206</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor.ThreadBoundTargetSource</span></td><td><code>df7b17675835be8e</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.DefaultQueryHints</span></td><td><code>0152d4d9ecec0472</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.EntityManagerBeanDefinitionRegistrarPostProcessor</span></td><td><code>00347741ab0877fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEntityInformationSupport</span></td><td><code>dd6228b560742ffd</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension</span></td><td><code>61065252f5ef6dae</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension.JpaRootObject</span></td><td><code>a37244919ff8970d</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation</span></td><td><code>89017ffcd212fb18</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation.IdMetadata</span></td><td><code>90e31a9b9a6d6d98</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaRepositoryFactory</span></td><td><code>8c2816723b61e68f</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean</span></td><td><code>d7e3bc4185eb8639</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.MutableQueryHints</span></td><td><code>17b2d475c56b21ff</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.QueryHints</span></td><td><code>bda04f8a2f097b81</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.repository.support.SimpleJpaRepository</span></td><td><code>cdb55b62349bf939</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.BeanDefinitionUtils</span></td><td><code>c1802a76ba817838</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.BeanDefinitionUtils.EntityManagerFactoryBeanDefinition</span></td><td><code>604cb73ac6c86fad</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.HibernateProxyDetector</span></td><td><code>adc64a96b25a5155</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.JpaMetamodel</span></td><td><code>0b3b368c80df9d5a</code></td></tr><tr><td><span class="el_class">org.springframework.data.jpa.util.JpaMetamodelCacheCleanup</span></td><td><code>fd86b856f545ee06</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.Association</span></td><td><code>465fb641d1259215</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.InstanceCreatorMetadataSupport</span></td><td><code>4de4b7bdd85d4e63</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PersistentProperty</span></td><td><code>30ae35eb2c79dcc5</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PreferredConstructor</span></td><td><code>bb3bd5186c4ca4e3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PropertyPath</span></td><td><code>66659e18f5213819</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.PropertyPath.Key</span></td><td><code>ab84117f76838165</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext</span></td><td><code>65109168ff07d5ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyCreator</span></td><td><code>a00cb24bc70d59af</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyFilter</span></td><td><code>30e706629c5033c4</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.AbstractMappingContext.PersistentPropertyFilter.PropertyMatch</span></td><td><code>98f0b42030a1c9af</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.context.PersistentPropertyPathFactory</span></td><td><code>c8ecc2d000f3acd1</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.AbstractPersistentProperty</span></td><td><code>6ba9a3d52d697ba2</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.AnnotationBasedPersistentProperty</span></td><td><code>c93e1e1e943f4af4</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.BasicPersistentEntity</span></td><td><code>07173a871a0c8ac3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory</span></td><td><code>00955a85a233d178</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingEntityInstantiator</span></td><td><code>6bba045018e0f646</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingEntityInstantiator.ObjectInstantiatorClassGenerator</span></td><td><code>b4781585848aac90</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.ClassGeneratingPropertyAccessorFactory</span></td><td><code>9d626aa6c58b41bf</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.EntityInstantiators</span></td><td><code>e292917f7ac5f109</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.InstanceCreatorMetadataDiscoverer</span></td><td><code>4bd8138aff201e6c</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.InstantiationAwarePropertyAccessorFactory</span></td><td><code>ffb98d50cefdb9d3</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.KotlinClassGeneratingEntityInstantiator</span></td><td><code>aec0845c658fea0d</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer</span></td><td><code>f01a81a31f2746a0</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers</span></td><td><code>da4734cfbaf006fc</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers.1</span></td><td><code>94d4dd05bda4f220</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers.2</span></td><td><code>c37f7d8d37b010cb</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.Property</span></td><td><code>b8fbc3c9daa3db97</code></td></tr><tr><td><span class="el_class">org.springframework.data.mapping.model.SimpleTypeHolder</span></td><td><code>c834dada41331944</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor</span></td><td><code>66fb9748073cac16</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup</span></td><td><code>c9b9e589a0c1b707</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.1</span></td><td><code>c371fafcfd2fde22</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.2</span></td><td><code>3c6fad8d3cea581c</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.MethodHandleLookup.3</span></td><td><code>7bdd4a6679f56c12</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory</span></td><td><code>cb7d5e1e00607fd1</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory.MapAccessingMethodInterceptorFactory</span></td><td><code>50c3d4161bf2c5b9</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.ProxyProjectionFactory.PropertyAccessingMethodInvokerFactory</span></td><td><code>ac7577d2385912d0</code></td></tr><tr><td><span class="el_class">org.springframework.data.projection.SpelAwareProxyProjectionFactory</span></td><td><code>c7aa5c161f2fcbbf</code></td></tr><tr><td><span class="el_class">org.springframework.data.querydsl.QuerydslUtils</span></td><td><code>c5655d9ba545e823</code></td></tr><tr><td><span class="el_class">org.springframework.data.querydsl.SimpleEntityPathResolver</span></td><td><code>f0c6ebd63c5c971f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource</span></td><td><code>12eff70ff30e9030</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.BootstrapMode</span></td><td><code>e2f78399bb586a75</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.CustomRepositoryImplementationDetector</span></td><td><code>304633aeb896bb5f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.DefaultImplementationLookupConfiguration</span></td><td><code>36daf115c610e23a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.DefaultRepositoryConfiguration</span></td><td><code>5a9bd65fee29f1b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.FragmentMetadata</span></td><td><code>97d252790a3f4a09</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.ImplementationDetectionConfiguration</span></td><td><code>48dfc7145752446b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.ImplementationDetectionConfiguration.1</span></td><td><code>dfccce5432a166d7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.NamedQueriesBeanDefinitionBuilder</span></td><td><code>fd6700bd7a127a7b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryBeanDefinitionBuilder</span></td><td><code>c7a748902400d78d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryBeanNameGenerator</span></td><td><code>0c6918246b6dffc1</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryComponentProvider</span></td><td><code>b1463e06b08b2f4d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryComponentProvider.InterfaceTypeFilter</span></td><td><code>b692b302317b140f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationDelegate</span></td><td><code>4c787a52501fe6a2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport</span></td><td><code>4e14e2471620c7af</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSource</span></td><td><code>7a1416d93d7f3190</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSourceSupport</span></td><td><code>7f53f8617d29afaa</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.RepositoryConfigurationSourceSupport.SpringImplementationDetectionConfiguration</span></td><td><code>bb2ff7a58bc92f2f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.config.SelectionSet</span></td><td><code>285a81409845144a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.RepositoryMetadata</span></td><td><code>06eb9e0e02f53dea</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.AbstractEntityInformation</span></td><td><code>916f012a866d2bf8</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.AbstractRepositoryMetadata</span></td><td><code>7856dec475f300a3</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.DefaultRepositoryInformation</span></td><td><code>add77c2fee6f7607</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.DefaultRepositoryMetadata</span></td><td><code>e678a019e605e7f7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.EventPublishingRepositoryProxyPostProcessor</span></td><td><code>9cfdcbad14307357</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.EventPublishingRepositoryProxyPostProcessor.EventPublishingMethod</span></td><td><code>6fbbe1d76f604dcb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodInvocationValidator</span></td><td><code>93aae383e6f2b26c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookup</span></td><td><code>b93b7a99d9686a22</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookup.InvokedMethod</span></td><td><code>428aa4648175f89c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookups</span></td><td><code>cf6c131e5fb69841</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.MethodLookups.RepositoryAwareMethodLookup</span></td><td><code>189a3fef8c1b9348</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.PersistenceExceptionTranslationRepositoryProxyPostProcessor</span></td><td><code>a46a300375817a3c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.PropertiesBasedNamedQueries</span></td><td><code>cdac37d620506df2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutionResultHandler</span></td><td><code>97aa9f39368b5c20</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutionResultHandler.ReturnTypeDescriptor</span></td><td><code>04092aca1414c54b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor</span></td><td><code>a10ba1d85bab9cfc</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryComposition</span></td><td><code>ec8212f6caf45960</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments</span></td><td><code>78dc5a0cb3f70a9c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport</span></td><td><code>e04d0cdb2b2d332c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport</span></td><td><code>bfac3bcfc3f32361</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.ImplementationMethodExecutionInterceptor</span></td><td><code>8e6f6236fab8fbb8</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.QueryCollectingQueryCreationListener</span></td><td><code>6a72c571d23bf29a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.RepositoryInformationCacheKey</span></td><td><code>ad5d3583f11cdcc6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFactorySupport.RepositoryValidator</span></td><td><code>39ababa5c12fd1f3</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment</span></td><td><code>ed0a951da2cf98f6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment.ImplementedRepositoryFragment</span></td><td><code>6aa486898508d1ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragment.StructuralRepositoryFragment</span></td><td><code>55748c03c9827f19</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryFragmentsFactoryBean</span></td><td><code>1525586efabc3262</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryInvocationMulticaster.NoOpRepositoryInvocationMulticaster</span></td><td><code>a4c8e7b478d1693d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation</span></td><td><code>3ec1d3e7495775f4</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult.State</span></td><td><code>df2e280f13f7503b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker</span></td><td><code>dc618ffa96682461</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryFragmentMethodInvoker</span></td><td><code>84be5c20ed2a2f40</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryFragmentMethodInvoker.CoroutineAdapterInformation</span></td><td><code>e3c06c2862eb6f3a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryMethodInvocationCaptor</span></td><td><code>2f856d1e18b18d4d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryMethodInvocationCaptor.1</span></td><td><code>f2968b5d2baea646</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.RepositoryMethodInvoker.RepositoryQueryMethodInvoker</span></td><td><code>33dc530116a29514</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport</span></td><td><code>71c72ecce4f75ad7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryProxyPostProcessor</span></td><td><code>7e307e00a295eb6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.core.support.TransactionalRepositoryProxyPostProcessor.RepositoryAnnotationTransactionAttributeSource</span></td><td><code>80c8a1b4d9534371</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider</span></td><td><code>aef480e5e262de48</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.Parameter</span></td><td><code>6c6ecb75cd78922f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.Parameters</span></td><td><code>49507cf27fadced2</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ParametersParameterAccessor</span></td><td><code>94caa75e24cbf828</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryLookupStrategy.Key</span></td><td><code>1c13a0e2946d75fd</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryMethod</span></td><td><code>07b0e9c7bd206962</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.QueryMethodEvaluationContextProvider</span></td><td><code>5827ed6e289aa38e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ResultProcessor</span></td><td><code>d32c5ef150c75c8d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ResultProcessor.ProjectingConverter</span></td><td><code>c90c06f1b7e2949e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType</span></td><td><code>4c76ca96b4d884eb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType.CacheKey</span></td><td><code>39792f92ef4fddde</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.ReturnedType.ReturnedClass</span></td><td><code>7c0d76dec83a631f</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext</span></td><td><code>94fe3b162834de1e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext.QuotationMap</span></td><td><code>ca0f571ec6fca7a4</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.SpelQueryContext.SpelExtractor</span></td><td><code>8eb48c6f97b7af2b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.AbstractQueryCreator</span></td><td><code>cae1c1986016cd66</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.OrderBySource</span></td><td><code>fa19fcbb9f6aef2e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part</span></td><td><code>b737d033672b5696</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part.IgnoreCaseType</span></td><td><code>ea95e6bf962ebcb0</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.Part.Type</span></td><td><code>9fc60066d9e7df30</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree</span></td><td><code>0f7c6337438fce6d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.OrPart</span></td><td><code>989398a46d78f703</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.Predicate</span></td><td><code>4ad163f8e31a21f7</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.query.parser.PartTree.Subject</span></td><td><code>9294ea6b2d8aeb1d</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.DomainClassConverter</span></td><td><code>93072485e88a73af</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.Repositories</span></td><td><code>896640967c2c850a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.support.Repositories.EmptyRepositoryFactoryInformation</span></td><td><code>d11853c42f93bf7b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ClassUtils</span></td><td><code>4667502d8bb2fc3b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters</span></td><td><code>e62a011d9231f77c</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.AbstractWrapperTypeConverter</span></td><td><code>f363015f7ba6d21b</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.IterableToStreamableConverter</span></td><td><code>fffaf78debf61919</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.NullableWrapperToCompletableFutureConverter</span></td><td><code>9d4c28da27efdaef</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.NullableWrapperToFutureConverter</span></td><td><code>d0901f1be9582f92</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.WrapperType</span></td><td><code>3319e39094ea7fe6</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.QueryExecutionConverters.WrapperType.Cardinality</span></td><td><code>9545deca717173c0</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters</span></td><td><code>7dfd7dbdbf0b3ecb</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.FluxWrapper</span></td><td><code>24738d6a7bb4a422</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.MonoWrapper</span></td><td><code>8c1ddf96d20b0499</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherToFluxConverter</span></td><td><code>88a781f07b6f85e1</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherToMonoConverter</span></td><td><code>cafbea682e1fef94</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.PublisherWrapper</span></td><td><code>2bd6e7b16dd0585a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.ReactiveAdapterConverterFactory</span></td><td><code>c896e3a40889bd95</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrapperConverters.RegistryHolder</span></td><td><code>f8c71265e8ff254e</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers</span></td><td><code>2d9937f5babde7bf</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers.1</span></td><td><code>190a104262df235a</code></td></tr><tr><td><span class="el_class">org.springframework.data.repository.util.ReactiveWrappers.ReactiveLibrary</span></td><td><code>de07a207a777113c</code></td></tr><tr><td><span class="el_class">org.springframework.data.spel.EvaluationContextProvider</span></td><td><code>20fbae09b2cbe1e2</code></td></tr><tr><td><span class="el_class">org.springframework.data.spel.ExtensionAwareEvaluationContextProvider</span></td><td><code>ad56b673a68d21b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.AnnotationDetectionMethodCallback</span></td><td><code>401de2b991e02a4e</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ClassTypeInformation</span></td><td><code>3885f5fa8988605a</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections</span></td><td><code>65f33e4c7c829a4a</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.EclipseCollections</span></td><td><code>c28de783dadcc5be</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.SearchableTypes</span></td><td><code>c9f4bb04590d1ddf</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.CustomCollections.VavrCollections</span></td><td><code>c695743e2e55f2a7</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper</span></td><td><code>0b4a6730f5fe2b35</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.KotlinReflectionUtils</span></td><td><code>83f0b8c85dff3a8c</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Lazy</span></td><td><code>c945dfb9fe7fcbb9</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.LazyStreamable</span></td><td><code>06ea82037d5bb0af</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableUtils</span></td><td><code>6b12b5f1ec3e7f22</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapper</span></td><td><code>e0c517ab8ab7f4b5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters</span></td><td><code>b490e857586de82b</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.AbstractWrapperTypeConverter</span></td><td><code>1d2fd8340578abb4</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.GuavaOptionalUnwrapper</span></td><td><code>4fbd7239f4027c85</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.Jdk8OptionalUnwrapper</span></td><td><code>020388885c3c3c0d</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.NullableWrapperToGuavaOptionalConverter</span></td><td><code>9285218829046dfd</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.NullableWrapperToJdk8OptionalConverter</span></td><td><code>8fde5a43adbc97ef</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.WrapperType</span></td><td><code>5ef2c0c0eb488cd0</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.NullableWrapperConverters.WrapperType.Cardinality</span></td><td><code>1ea7960304ec4ca5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Optionals</span></td><td><code>25f778c917b85660</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Pair</span></td><td><code>83a90b4a49393b78</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ParameterizedTypeInformation</span></td><td><code>c56c4846e47c6040</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ParentTypeAwareTypeInformation</span></td><td><code>afb47de718de3210</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ProxyUtils</span></td><td><code>cdb936712fd5ee03</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.ReflectionUtils</span></td><td><code>75d6b65f8a2e3fdb</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.StreamUtils</span></td><td><code>9a4f373cadb257e5</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.Streamable</span></td><td><code>6b9723830d69078b</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeDiscoverer</span></td><td><code>b9c5cd6f518969ee</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeInformation</span></td><td><code>42a267f4fd25269e</code></td></tr><tr><td><span class="el_class">org.springframework.data.util.TypeVariableTypeInformation</span></td><td><code>af19c5ed8edf4b38</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.JsonProjectingMethodInterceptorFactory</span></td><td><code>48d97e4df256081f</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.PageableHandlerMethodArgumentResolver</span></td><td><code>a39937d497ec3973</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport</span></td><td><code>3d7648779248545c</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.ProjectingJackson2HttpMessageConverter</span></td><td><code>eea1435ff5ef166a</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.ProxyingHandlerMethodArgumentResolver</span></td><td><code>3ca30889d82055cd</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.SortHandlerMethodArgumentResolver</span></td><td><code>af08bc9989df4ee9</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.SortHandlerMethodArgumentResolverSupport</span></td><td><code>189688a7778d245d</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.EnableSpringDataWebSupport.QuerydslActivator</span></td><td><code>567d6e2147d0a1d0</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.EnableSpringDataWebSupport.SpringDataWebConfigurationImportSelector</span></td><td><code>69c529961b9f62a6</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.ProjectingArgumentResolverRegistrar</span></td><td><code>55e4a6992d54872e</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.ProjectingArgumentResolverRegistrar.ProjectingArgumentResolverBeanPostProcessor</span></td><td><code>acc78dbeba3ffe3f</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.SpringDataJacksonConfiguration</span></td><td><code>a9cb670533d66daa</code></td></tr><tr><td><span class="el_class">org.springframework.data.web.config.SpringDataWebConfiguration</span></td><td><code>7de944336e59cc12</code></td></tr><tr><td><span class="el_class">org.springframework.expression.TypedValue</span></td><td><code>b230e89cbe8fc16c</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.CompositeStringExpression</span></td><td><code>227e241df5599b73</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.ExpressionUtils</span></td><td><code>9d69a1f9d61bf22d</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.LiteralExpression</span></td><td><code>2ba7cdedc73cdf6b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.TemplateAwareExpressionParser</span></td><td><code>5a3fc20b2db14e85</code></td></tr><tr><td><span class="el_class">org.springframework.expression.common.TemplateAwareExpressionParser.Bracket</span></td><td><code>9a26bc5eb1e6a51e</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.CodeFlow</span></td><td><code>c98820730dc008f3</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ExpressionState</span></td><td><code>5b5617e8223be5d4</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.SpelCompilerMode</span></td><td><code>7e9999c764b8f9f0</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.SpelParserConfiguration</span></td><td><code>f8bf914b2bb43f5c</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.CompoundExpression</span></td><td><code>0a729c184060830b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer</span></td><td><code>498f122439c56816</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer.IndexedType</span></td><td><code>ed117038af739d8a</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Indexer.MapIndexingValueRef</span></td><td><code>ebd26fbf4339ad3f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Literal</span></td><td><code>754271397ee43daa</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.OpPlus</span></td><td><code>acda7291081d4943</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.Operator</span></td><td><code>b8a9b81cdb91ea86</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.PropertyOrFieldReference</span></td><td><code>310192d5cd5bd3b7</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.SpelNodeImpl</span></td><td><code>5a7229f6e781693f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.ast.StringLiteral</span></td><td><code>f2e50ea1c5d2ba13</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.InternalSpelExpressionParser</span></td><td><code>27cf04cd280f4bcd</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.SpelExpression</span></td><td><code>b3556dfa7cc77ff5</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.SpelExpressionParser</span></td><td><code>f57f63d7b7140927</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.Token</span></td><td><code>c961058786d26b1f</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.TokenKind</span></td><td><code>ef3a6c1fbf818434</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.standard.Tokenizer</span></td><td><code>da9db1980ea4640b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.ReflectivePropertyAccessor</span></td><td><code>6f913f8f08e5c5e4</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardEvaluationContext</span></td><td><code>e3601c87372b6872</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardOperatorOverloader</span></td><td><code>8ae34cd735665e55</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeComparator</span></td><td><code>fab8e950a81b8f0b</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeConverter</span></td><td><code>e3920902b48de154</code></td></tr><tr><td><span class="el_class">org.springframework.expression.spel.support.StandardTypeLocator</span></td><td><code>bb57f759b33af433</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar</span></td><td><code>7b81eb77401c03d8</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.CalendarToDateConverter</span></td><td><code>aa139fff8e0cf5fe</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.CalendarToLongConverter</span></td><td><code>809d04568d720fe0</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.DateToCalendarConverter</span></td><td><code>65e50594d6a2c1f5</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.DateToLongConverter</span></td><td><code>406f54f3f59a7974</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.LongToCalendarConverter</span></td><td><code>8dbe9220177fc30d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.DateFormatterRegistrar.LongToDateConverter</span></td><td><code>e6664e9d490ced53</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DateTimeFormatterFactory</span></td><td><code>5064bf817f1c74e9</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DateTimeParser</span></td><td><code>c1aec9b7b1ede9ca</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.DurationFormatter</span></td><td><code>99b48d53a6b02127</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaDateTimeFormatAnnotationFormatterFactory</span></td><td><code>0a0a4f0d9410b7e4</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters</span></td><td><code>da29177fc6c7fe83</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.CalendarToReadableInstantConverter</span></td><td><code>287adc5b91305eac</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToCalendarConverter</span></td><td><code>ab5a5249bb63299b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToDateConverter</span></td><td><code>8062ef1389e0622e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToDateMidnightConverter</span></td><td><code>5fee10f452369dc7</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToInstantConverter</span></td><td><code>a481744de8770a7e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalDateConverter</span></td><td><code>d1b6999a5c36c658</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalDateTimeConverter</span></td><td><code>9463fad6b7d3691d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLocalTimeConverter</span></td><td><code>1f15777e86275309</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToLongConverter</span></td><td><code>c2ef23b06ca44b48</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToMutableDateTimeConverter</span></td><td><code>0639c08c6b1b5bcc</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.DateToReadableInstantConverter</span></td><td><code>865834478b50ce31</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LocalDateTimeToLocalDateConverter</span></td><td><code>771dc577eb1397d2</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LocalDateTimeToLocalTimeConverter</span></td><td><code>715fb854bb8fc679</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeConverters.LongToReadableInstantConverter</span></td><td><code>1eef8bd82563a3fc</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar</span></td><td><code>17e26d9d01d0854d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar.1</span></td><td><code>e3f51edecf851b5c</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar.Type</span></td><td><code>60ef146c1ae84d72</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalDateParser</span></td><td><code>3db359a8b948ba5f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalDateTimeParser</span></td><td><code>a021f84f66bc8bdd</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.LocalTimeParser</span></td><td><code>fef9f2be94c3da54</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.MonthDayFormatter</span></td><td><code>b8705f0446443483</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.PeriodFormatter</span></td><td><code>0f50c2f0fa053287</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.ReadableInstantPrinter</span></td><td><code>ffb8b0dd22ad3ead</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.ReadablePartialPrinter</span></td><td><code>97d1edeb0493ee9b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.joda.YearMonthFormatter</span></td><td><code>b4e2fb7278bfc53d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters</span></td><td><code>5837e828ebd09a80</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToInstantConverter</span></td><td><code>63c05a834f8a1cb8</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalDateConverter</span></td><td><code>7bd2aea2858f9c02</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalDateTimeConverter</span></td><td><code>3520e7f74944eaf9</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToLocalTimeConverter</span></td><td><code>8edaaf0002f38256</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToOffsetDateTimeConverter</span></td><td><code>4b819ddab829d0c0</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.CalendarToZonedDateTimeConverter</span></td><td><code>5f9082d004a66e34</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.InstantToLongConverter</span></td><td><code>e94bd8e6084264a4</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LocalDateTimeToLocalDateConverter</span></td><td><code>94a8fd6ccba8f571</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LocalDateTimeToLocalTimeConverter</span></td><td><code>a63d3b10a15cb3d3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.LongToInstantConverter</span></td><td><code>014bbdc0ff776fe1</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToInstantConverter</span></td><td><code>be4f28326b105582</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalDateConverter</span></td><td><code>32ceb3683802c44c</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalDateTimeConverter</span></td><td><code>5c1237f146ce6af3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToLocalTimeConverter</span></td><td><code>19018b09c104dc03</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.OffsetDateTimeToZonedDateTimeConverter</span></td><td><code>d8d25aab03d32e15</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToInstantConverter</span></td><td><code>f40ff28c1eb47fce</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalDateConverter</span></td><td><code>806909da9d6ac744</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalDateTimeConverter</span></td><td><code>939ab79246198aa6</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToLocalTimeConverter</span></td><td><code>5260a2489eddd336</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeConverters.ZonedDateTimeToOffsetDateTimeConverter</span></td><td><code>62f37af537479cd3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterFactory</span></td><td><code>b9f5b73428f10a6a</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar</span></td><td><code>7493ec7c9c432c0b</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar.1</span></td><td><code>99489a9d8b8b057f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DateTimeFormatterRegistrar.Type</span></td><td><code>f13687bd3fc13a36</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.DurationFormatter</span></td><td><code>d914d15e52a41ae1</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.InstantFormatter</span></td><td><code>2c67f3cc9dfe22e3</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.Jsr310DateTimeFormatAnnotationFormatterFactory</span></td><td><code>09a64195475d9a07</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.MonthDayFormatter</span></td><td><code>fdd05c5412c8fd1d</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.MonthFormatter</span></td><td><code>699e64f30547240f</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.PeriodFormatter</span></td><td><code>7e755d60ac33c09a</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.TemporalAccessorParser</span></td><td><code>ae70027b1133818e</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.TemporalAccessorPrinter</span></td><td><code>3c8ede00255ec096</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.YearFormatter</span></td><td><code>759cef3e2bae1f39</code></td></tr><tr><td><span class="el_class">org.springframework.format.datetime.standard.YearMonthFormatter</span></td><td><code>c9eff5baa0de2d62</code></td></tr><tr><td><span class="el_class">org.springframework.format.number.NumberFormatAnnotationFormatterFactory</span></td><td><code>5af418b75e49bc32</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.DefaultFormattingConversionService</span></td><td><code>5109dded496f7481</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService</span></td><td><code>c89a3b077ad69c25</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.AnnotationParserConverter</span></td><td><code>eb4057548c1f44fc</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.AnnotationPrinterConverter</span></td><td><code>b33b0212c846ba7c</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.ParserConverter</span></td><td><code>4c93ec4fd5f04cd9</code></td></tr><tr><td><span class="el_class">org.springframework.format.support.FormattingConversionService.PrinterConverter</span></td><td><code>e295574185ff2dde</code></td></tr><tr><td><span class="el_class">org.springframework.http.CacheControl</span></td><td><code>fecc8594e7b4e446</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpLogging</span></td><td><code>a774dc6514c580cd</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpMethod</span></td><td><code>090fe60c5a7aeb31</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpStatus</span></td><td><code>5268e7f84bd058c1</code></td></tr><tr><td><span class="el_class">org.springframework.http.HttpStatus.Series</span></td><td><code>4707269a97d5390c</code></td></tr><tr><td><span class="el_class">org.springframework.http.MediaType</span></td><td><code>f95ad767778d385a</code></td></tr><tr><td><span class="el_class">org.springframework.http.MediaType.1</span></td><td><code>251d73f6d85f10f4</code></td></tr><tr><td><span class="el_class">org.springframework.http.client.reactive.ReactorResourceFactory</span></td><td><code>197876854a6560e6</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.AbstractGenericHttpMessageConverter</span></td><td><code>ae597821181c9aef</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.AbstractHttpMessageConverter</span></td><td><code>fc2b1561c56a6365</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ByteArrayHttpMessageConverter</span></td><td><code>a407f582005d5698</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.FormHttpMessageConverter</span></td><td><code>c1aca31bdd3161c6</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ResourceHttpMessageConverter</span></td><td><code>94ac4153b802989b</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.ResourceRegionHttpMessageConverter</span></td><td><code>9dab323a7c79ca19</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.StringHttpMessageConverter</span></td><td><code>f09eb2855913b3c3</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.cbor.MappingJackson2CborHttpMessageConverter</span></td><td><code>02d0d44b7a8df884</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter</span></td><td><code>02b53995b9e87612</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.AbstractJsonHttpMessageConverter</span></td><td><code>a1507b2289949c67</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.Jackson2ObjectMapperBuilder</span></td><td><code>a1a2c7c766ec00f3</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.Jackson2ObjectMapperBuilder.CborFactoryInitializer</span></td><td><code>32b1ebbf50a95bb5</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.MappingJackson2HttpMessageConverter</span></td><td><code>b5ee689c744fd605</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.json.SpringHandlerInstantiator</span></td><td><code>7fa69c2adc722609</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.support.AllEncompassingFormHttpMessageConverter</span></td><td><code>350e130ffe9eca04</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.AbstractJaxb2HttpMessageConverter</span></td><td><code>7b66e6b5a2a64c85</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter</span></td><td><code>7489f01142d22639</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter</span></td><td><code>59e72b8f87f81769</code></td></tr><tr><td><span class="el_class">org.springframework.http.converter.xml.SourceHttpMessageConverter</span></td><td><code>b117c4118a0e6e7c</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.DefaultPathContainer</span></td><td><code>2b52b473b17f7b00</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.DefaultPathContainer.DefaultSeparator</span></td><td><code>a5448fb71cec51b8</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.PathContainer</span></td><td><code>42f56788b54ce918</code></td></tr><tr><td><span class="el_class">org.springframework.http.server.PathContainer.Options</span></td><td><code>5d3f95147c66489b</code></td></tr><tr><td><span class="el_class">org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver</span></td><td><code>01a479aed6b2252a</code></td></tr><tr><td><span class="el_class">org.springframework.instrument.classloading.SimpleThrowawayClassLoader</span></td><td><code>cdc4e5e1613db385</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.core.JdbcTemplate</span></td><td><code>56d2b0c323e4bbc4</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate</span></td><td><code>33c21c3e438b2a72</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.ConnectionHolder</span></td><td><code>8c483ba933838b68</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.DataSourceUtils</span></td><td><code>106f70e845aa8f5b</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.JdbcTransactionObjectSupport</span></td><td><code>1fb2d6857f381dd9</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType</span></td><td><code>33f11048058e39c4</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.lookup.JndiDataSourceLookup</span></td><td><code>97fc7545a7333212</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.datasource.lookup.SingleDataSourceLookup</span></td><td><code>7cd0dc564c906b36</code></td></tr><tr><td><span class="el_class">org.springframework.jdbc.support.JdbcAccessor</span></td><td><code>fd19cd72c09f2719</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiAccessor</span></td><td><code>4cf30f394d054c47</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiLocatorDelegate</span></td><td><code>820d309829202924</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiLocatorSupport</span></td><td><code>0097d3884117ad83</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.JndiTemplate</span></td><td><code>54eac36c80868646</code></td></tr><tr><td><span class="el_class">org.springframework.jndi.support.SimpleJndiBeanFactory</span></td><td><code>01b8231c22892faa</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.AbstractMessageConverter</span></td><td><code>55df88b1f382246c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.CompositeMessageConverter</span></td><td><code>0012a34c5e7c61d3</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.DefaultContentTypeResolver</span></td><td><code>e1e18f242fdb5db0</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.MappingJackson2MessageConverter</span></td><td><code>a0a0d06f32001396</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.SimpleMessageConverter</span></td><td><code>5809abee130b6ba4</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.converter.StringMessageConverter</span></td><td><code>d27731f68baefc70</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.core.AbstractMessageSendingTemplate</span></td><td><code>75de49f7d4edba0a</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.core.CachingDestinationResolverProxy</span></td><td><code>fe311cb08abff7fe</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.AbstractNamedValueMethodArgumentResolver</span></td><td><code>0d79660972c8136d</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.HeaderMethodArgumentResolver</span></td><td><code>c48b0726c080eb10</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.HeadersMethodArgumentResolver</span></td><td><code>af2e30747cbc6e8e</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.MessageMethodArgumentResolver</span></td><td><code>0e71c103c3214030</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.PayloadArgumentResolver</span></td><td><code>a311aff0af314230</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.annotation.support.PayloadMethodArgumentResolver</span></td><td><code>e878463a0c05c5db</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.AbstractMethodMessageHandler</span></td><td><code>d597bce190b0f80c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.HandlerMethodArgumentResolverComposite</span></td><td><code>72bd436de4819f9c</code></td></tr><tr><td><span class="el_class">org.springframework.messaging.handler.invocation.HandlerMethodReturnValueHandlerComposite</span></td><td><code>0843d9905ef29c8f</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.DelegatingServletInputStream</span></td><td><code>caae4a14dbe6c7d9</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.DelegatingServletOutputStream</span></td><td><code>a4351916c9b6f91a</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletRequest</span></td><td><code>d7bc515ecf43109d</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletResponse</span></td><td><code>1db60e385f7e230e</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockHttpServletResponse.ResponseServletOutputStream</span></td><td><code>977313a67fe9f020</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockRequestDispatcher</span></td><td><code>d980211851a0ebd5</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockServletContext</span></td><td><code>6f37a81cf48d4542</code></td></tr><tr><td><span class="el_class">org.springframework.mock.web.MockSessionCookieConfig</span></td><td><code>5a253a49c8b87f15</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.SpringObjenesis</span></td><td><code>d275860319976524</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.instantiator.sun.SunReflectionFactoryHelper</span></td><td><code>90f776fb5926e412</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.instantiator.sun.SunReflectionFactoryInstantiator</span></td><td><code>074bb66fc5b5204b</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.BaseInstantiatorStrategy</span></td><td><code>4acbec8fd09e2dac</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.PlatformDescription</span></td><td><code>68793f192fb32080</code></td></tr><tr><td><span class="el_class">org.springframework.objenesis.strategy.StdInstantiatorStrategy</span></td><td><code>04e8fe1751223efd</code></td></tr><tr><td><span class="el_class">org.springframework.orm.hibernate5.SpringBeanContainer</span></td><td><code>d2b3a86240cffeca</code></td></tr><tr><td><span class="el_class">org.springframework.orm.hibernate5.SpringBeanContainer.SpringContainedBean</span></td><td><code>bc825205105c3d7a</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.AbstractEntityManagerFactoryBean</span></td><td><code>eec1780f09cda47d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.ManagedEntityManagerFactoryInvocationHandler</span></td><td><code>8d12169c548e1902</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.DefaultJpaDialect</span></td><td><code>25670fe62a1e44d6</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerFactoryAccessor</span></td><td><code>f8fa5cb1c7cbbf24</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerFactoryUtils</span></td><td><code>61861c101011a132</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.EntityManagerHolder</span></td><td><code>108f53e6e6c4576c</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.ExtendedEntityManagerCreator</span></td><td><code>14e9192677ea045d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.ExtendedEntityManagerCreator.ExtendedEntityManagerInvocationHandler</span></td><td><code>93ad98f2776a1906</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager</span></td><td><code>06a685acc965f748</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager.JpaTransactionDefinition</span></td><td><code>a0c6be81e8711a80</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.JpaTransactionManager.JpaTransactionObject</span></td><td><code>30ca4b34160d0bf7</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean</span></td><td><code>1096a8c07481e138</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator</span></td><td><code>c89708773025e837</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator.DeferredQueryInvocationHandler</span></td><td><code>27ba66cd3a766800</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.SharedEntityManagerCreator.SharedEntityManagerInvocationHandler</span></td><td><code>f7cfe8e839f08374</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager</span></td><td><code>1ef6bd7218c83ae8</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo</span></td><td><code>59348efc95105838</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.PersistenceUnitReader</span></td><td><code>ca1edd7d0b4d2b01</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.persistenceunit.SpringPersistenceUnitInfo</span></td><td><code>70a3c77975bcb169</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor</span></td><td><code>8ed6630c58be0bb7</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor</span></td><td><code>47caa190cc864498</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.PersistenceElement</span></td><td><code>f501f394882321ed</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.AbstractJpaVendorAdapter</span></td><td><code>f460aca8d6f85347</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.Database</span></td><td><code>b8060bddc560d3f9</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect</span></td><td><code>003c0d28f3b4e847</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect.HibernateConnectionHandle</span></td><td><code>f3e6230476688ba3</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaDialect.SessionTransactionData</span></td><td><code>c9f2ca431abf64b0</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter</span></td><td><code>faf002acee0f7537</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider</span></td><td><code>e773541a4055d62d</code></td></tr><tr><td><span class="el_class">org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.1</span></td><td><code>4f8a52199e763f07</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.annotation.AsyncResult</span></td><td><code>12234b978f2df3a0</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.CustomizableThreadFactory</span></td><td><code>1a75fb0aedcb2f99</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.ExecutorConfigurationSupport</span></td><td><code>bb345c9dbcd8c000</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor</span></td><td><code>0666b7fabff3a515</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.AdaptableJobFactory</span></td><td><code>415466e409374043</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.ResourceLoaderClassLoadHelper</span></td><td><code>b4535255bf9cca98</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SchedulerAccessor</span></td><td><code>afa9ff6af07bad27</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SchedulerFactoryBean</span></td><td><code>a00168e9b81397ba</code></td></tr><tr><td><span class="el_class">org.springframework.scheduling.quartz.SpringBeanJobFactory</span></td><td><code>78b115ea7eace4a1</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.SecurityConfig</span></td><td><code>b35d1ad2856f9a5b</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.expression.AbstractSecurityExpressionHandler</span></td><td><code>15fcdca60d805cee</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.expression.DenyAllPermissionEvaluator</span></td><td><code>9ac3ea64f8c57d13</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.AbstractSecurityInterceptor</span></td><td><code>25b6c6788fd96da0</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.AbstractSecurityInterceptor.NoOpAuthenticationManager</span></td><td><code>641791545ce94f6b</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.intercept.NullRunAsManager</span></td><td><code>4b053e7410ca220d</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.vote.AbstractAccessDecisionManager</span></td><td><code>b85a9d0c6e676a71</code></td></tr><tr><td><span class="el_class">org.springframework.security.access.vote.AffirmativeBased</span></td><td><code>d28b53a1a8b70b42</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AbstractAuthenticationToken</span></td><td><code>34bb03a9a6384190</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AnonymousAuthenticationProvider</span></td><td><code>72c64ab3d21edd26</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.AuthenticationTrustResolverImpl</span></td><td><code>5ee476057a0df3d3</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.DefaultAuthenticationEventPublisher</span></td><td><code>d100a8e04b279b54</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.ProviderManager</span></td><td><code>79a0586271968af2</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.ProviderManager.NullEventPublisher</span></td><td><code>a8cb04255c2cda63</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.UsernamePasswordAuthenticationToken</span></td><td><code>00bbc662bbfea861</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider</span></td><td><code>a0a0e719fff74515</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.DefaultPostAuthenticationChecks</span></td><td><code>6ceeec497961ba15</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.DefaultPreAuthenticationChecks</span></td><td><code>28eb2872013cd3d2</code></td></tr><tr><td><span class="el_class">org.springframework.security.authentication.dao.DaoAuthenticationProvider</span></td><td><code>be3a9dbf63743049</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.Customizer</span></td><td><code>2eec2e51b04ae35b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder</span></td><td><code>ee9ecdf5a3376b18</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.BuildState</span></td><td><code>3a4854ed72851c9a</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.AbstractSecurityBuilder</span></td><td><code>a4a1d98a1e57d3a6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.SecurityConfigurerAdapter</span></td><td><code>ab8c7b62fc0055cb</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.SecurityConfigurerAdapter.CompositeObjectPostProcessor</span></td><td><code>39593a67437ad5b0</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder</span></td><td><code>25a97edc9dade87e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration</span></td><td><code>ee09c58518dd3ad2</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.DefaultPasswordEncoderAuthenticationManagerBuilder</span></td><td><code>35514c4e82868af8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.EnableGlobalAuthenticationAutowiredConfigurer</span></td><td><code>e859006b06cbe054</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.LazyPasswordEncoder</span></td><td><code>e49f1002863ab142</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.GlobalAuthenticationConfigurerAdapter</span></td><td><code>6feee11b7fbe49b2</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeAuthenticationProviderBeanManagerConfigurer</span></td><td><code>9fd823ed05d08f18</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeAuthenticationProviderBeanManagerConfigurer.InitializeAuthenticationProviderManagerConfigurer</span></td><td><code>da4767a009229b42</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer</span></td><td><code>974434863ee1997c</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer.InitializeUserDetailsManagerConfigurer</span></td><td><code>5aa16218cc3cc95f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor</span></td><td><code>9d3a82259e0b4a59</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration</span></td><td><code>8a3f82321a5742e7</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.AbstractRequestMatcherRegistry</span></td><td><code>c2d543f2d9ce8157</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.FilterOrderRegistration</span></td><td><code>8eaac8f4e154b056</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.FilterOrderRegistration.Step</span></td><td><code>739f53eb4333c812</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity</span></td><td><code>1bf60019af99a265</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity.OrderedFilter</span></td><td><code>58900ce5dfb4fdcd</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.HttpSecurity.RequestMatcherConfigurer</span></td><td><code>abd76e11459b5d8e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.WebSecurity</span></td><td><code>ea22a448b687fd71</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.builders.WebSecurity.IgnoredRequestConfigurer</span></td><td><code>0de9cf78dfdd540e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.AutowiredWebSecurityConfigurersIgnoreParents</span></td><td><code>f53783dc6b0792f9</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration</span></td><td><code>aacc1e4722e76655</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.OAuth2ImportSelector</span></td><td><code>cbeaa7f920a43453</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.SpringWebMvcImportSelector</span></td><td><code>0c0633916725899b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration</span></td><td><code>73bf9aa7106816f0</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration</span></td><td><code>4001df2013949f41</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration.AnnotationAwareOrderComparator</span></td><td><code>cd510dc9034aa8eb</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.DefaultPasswordEncoderAuthenticationManagerBuilder</span></td><td><code>a5baea9afa6329b6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.LazyPasswordEncoder</span></td><td><code>1efb6cc9a7d97be8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractAuthenticationFilterConfigurer</span></td><td><code>efe26bc6a410e503</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry</span></td><td><code>1c3e08565526407f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry.UrlMapping</span></td><td><code>4f8b9e66aa3d84a1</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer</span></td><td><code>deb8d6d0ece7939d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractInterceptUrlConfigurer</span></td><td><code>e55b131c6c3bbc00</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AbstractInterceptUrlConfigurer.AbstractInterceptUrlRegistry</span></td><td><code>1880fd5c88f4ba7e</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.AnonymousConfigurer</span></td><td><code>d8b26aeabc8b3a4b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.CsrfConfigurer</span></td><td><code>817feee59919ee56</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.DefaultLoginPageConfigurer</span></td><td><code>b5c104ac24b777db</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExceptionHandlingConfigurer</span></td><td><code>573af44925a6b9cc</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer</span></td><td><code>fdf9eb1ce0eb969f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer.AuthorizedUrl</span></td><td><code>da46b7403e709394</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer.ExpressionInterceptUrlRegistry</span></td><td><code>f4aa41f093eeba84</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.FormLoginConfigurer</span></td><td><code>1de48b5d58601f03</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer</span></td><td><code>85424343b6647337</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CacheControlConfig</span></td><td><code>0401e722909200f8</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ContentSecurityPolicyConfig</span></td><td><code>9d233e54cbe6cc50</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ContentTypeOptionsConfig</span></td><td><code>0bc6264c931ae9dd</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginEmbedderPolicyConfig</span></td><td><code>1cae7ab00627a779</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginOpenerPolicyConfig</span></td><td><code>ccfde242aaf82e53</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.CrossOriginResourcePolicyConfig</span></td><td><code>33522637a4d47307</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.FeaturePolicyConfig</span></td><td><code>bbca8fc622e6eccc</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.FrameOptionsConfig</span></td><td><code>0ed22f5097748194</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.HpkpConfig</span></td><td><code>ca849a2e371bc18d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.HstsConfig</span></td><td><code>d4dc94070dca5e1b</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.PermissionsPolicyConfig</span></td><td><code>92d3a304edc9b99f</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.ReferrerPolicyConfig</span></td><td><code>599842ab22caa37a</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.XXssConfig</span></td><td><code>395bd57ee6f11394</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.HttpBasicConfigurer</span></td><td><code>788438abab6128c6</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.LogoutConfigurer</span></td><td><code>fe99e57111c5467d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.RequestCacheConfigurer</span></td><td><code>b022794ae23aecdf</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.SecurityContextConfigurer</span></td><td><code>dcfd25ae13bd9d92</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.ServletApiConfigurer</span></td><td><code>2b15c273773fa341</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.annotation.web.configurers.SessionManagementConfigurer</span></td><td><code>8b1172097a2b1afe</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.crypto.RsaKeyConversionServicePostProcessor</span></td><td><code>b2a98129b4733a7d</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.crypto.RsaKeyConversionServicePostProcessor.ResourceKeyConverterAdapter</span></td><td><code>8b087e64f0bf0be9</code></td></tr><tr><td><span class="el_class">org.springframework.security.config.http.SessionCreationPolicy</span></td><td><code>f3fb787ef47e053e</code></td></tr><tr><td><span class="el_class">org.springframework.security.context.DelegatingApplicationListener</span></td><td><code>1a0e6132c86d7ca0</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters</span></td><td><code>455bbf24afc057f1</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters.X509CertificateDecoder</span></td><td><code>f336d81872de7ab1</code></td></tr><tr><td><span class="el_class">org.springframework.security.converter.RsaKeyConverters.X509PemDecoder</span></td><td><code>dd40b1ce32b155eb</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.SpringSecurityMessageSource</span></td><td><code>1b01a05d04372734</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.AuthorityUtils</span></td><td><code>107c4ef7643eff92</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.SimpleGrantedAuthority</span></td><td><code>5135fc7250b35847</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.authority.mapping.NullAuthoritiesMapper</span></td><td><code>2d878d73dc89fc44</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.SecurityContextHolder</span></td><td><code>66ec8f039994720e</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.SecurityContextImpl</span></td><td><code>c88f709f159ffd0e</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.context.ThreadLocalSecurityContextHolderStrategy</span></td><td><code>dc92a4a17ae768a4</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User</span></td><td><code>ca918e32c1db42fb</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User.AuthorityComparator</span></td><td><code>492ee56f4e234e34</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.User.UserBuilder</span></td><td><code>f8d89d7dcbad9f6a</code></td></tr><tr><td><span class="el_class">org.springframework.security.core.userdetails.cache.NullUserCache</span></td><td><code>89baa76c6e998148</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.argon2.Argon2PasswordEncoder</span></td><td><code>a5a5f550feba0627</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder</span></td><td><code>96f0928fa0cccf70</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder.BCryptVersion</span></td><td><code>ca536bcf9344ba49</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.codec.Utf8</span></td><td><code>7f50f25e0e7de32d</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.factory.PasswordEncoderFactories</span></td><td><code>1a04bd3e08877955</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.Base64StringKeyGenerator</span></td><td><code>cde6009fd2dedc35</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.KeyGenerators</span></td><td><code>d34bb8d186b96efc</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.keygen.SecureRandomBytesKeyGenerator</span></td><td><code>eef940c92b66b4f4</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.DelegatingPasswordEncoder</span></td><td><code>3dd32c0b205a13a6</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.DelegatingPasswordEncoder.UnmappedIdPasswordEncoder</span></td><td><code>ed48c29d9bf900e7</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Digester</span></td><td><code>f5178b8506468ea2</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.LdapShaPasswordEncoder</span></td><td><code>7bbd1a0fbd63bb57</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Md4PasswordEncoder</span></td><td><code>5f7ca9ff6915450d</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.MessageDigestPasswordEncoder</span></td><td><code>23c798e29f9353b4</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.NoOpPasswordEncoder</span></td><td><code>1eea6d115d68c6fa</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Pbkdf2PasswordEncoder</span></td><td><code>0c72905434bae34a</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.Pbkdf2PasswordEncoder.SecretKeyFactoryAlgorithm</span></td><td><code>c58c3e02e55fdfed</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.password.StandardPasswordEncoder</span></td><td><code>3e72fd65e044e7e1</code></td></tr><tr><td><span class="el_class">org.springframework.security.crypto.scrypt.SCryptPasswordEncoder</span></td><td><code>01cdcea9bea8ccf8</code></td></tr><tr><td><span class="el_class">org.springframework.security.provisioning.InMemoryUserDetailsManager</span></td><td><code>753d0d0cd6c22785</code></td></tr><tr><td><span class="el_class">org.springframework.security.provisioning.MutableUser</span></td><td><code>1e4d08f451001fef</code></td></tr><tr><td><span class="el_class">org.springframework.security.rsa.crypto.RsaAlgorithm</span></td><td><code>2a7021d1964985ee</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.DefaultRedirectStrategy</span></td><td><code>ffecd281332cf6ea</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.DefaultSecurityFilterChain</span></td><td><code>a30668a2e2a979e2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.FilterChainProxy</span></td><td><code>d684b57961b36627</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.FilterChainProxy.NullFilterChainValidator</span></td><td><code>32cc9f9f02686837</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.PortMapperImpl</span></td><td><code>2b6fddb1a98af717</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.PortResolverImpl</span></td><td><code>417f8b23d6a5d061</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.AccessDeniedHandlerImpl</span></td><td><code>74a826fcdf55ebef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator</span></td><td><code>818b1700ce62e520</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.ExceptionTranslationFilter</span></td><td><code>5b86ea75cb6f5df0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.ExceptionTranslationFilter.DefaultThrowableAnalyzer</span></td><td><code>18c3e4c63159e4a2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.RequestMatcherDelegatingWebInvocationPrivilegeEvaluator</span></td><td><code>39c47d8a4f7e0885</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.AbstractVariableEvaluationContextPostProcessor</span></td><td><code>39a5cb986a7e73b8</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler</span></td><td><code>42d8653e6b3f065c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.ExpressionBasedFilterInvocationSecurityMetadataSource</span></td><td><code>001f59f8b1ec7a1f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.ExpressionBasedFilterInvocationSecurityMetadataSource.RequestVariablesExtractorEvaluationContextPostProcessor</span></td><td><code>149ca24afed4b61b</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.WebExpressionConfigAttribute</span></td><td><code>ee52ca0359796a41</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.expression.WebExpressionVoter</span></td><td><code>e08b01d8551d962f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.intercept.DefaultFilterInvocationSecurityMetadataSource</span></td><td><code>6c7bb45b7654604c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.access.intercept.FilterSecurityInterceptor</span></td><td><code>430641a917c3d255</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter</span></td><td><code>e0131a9495df2886</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AbstractAuthenticationTargetUrlRequestHandler</span></td><td><code>deeaf3017b154bf9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.AnonymousAuthenticationFilter</span></td><td><code>eea1acbc59e3d8d0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.DelegatingAuthenticationEntryPoint</span></td><td><code>d9bb8db9d501010c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.HttpStatusEntryPoint</span></td><td><code>5b0c7544835cf308</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint</span></td><td><code>ad2ce6327e8e1de3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.NullRememberMeServices</span></td><td><code>df5d1167516f8d69</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler</span></td><td><code>7135dcf3d55c2ead</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SimpleUrlAuthenticationFailureHandler</span></td><td><code>0ca74d8c4d478218</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.SimpleUrlAuthenticationSuccessHandler</span></td><td><code>e6f62a5756369c34</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter</span></td><td><code>393d4e1308c0f849</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.WebAuthenticationDetailsSource</span></td><td><code>f618168f39fdf2d9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.CompositeLogoutHandler</span></td><td><code>82f576bafb51cad3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.DelegatingLogoutSuccessHandler</span></td><td><code>912c1d56222f0bb0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.HttpStatusReturningLogoutSuccessHandler</span></td><td><code>67387a1308a93fc0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.LogoutFilter</span></td><td><code>17b9a54184649e28</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.LogoutSuccessEventPublishingLogoutHandler</span></td><td><code>bcba7dc777f5494b</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler</span></td><td><code>287d46799da087d9</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.logout.SimpleUrlLogoutSuccessHandler</span></td><td><code>4b5b69dff249c445</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.AbstractSessionFixationProtectionStrategy</span></td><td><code>983271efecc92d74</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.AbstractSessionFixationProtectionStrategy.NullEventPublisher</span></td><td><code>40d06c16b14c0950</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.ChangeSessionIdAuthenticationStrategy</span></td><td><code>8a3ccbeee97ee02a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy</span></td><td><code>3f3b5ae6ffe32ef2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.session.NullAuthenticatedSessionStrategy</span></td><td><code>5b96d8169195f438</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter</span></td><td><code>05d875ca1390ee27</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter</span></td><td><code>f392284ea45ccb08</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationConverter</span></td><td><code>fb9e79b523edd604</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint</span></td><td><code>74d0321e56a7bdbe</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.authentication.www.BasicAuthenticationFilter</span></td><td><code>d53b092b883554fd</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.bind.support.AuthenticationPrincipalArgumentResolver</span></td><td><code>ff858ad46a23bb5c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.HttpSessionSecurityContextRepository</span></td><td><code>195d2250a4e908cf</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.NullSecurityContextRepository</span></td><td><code>e84c50e364f99ee7</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.SecurityContextPersistenceFilter</span></td><td><code>a46cbd62e49d6458</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter</span></td><td><code>a8735e26df1b638d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfAuthenticationStrategy</span></td><td><code>8df5d9d7849480ce</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfFilter</span></td><td><code>dffa6c568c7e1b1a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfFilter.DefaultRequiresCsrfMatcher</span></td><td><code>4b5df127d996f343</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.CsrfLogoutHandler</span></td><td><code>d0fc8574f3c36bce</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.HttpSessionCsrfTokenRepository</span></td><td><code>1b0306552d9aa299</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.csrf.LazyCsrfTokenRepository</span></td><td><code>66c5c17a00fdd7b1</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.firewall.DefaultRequestRejectedHandler</span></td><td><code>4d012614a2fcee0d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.firewall.StrictHttpFirewall</span></td><td><code>21644a57bbd9e3c5</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.Header</span></td><td><code>676dd8526a1daaac</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.HeaderWriterFilter</span></td><td><code>b2d68bdf515d6b89</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.CacheControlHeadersWriter</span></td><td><code>8ad5734e17360256</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.HstsHeaderWriter</span></td><td><code>1cfa24baae0b0d9d</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.HstsHeaderWriter.SecureRequestMatcher</span></td><td><code>2fe2fa0aa9b58e3a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.StaticHeadersWriter</span></td><td><code>3f96e74427ec3223</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.XContentTypeOptionsHeaderWriter</span></td><td><code>015dbfda9e9caef4</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.XXssProtectionHeaderWriter</span></td><td><code>6535d57ded5152d4</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.frameoptions.XFrameOptionsHeaderWriter</span></td><td><code>5882feec8f80da08</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.header.writers.frameoptions.XFrameOptionsHeaderWriter.XFrameOptionsMode</span></td><td><code>8812fab36fbd5eea</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.AuthenticationPrincipalArgumentResolver</span></td><td><code>f81418e0ac09103a</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.CsrfTokenArgumentResolver</span></td><td><code>4b10664a2249c0ef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.method.annotation.CurrentSecurityContextArgumentResolver</span></td><td><code>c27fd2caf1e62b69</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.savedrequest.HttpSessionRequestCache</span></td><td><code>26617d2d86b1ac17</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.savedrequest.RequestCacheAwareFilter</span></td><td><code>80f690ee93b7c6a0</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servlet.support.csrf.CsrfRequestDataValueProcessor</span></td><td><code>e7af7a3efd88d781</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servletapi.HttpServlet3RequestFactory</span></td><td><code>28414db295e5e473</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter</span></td><td><code>4c47fd3fc74acb1c</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.session.DisableEncodeUrlFilter</span></td><td><code>daae606a55a78752</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.session.SessionManagementFilter</span></td><td><code>bf0bd7e9e7810ecd</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.ThrowableAnalyzer</span></td><td><code>33546dcafeaecac2</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.UrlUtils</span></td><td><code>2b59253b45bd73ef</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AndRequestMatcher</span></td><td><code>01d237a9dae9b42f</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AntPathRequestMatcher</span></td><td><code>335917e406572ef5</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AntPathRequestMatcher.SpringAntMatcher</span></td><td><code>3ae7591d895d5f16</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.AnyRequestMatcher</span></td><td><code>bce50cbe907f82af</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.MediaTypeRequestMatcher</span></td><td><code>19a9da44e1b51c56</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.NegatedRequestMatcher</span></td><td><code>6379a5889d6e5f80</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.OrRequestMatcher</span></td><td><code>0ce1b7fab84ebb63</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.RequestHeaderRequestMatcher</span></td><td><code>4b9ee002117708c3</code></td></tr><tr><td><span class="el_class">org.springframework.security.web.util.matcher.RequestMatcherEntry</span></td><td><code>487174c463340f0f</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.ClassMode</span></td><td><code>fa61c78e7ef537c7</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.HierarchyMode</span></td><td><code>c91cce08b47612d0</code></td></tr><tr><td><span class="el_class">org.springframework.test.annotation.DirtiesContext.MethodMode</span></td><td><code>1315bd0d0a0cc667</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.BootstrapUtils</span></td><td><code>bb206de825078952</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.ContextConfigurationAttributes</span></td><td><code>cb36c238ba15672e</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.MergedContextConfiguration</span></td><td><code>a69c3403786defb9</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContext</span></td><td><code>d3151631d123be07</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextAnnotationUtils</span></td><td><code>b427ee429959397d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextAnnotationUtils.AnnotationDescriptor</span></td><td><code>79149c2c58c75007</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextManager</span></td><td><code>18fb8fc15ae15ac7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.TestContextManager.1</span></td><td><code>615a592a7cf035c4</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.ContextCacheUtils</span></td><td><code>800184f804b35b26</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate</span></td><td><code>c0b28d62dc3081ad</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultContextCache</span></td><td><code>988d5ed3ef5ebe26</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.cache.DefaultContextCache.LruCache</span></td><td><code>0e30d1acbc6750cd</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestClassEvent</span></td><td><code>2fed854ca1097184</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestExecutionEvent</span></td><td><code>5a953154b6b11ac3</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.AfterTestMethodEvent</span></td><td><code>c7a60a6085012006</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.ApplicationEventsTestExecutionListener</span></td><td><code>aadf8cd6adfe04ab</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestClassEvent</span></td><td><code>c2c6ca38fa6a1159</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestExecutionEvent</span></td><td><code>d009fe42f7bcb709</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.BeforeTestMethodEvent</span></td><td><code>e1266b16d04be6e6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.EventPublishingTestExecutionListener</span></td><td><code>3d0a732f9582ef54</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.PrepareTestInstanceEvent</span></td><td><code>3d16415d7211bc4a</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.event.TestContextEvent</span></td><td><code>9274637ea396e786</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.jdbc.Sql.ExecutionPhase</span></td><td><code>ca7f27779e6a7ca6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener</span></td><td><code>e8db63fc4fd5cae7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.junit.jupiter.SpringExtension</span></td><td><code>9948f00265bef378</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractContextLoader</span></td><td><code>4f7b02670207f174</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener</span></td><td><code>85bc21e68ba51c56</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractTestContextBootstrapper</span></td><td><code>1a2a00506835dad9</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.AbstractTestExecutionListener</span></td><td><code>268bd3f46b84e8df</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.ActiveProfilesUtils</span></td><td><code>a86b5bddac7035c7</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.ApplicationContextInitializerUtils</span></td><td><code>285ea561b1c47c1c</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultActiveProfilesResolver</span></td><td><code>fdaf6ce46d666edb</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultBootstrapContext</span></td><td><code>137c52a9a3e4dc73</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultTestContext</span></td><td><code>edc266493621631d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DefaultTestContextBootstrapper</span></td><td><code>7119cf941443d899</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DependencyInjectionTestExecutionListener</span></td><td><code>1b69c36145a039bd</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener</span></td><td><code>d4b78de02359256d</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DirtiesContextTestExecutionListener</span></td><td><code>5eef1440631d1108</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.DynamicPropertiesContextCustomizerFactory</span></td><td><code>cf9dcc0b24177d21</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.MergedTestPropertySources</span></td><td><code>d47b3ecaa062d4a3</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.support.TestPropertySourceUtils</span></td><td><code>cd442976365acac8</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionContextHolder</span></td><td><code>4868fb4706da41a6</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionalTestExecutionListener</span></td><td><code>dbb1fc9642473e5f</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.transaction.TransactionalTestExecutionListener.1</span></td><td><code>4f262542ae8dc566</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.ServletTestExecutionListener</span></td><td><code>7af70707d11c1c6b</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.WebMergedContextConfiguration</span></td><td><code>8fd872186b3404af</code></td></tr><tr><td><span class="el_class">org.springframework.test.context.web.socket.MockServerContainerContextCustomizerFactory</span></td><td><code>ee49673b1a6a2ae5</code></td></tr><tr><td><span class="el_class">org.springframework.test.util.AopTestUtils</span></td><td><code>18a6245a67f6d6db</code></td></tr><tr><td><span class="el_class">org.springframework.test.util.ReflectionTestUtils</span></td><td><code>76666d677f30b3e7</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.TransactionException</span></td><td><code>0e0c55b2a3c6580b</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.TransactionSystemException</span></td><td><code>e8b5a3c098a8dd5f</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration</span></td><td><code>33b3a691fa752f5c</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.AnnotationTransactionAttributeSource</span></td><td><code>6040b6871df641fd</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.Isolation</span></td><td><code>44f52f5b7e20ae5a</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.JtaTransactionAnnotationParser</span></td><td><code>d8e4d9e8505f5fa6</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.Propagation</span></td><td><code>a30be3c1a7bac1e5</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration</span></td><td><code>2c25f607ca5cdab3</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.SpringTransactionAnnotationParser</span></td><td><code>46d22cbf67579ea2</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.TransactionManagementConfigurationSelector</span></td><td><code>4713b01e52fb0db4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.annotation.TransactionManagementConfigurationSelector.1</span></td><td><code>0bdbe8fdd3fb5015</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.event.TransactionalEventListenerFactory</span></td><td><code>c46d715a8fd613ce</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource</span></td><td><code>f85541b6bb600023</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource.1</span></td><td><code>2b7f651f0ab156cd</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor</span></td><td><code>c028fd417f3cfd08</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor.1</span></td><td><code>2cd71a9cc30acf76</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.DefaultTransactionAttribute</span></td><td><code>565e4d5bafab2e4e</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.DelegatingTransactionAttribute</span></td><td><code>8ddb3f9e856b2ad4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.RuleBasedTransactionAttribute</span></td><td><code>8db0e3dbd7807f18</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport</span></td><td><code>0af1043cc8e5fa76</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport.1</span></td><td><code>2b7c9aa6d5b089d0</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAspectSupport.TransactionInfo</span></td><td><code>fda1bb151fcc689f</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAttributeSourcePointcut</span></td><td><code>dee413e94b1c5ee7</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionAttributeSourcePointcut.TransactionAttributeSourceClassFilter</span></td><td><code>c4c9b17babed8eaf</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionInterceptor</span></td><td><code>de44757f7fb2d1a0</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.interceptor.TransactionInterceptor.1</span></td><td><code>c996b445cc163cf4</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.AbstractPlatformTransactionManager</span></td><td><code>93c25677c80dfb42</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.AbstractTransactionStatus</span></td><td><code>919272a0b530e5e1</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DefaultTransactionDefinition</span></td><td><code>225aa7e3bd605d29</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DefaultTransactionStatus</span></td><td><code>853b8a9d5f0177c2</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.DelegatingTransactionDefinition</span></td><td><code>08a717e441cb058c</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.ResourceHolderSupport</span></td><td><code>26f06839a8746d77</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationManager</span></td><td><code>fd1bcc15c3a4bf31</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationUtils</span></td><td><code>d5f285c9ab97671a</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionSynchronizationUtils.ScopedProxyUnwrapper</span></td><td><code>0de227ec8ead46e8</code></td></tr><tr><td><span class="el_class">org.springframework.transaction.support.TransactionTemplate</span></td><td><code>d40755561bda3c8a</code></td></tr><tr><td><span class="el_class">org.springframework.ui.context.support.ResourceBundleThemeSource</span></td><td><code>655f2b1ed69c258e</code></td></tr><tr><td><span class="el_class">org.springframework.ui.context.support.UiApplicationContextUtils</span></td><td><code>b35e213dafcdf1dd</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher</span></td><td><code>6e27021ca2fe7864</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher.AntPathStringMatcher</span></td><td><code>79f2f7bd537a5358</code></td></tr><tr><td><span class="el_class">org.springframework.util.AntPathMatcher.PathSeparatorPatternCache</span></td><td><code>8a03edb4713c5559</code></td></tr><tr><td><span class="el_class">org.springframework.util.Assert</span></td><td><code>55d74684317185c0</code></td></tr><tr><td><span class="el_class">org.springframework.util.ClassUtils</span></td><td><code>e8196647310d3130</code></td></tr><tr><td><span class="el_class">org.springframework.util.CollectionUtils</span></td><td><code>fa418a4430587240</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrencyThrottleSupport</span></td><td><code>dffacc325af1c7ff</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentLruCache</span></td><td><code>f7b1cb622f3d87b8</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap</span></td><td><code>ef826bab03c14acd</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.1</span></td><td><code>f42c6ede7f2039ff</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Entry</span></td><td><code>1f5aef6fe5e79a77</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.EntryIterator</span></td><td><code>545621dec64ee438</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.EntrySet</span></td><td><code>79945b0847668b40</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.ReferenceManager</span></td><td><code>6b0dc152f39160f7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.ReferenceType</span></td><td><code>7ac30709be5b28b7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Restructure</span></td><td><code>ce13d060d20426ab</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Segment</span></td><td><code>7e7ff79bab261740</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.SoftEntryReference</span></td><td><code>9b237f2dbb04c81b</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.Task</span></td><td><code>e4d68ae70c3d0c82</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.TaskOption</span></td><td><code>9b65a8e89236775b</code></td></tr><tr><td><span class="el_class">org.springframework.util.ConcurrentReferenceHashMap.WeakEntryReference</span></td><td><code>374d476e0712e161</code></td></tr><tr><td><span class="el_class">org.springframework.util.CustomizableThreadCreator</span></td><td><code>8745b0df97887b1f</code></td></tr><tr><td><span class="el_class">org.springframework.util.DefaultPropertiesPersister</span></td><td><code>a4fe8df07f38409e</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedCaseInsensitiveMap</span></td><td><code>6b354f0354f2581d</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedCaseInsensitiveMap.1</span></td><td><code>37edcb48cdf0bc79</code></td></tr><tr><td><span class="el_class">org.springframework.util.LinkedMultiValueMap</span></td><td><code>491095ddab4025e4</code></td></tr><tr><td><span class="el_class">org.springframework.util.MethodInvoker</span></td><td><code>b53d6b6c325aa8d1</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeType</span></td><td><code>7835f8e109793629</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeType.SpecificityComparator</span></td><td><code>7bc2e9eed3b574b4</code></td></tr><tr><td><span class="el_class">org.springframework.util.MimeTypeUtils</span></td><td><code>83bb925d1de1448a</code></td></tr><tr><td><span class="el_class">org.springframework.util.MultiValueMapAdapter</span></td><td><code>e5d474fed5763a0e</code></td></tr><tr><td><span class="el_class">org.springframework.util.NumberUtils</span></td><td><code>befcb6cf3da1bac2</code></td></tr><tr><td><span class="el_class">org.springframework.util.ObjectUtils</span></td><td><code>bd17bfeffea59cfc</code></td></tr><tr><td><span class="el_class">org.springframework.util.PropertyPlaceholderHelper</span></td><td><code>54c83f5043ae5d2f</code></td></tr><tr><td><span class="el_class">org.springframework.util.ReflectionUtils</span></td><td><code>b31ee30dc98472b1</code></td></tr><tr><td><span class="el_class">org.springframework.util.ReflectionUtils.MethodFilter</span></td><td><code>f0f476a36863eea7</code></td></tr><tr><td><span class="el_class">org.springframework.util.ResourceUtils</span></td><td><code>166ea351e369dd53</code></td></tr><tr><td><span class="el_class">org.springframework.util.StopWatch</span></td><td><code>fd56c269c7ac01c9</code></td></tr><tr><td><span class="el_class">org.springframework.util.StopWatch.TaskInfo</span></td><td><code>04011bdda5133a7e</code></td></tr><tr><td><span class="el_class">org.springframework.util.StreamUtils</span></td><td><code>3166e74d0567b8a4</code></td></tr><tr><td><span class="el_class">org.springframework.util.StringUtils</span></td><td><code>269e3cdc9cb87415</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.ComparableComparator</span></td><td><code>3adfab675eb561d2</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.Comparators</span></td><td><code>8d49fd32b5a823cf</code></td></tr><tr><td><span class="el_class">org.springframework.util.comparator.InstanceComparator</span></td><td><code>523ecabc291ea01b</code></td></tr><tr><td><span class="el_class">org.springframework.util.function.SingletonSupplier</span></td><td><code>534e4d41b6838d04</code></td></tr><tr><td><span class="el_class">org.springframework.util.unit.DataSize</span></td><td><code>eeb40c74638e0567</code></td></tr><tr><td><span class="el_class">org.springframework.util.xml.SimpleSaxErrorHandler</span></td><td><code>0b279d3116228795</code></td></tr><tr><td><span class="el_class">org.springframework.util.xml.XmlValidationModeDetector</span></td><td><code>309ba9c02cbc8854</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocalValidatorFactoryBean</span></td><td><code>840d38a846a81645</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocalValidatorFactoryBean.1</span></td><td><code>e50bd09becd57f52</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator</span></td><td><code>017c34fb81fe9f65</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.MethodValidationInterceptor</span></td><td><code>b83dcdf888be2530</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.MethodValidationPostProcessor</span></td><td><code>bed909b6c3157066</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory</span></td><td><code>b8fb9d356c9c7384</code></td></tr><tr><td><span class="el_class">org.springframework.validation.beanvalidation.SpringValidatorAdapter</span></td><td><code>153b8005e76bfe37</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.ContentNegotiationManager</span></td><td><code>297135c58b7fbb6b</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.ContentNegotiationManagerFactoryBean</span></td><td><code>f13797b37ae1376f</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.HeaderContentNegotiationStrategy</span></td><td><code>b208cfefe3598927</code></td></tr><tr><td><span class="el_class">org.springframework.web.accept.MappingMediaTypeFileExtensionResolver</span></td><td><code>6f5ebc1923260138</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.annotation.RequestMethod</span></td><td><code>47c46d94d8dd27f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.support.ConfigurableWebBindingInitializer</span></td><td><code>07e6e762f810a2b8</code></td></tr><tr><td><span class="el_class">org.springframework.web.bind.support.DefaultSessionAttributeStore</span></td><td><code>27fc4bee635bab86</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.WebApplicationContext</span></td><td><code>c43623af34ecaf4d</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.AbstractRequestAttributes</span></td><td><code>5aa1e218565853f0</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.AbstractRequestAttributesScope</span></td><td><code>1d0803f5f832a489</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.RequestContextHolder</span></td><td><code>db950cf084c0beca</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.RequestScope</span></td><td><code>cc4264230a378e7c</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.ServletRequestAttributes</span></td><td><code>fc9056855c8f4c44</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.ServletWebRequest</span></td><td><code>ceb395df5809a4f6</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.request.SessionScope</span></td><td><code>b091adcc397acdb8</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.GenericWebApplicationContext</span></td><td><code>de58f7e9f2ef08ea</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextAwareProcessor</span></td><td><code>9c2839aaeb635bc6</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextPropertySource</span></td><td><code>fa56a2303b1d23ca</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextResource</span></td><td><code>5e38aeba9994d554</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextResourcePatternResolver</span></td><td><code>3794fe9bfc175d8b</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.ServletContextScope</span></td><td><code>f1f0817bd8b0cfe3</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.StandardServletEnvironment</span></td><td><code>2ce62470f64bfbbd</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils</span></td><td><code>95a1a82e8bf86f8d</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.RequestObjectFactory</span></td><td><code>f5fafd08bdcd86fc</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.ResponseObjectFactory</span></td><td><code>a14c45d4fd35e712</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.SessionObjectFactory</span></td><td><code>0c99b99163636577</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationContextUtils.WebRequestObjectFactory</span></td><td><code>983cd7bc21f9f25e</code></td></tr><tr><td><span class="el_class">org.springframework.web.context.support.WebApplicationObjectSupport</span></td><td><code>b48f100360218e55</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.CorsConfiguration</span></td><td><code>01e7cf3c416c908f</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.CorsConfiguration.OriginPattern</span></td><td><code>fa6480cfd349c750</code></td></tr><tr><td><span class="el_class">org.springframework.web.cors.DefaultCorsProcessor</span></td><td><code>783de9a0dee8a83a</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.CharacterEncodingFilter</span></td><td><code>660bc257345661d8</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.FormContentFilter</span></td><td><code>eaa518b2f8d60440</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.GenericFilterBean</span></td><td><code>7d07cf22dd68cbc7</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.OncePerRequestFilter</span></td><td><code>a5b08b34e8a2fe90</code></td></tr><tr><td><span class="el_class">org.springframework.web.filter.RequestContextFilter</span></td><td><code>f49680e5d008974a</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.ControllerAdviceBean</span></td><td><code>3094816052010c09</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.HandlerMethod</span></td><td><code>0525a02bbe28e953</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.HandlerMethod.HandlerMethodParameter</span></td><td><code>f441721634fe0a92</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.AbstractCookieValueMethodArgumentResolver</span></td><td><code>923573e40a166ac0</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver</span></td><td><code>fc43e4037ad65c05</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ErrorsMethodArgumentResolver</span></td><td><code>bd975596c499abee</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ExpressionValueMethodArgumentResolver</span></td><td><code>01c7af4b7a5d4d0b</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.MapMethodProcessor</span></td><td><code>3fa01b50a488bbaf</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ModelAttributeMethodProcessor</span></td><td><code>26cc2ba8746890a0</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.ModelMethodProcessor</span></td><td><code>4f748edc77caca60</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestHeaderMapMethodArgumentResolver</span></td><td><code>efd6190103f3c33f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestHeaderMethodArgumentResolver</span></td><td><code>8d3a825bf2478414</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestParamMapMethodArgumentResolver</span></td><td><code>8d6a06c4f7cd7f1b</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.RequestParamMethodArgumentResolver</span></td><td><code>79bf621c6faccaad</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.annotation.SessionStatusMethodArgumentResolver</span></td><td><code>68276e5a8d2bc60f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.CompositeUriComponentsContributor</span></td><td><code>d3ff082557c13bbf</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.HandlerMethodArgumentResolverComposite</span></td><td><code>f20a188847237d9f</code></td></tr><tr><td><span class="el_class">org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite</span></td><td><code>3c2ad544678e1652</code></td></tr><tr><td><span class="el_class">org.springframework.web.multipart.support.StandardServletMultipartResolver</span></td><td><code>a91e78780ed063ef</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.DispatcherServlet</span></td><td><code>ce52c5ca052db70e</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.FrameworkServlet</span></td><td><code>d9e35b40d026afe1</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.HandlerMapping</span></td><td><code>7bffeb199148c4a4</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.HttpServletBean</span></td><td><code>7b3e4cd062483a2a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.View</span></td><td><code>7a0b6ca7e3d78910</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.AsyncSupportConfigurer</span></td><td><code>46e32da48cd8a820</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer</span></td><td><code>b3e1e8bae0ff4876</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.CorsRegistry</span></td><td><code>f721d23c55c07899</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer</span></td><td><code>a0cf42338c3e3b99</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration</span></td><td><code>132c9816215df137</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.InterceptorRegistration</span></td><td><code>7f13c1369ce212d6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.InterceptorRegistry</span></td><td><code>dd090df2e3d9a4a8</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.PathMatchConfigurer</span></td><td><code>24a8014985753615</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration</span></td><td><code>aef2164d12aa64dc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry</span></td><td><code>c563c54aacd8a1c4</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ViewControllerRegistry</span></td><td><code>949ce58dff7b8acc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.ViewResolverRegistry</span></td><td><code>12e8363ec389daac</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport</span></td><td><code>f05b3653ea061f23</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurer</span></td><td><code>bbdcc3244ea12799</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.config.annotation.WebMvcConfigurerComposite</span></td><td><code>fa58ef1a08603332</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.function.support.HandlerFunctionAdapter</span></td><td><code>2801df59c3e42d1b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.function.support.RouterFunctionMapping</span></td><td><code>822dbfe852e6ea4b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping</span></td><td><code>dea8de8356b6f514</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver</span></td><td><code>8f5d108ad0c451f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMapping</span></td><td><code>6a12d969aafa7ad5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver</span></td><td><code>2f4725a1cc0b9ca2</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping</span></td><td><code>e2460492e5b359fd</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.EmptyHandler</span></td><td><code>53dc402d0e250d82</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistration</span></td><td><code>d9373e3e3d085cb7</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistry</span></td><td><code>a008adefae61d8bc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.AbstractUrlHandlerMapping</span></td><td><code>c659f1fe31932f78</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping</span></td><td><code>694a57dd973d310a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor</span></td><td><code>c0174852f1d85eda</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.HandlerExceptionResolverComposite</span></td><td><code>cdd0b732bcd3bbc6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.SimpleUrlHandlerMapping</span></td><td><code>aff35857d8d38efa</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.handler.WebRequestHandlerInterceptorAdapter</span></td><td><code>56385ee4245b4e3a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver</span></td><td><code>4528fb8a0e4b3c56</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter</span></td><td><code>6a9f519c656e1114</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter</span></td><td><code>c6951e5c3ab415f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver</span></td><td><code>8b5c7602a77571f3</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.AbstractMediaTypeExpression</span></td><td><code>26ebf7f87cdf223a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.AbstractRequestCondition</span></td><td><code>a735869ac0b2a872</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ConsumesRequestCondition</span></td><td><code>9dbc05aff94578f0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.HeadersRequestCondition</span></td><td><code>b23e0b398ade4e5b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ParamsRequestCondition</span></td><td><code>71b3d466f2e702b0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.PathPatternsRequestCondition</span></td><td><code>20a2aa73499bd0c5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.PatternsRequestCondition</span></td><td><code>35e4fdf3bb5fc2bc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ProducesRequestCondition</span></td><td><code>771c1240c136e999</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.ProducesRequestCondition.ProduceMediaTypeExpression</span></td><td><code>781b8d18899cf237</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.RequestConditionHolder</span></td><td><code>4c852eaf2a8bcb4f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.condition.RequestMethodsRequestCondition</span></td><td><code>06206c1e36c58c23</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter</span></td><td><code>54abd3e810439726</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo</span></td><td><code>69986b73b9f8ee75</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo.BuilderConfiguration</span></td><td><code>49120b9b49eac605</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfo.DefaultBuilder</span></td><td><code>ceee0a8fdf935889</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping</span></td><td><code>2b5fa4872d06f59a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMethodMappingNamingStrategy</span></td><td><code>70a900ee7d0c7282</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMappingJacksonResponseBodyAdvice</span></td><td><code>322792167ba40dc9</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver</span></td><td><code>d6c3cf69856df703</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor</span></td><td><code>e7f14b3806f0cf89</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.1</span></td><td><code>9e4845391fdc2f25</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.AsyncTaskMethodReturnValueHandler</span></td><td><code>275f3d41b768c525</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.CallableMethodReturnValueHandler</span></td><td><code>fe56a99a0f73ec33</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ContinuationHandlerMethodArgumentResolver</span></td><td><code>5405085f3ffede3c</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.DeferredResultMethodReturnValueHandler</span></td><td><code>29edc928be8237a0</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver</span></td><td><code>9f5bd45648a7b7ed</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.HttpEntityMethodProcessor</span></td><td><code>cb10e567f51d2fef</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.HttpHeadersReturnValueHandler</span></td><td><code>d7589740f2b450ca</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.JsonViewRequestBodyAdvice</span></td><td><code>0b95b8c78db6c901</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.JsonViewResponseBodyAdvice</span></td><td><code>e469745b848ba587</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.MatrixVariableMapMethodArgumentResolver</span></td><td><code>2e6ba5ffc1a3b720</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.MatrixVariableMethodArgumentResolver</span></td><td><code>a1de1b2e60fd9736</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ModelAndViewMethodReturnValueHandler</span></td><td><code>2a46f0a63fca0ef9</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PathVariableMapMethodArgumentResolver</span></td><td><code>1e069e673d0e7ee2</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PathVariableMethodArgumentResolver</span></td><td><code>e5b0ead05a9cec01</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.PrincipalMethodArgumentResolver</span></td><td><code>5501e70a19cc3a69</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ReactiveTypeHandler</span></td><td><code>1a0aba222313a681</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RedirectAttributesMethodArgumentResolver</span></td><td><code>585866dd7f309c0b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestAttributeMethodArgumentResolver</span></td><td><code>89a458ddb5a0b2ce</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestBodyAdviceAdapter</span></td><td><code>ddc0027562084800</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter</span></td><td><code>1a379a05a8591e22</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping</span></td><td><code>e31d9c99c8d29cde</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestPartMethodArgumentResolver</span></td><td><code>8a6437cd0dc80da5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyAdviceChain</span></td><td><code>0c2ef934bb00fb6f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor</span></td><td><code>17f8f1dbc875d623</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ResponseBodyEmitterReturnValueHandler</span></td><td><code>1c49a2cb88759b73</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletCookieValueMethodArgumentResolver</span></td><td><code>dcb416e0b62e7557</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletModelAttributeMethodProcessor</span></td><td><code>13d8c9d9cf5bcfa5</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletRequestMethodArgumentResolver</span></td><td><code>c05416d0baf57c67</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ServletResponseMethodArgumentResolver</span></td><td><code>91001c82f73b7407</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.SessionAttributeMethodArgumentResolver</span></td><td><code>e43e6d347ffe4717</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.StreamingResponseBodyReturnValueHandler</span></td><td><code>7fc05cc59902f93a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.UriComponentsBuilderMethodArgumentResolver</span></td><td><code>79c2baaf4c2f2b42</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ViewMethodReturnValueHandler</span></td><td><code>fdf18a63a6da6689</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.method.annotation.ViewNameMethodReturnValueHandler</span></td><td><code>702820853af059d7</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver</span></td><td><code>557ead58a901ff9a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.AbstractResourceResolver</span></td><td><code>47595e58209b1405</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.DefaultResourceResolverChain</span></td><td><code>08dca4d94c44db8a</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.DefaultResourceTransformerChain</span></td><td><code>c325e44e8aa5f8f6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.PathResourceResolver</span></td><td><code>1f4363e58b91d529</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceHttpRequestHandler</span></td><td><code>13dae4e719e95299</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceUrlProvider</span></td><td><code>b2b2318caf99e66b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.resource.ResourceUrlProviderExposingInterceptor</span></td><td><code>017db71f77fc0756</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.AbstractFlashMapManager</span></td><td><code>0c43f3587b65531f</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.SessionFlashMapManager</span></td><td><code>e14258d2a31f6cad</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.support.WebContentGenerator</span></td><td><code>8afd2dd1ef795590</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.theme.AbstractThemeResolver</span></td><td><code>3b5e4f30131e5e68</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.theme.FixedThemeResolver</span></td><td><code>c60c16566f6a5edb</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver</span></td><td><code>2ffdd065d6ec7b5b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver.1</span></td><td><code>1f3534be63aa383b</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.AbstractCachingViewResolver.2</span></td><td><code>0cb6aec4bd92e1d6</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.BeanNameViewResolver</span></td><td><code>a7a2e09773356b90</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ContentNegotiatingViewResolver</span></td><td><code>f8c78479a8b486ac</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ContentNegotiatingViewResolver.1</span></td><td><code>72400c4c2a8ac136</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator</span></td><td><code>c35a5d18e1ad4112</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.InternalResourceViewResolver</span></td><td><code>820f92d1d4359435</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.UrlBasedViewResolver</span></td><td><code>2b80370abd042fdc</code></td></tr><tr><td><span class="el_class">org.springframework.web.servlet.view.ViewResolverComposite</span></td><td><code>a9689b4efd269ddb</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.UrlPathHelper</span></td><td><code>5af6ef8a18add33e</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.UrlPathHelper.1</span></td><td><code>cea875fd29996cab</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.InternalPathPatternParser</span></td><td><code>8d9a2bf126559776</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.LiteralPathElement</span></td><td><code>ea07e8bc392402f7</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathElement</span></td><td><code>0b52ddc7eb6033e4</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPattern</span></td><td><code>af87baa1f708dc08</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPatternParser</span></td><td><code>97db9ab9e7fe2b1f</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.PathPatternParser.1</span></td><td><code>3f1c3e482762bf79</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.SeparatorPathElement</span></td><td><code>9c76b1c8c8d1e792</code></td></tr><tr><td><span class="el_class">org.springframework.web.util.pattern.WildcardTheRestPathElement</span></td><td><code>d40ec2979adff1a0</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory</span></td><td><code>1a0a6c89f13307f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory.1</span></td><td><code>1f70f5722c85dba6</code></td></tr><tr><td><span class="el_class">org.testcontainers.DockerClientFactory.2</span></td><td><code>7c14ffc42e74c3c2</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.Container</span></td><td><code>2a07a02d50675e15</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.ContainerState</span></td><td><code>dfc3fa8da8f9f9d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.FailureDetectingExternalResource</span></td><td><code>6ce2497b553c55d8</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.GenericContainer</span></td><td><code>97e0746e4140c180</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.JdbcDatabaseContainer</span></td><td><code>29eaf8ed2348ba43</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.PortForwardingContainer</span></td><td><code>a3731629001fb79c</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.PostgreSQLContainer</span></td><td><code>3bbe157a78fe8105</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.BaseConsumer</span></td><td><code>a4b36a30cd9032ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.FrameConsumerResultCallback</span></td><td><code>90ea0e6c77c838c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.FrameConsumerResultCallback.LineConsumer</span></td><td><code>fc78c19125a715a9</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame</span></td><td><code>fbeb4840c20b4d3f</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame.1</span></td><td><code>43434f0e72480db9</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.OutputFrame.OutputType</span></td><td><code>f68fe47412e0a697</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.output.WaitingConsumer</span></td><td><code>47c0558f9d54ad5e</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.IsRunningStartupCheckStrategy</span></td><td><code>28771a0f9ffaf6f4</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.StartupCheckStrategy</span></td><td><code>0a7352cae13d7fc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.startupcheck.StartupCheckStrategy.StartupStatus</span></td><td><code>69509b6f05718a6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.AbstractWaitStrategy</span></td><td><code>97024d4669c2c997</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.1</span></td><td><code>55cdfa0a43dede04</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.HostPortWaitStrategy</span></td><td><code>219306b2b9762d16</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy</span></td><td><code>bc7326709924b794</code></td></tr><tr><td><span class="el_class">org.testcontainers.containers.wait.strategy.Wait</span></td><td><code>bf3d7ce1e177c543</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.AuthDelegatingDockerClientConfig</span></td><td><code>7946325f90a3f902</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientConfigUtils</span></td><td><code>de7879cea6d96c1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientProviderStrategy</span></td><td><code>b9c1280fefe25f16</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerClientProviderStrategy.1</span></td><td><code>a2b915ef81ba7aa8</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerDesktopClientProviderStrategy</span></td><td><code>b1a19fdcecea1b6f</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.DockerMachineClientProviderStrategy</span></td><td><code>3eade60d427ff762</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.EnvironmentAndSystemPropertyClientProviderStrategy</span></td><td><code>03f5a1f8dbc5a311</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.HeadersAddingDockerHttpClient</span></td><td><code>b5b47d28cde2a8f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.NpipeSocketClientProviderStrategy</span></td><td><code>be507560a31bf5f3</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.RootlessDockerClientProviderStrategy</span></td><td><code>7d75143a75247a38</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TestcontainersHostPropertyClientProviderStrategy</span></td><td><code>0734fa161b3b0207</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TransportConfig</span></td><td><code>b6461df2e9c6fee6</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.TransportConfig.TransportConfigBuilder</span></td><td><code>412f546d12bcd5e7</code></td></tr><tr><td><span class="el_class">org.testcontainers.dockerclient.UnixSocketClientProviderStrategy</span></td><td><code>209c9dd7869a16ff</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.AbstractImagePullPolicy</span></td><td><code>ce8e1df5f102eec8</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.DefaultPullPolicy</span></td><td><code>5e64973ceffef27a</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.ImageData</span></td><td><code>b809cc389bab8779</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.ImageData.ImageDataBuilder</span></td><td><code>f690def02b490e45</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.LocalImagesCache</span></td><td><code>59972c51d3ee6ed2</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.PullPolicy</span></td><td><code>e5d3170e0a08b838</code></td></tr><tr><td><span class="el_class">org.testcontainers.images.RemoteDockerImage</span></td><td><code>7f922677431f381e</code></td></tr><tr><td><span class="el_class">org.testcontainers.jdbc.ContainerDatabaseDriver</span></td><td><code>997f3c8626f2a579</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.FilesystemFriendlyNameGenerator</span></td><td><code>e1c09fd0a7a8df5e</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersExtension</span></td><td><code>67a7e3ec630872d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersExtension.StoreAdapter</span></td><td><code>c0ffe23689f4a28e</code></td></tr><tr><td><span class="el_class">org.testcontainers.junit.jupiter.TestcontainersTestDescription</span></td><td><code>5009764b3ceb4544</code></td></tr><tr><td><span class="el_class">org.testcontainers.lifecycle.Startables</span></td><td><code>951d24c179273be7</code></td></tr><tr><td><span class="el_class">org.testcontainers.lifecycle.Startables.1</span></td><td><code>28d22a39b70545ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Base64Variant</span></td><td><code>aa0b4fb31b027401</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Base64Variants</span></td><td><code>576238afee9b4164</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonEncoding</span></td><td><code>825b61e78be616bc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonFactory</span></td><td><code>135e17d90ddd4df6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonFactory.Feature</span></td><td><code>81dce2466efa6327</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonGenerator</span></td><td><code>4150d1d2337d9632</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonGenerator.Feature</span></td><td><code>46d5560dd4971751</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser</span></td><td><code>bc012733eaab2cd7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser.Feature</span></td><td><code>4b68418976825bea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonParser.NumberType</span></td><td><code>ef1b4571895f5cec</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonStreamContext</span></td><td><code>432f077997f82d75</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.JsonToken</span></td><td><code>0af5ea600acb1126</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.ObjectCodec</span></td><td><code>b5423ffd2df4d4d8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.TreeCodec</span></td><td><code>9ab3d4f31146860b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.Version</span></td><td><code>9189790ff8fb2b49</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.GeneratorBase</span></td><td><code>7564d428d842dc35</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.ParserBase</span></td><td><code>daabee842ab9c479</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.base.ParserMinimalBase</span></td><td><code>1c232e53c614bcad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.CharTypes</span></td><td><code>547e537996634227</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.IOContext</span></td><td><code>8850aacab7e742fe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.JsonStringEncoder</span></td><td><code>c6ce3c338299e958</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.NumberInput</span></td><td><code>e9af2388cdf8873a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.SegmentedStringWriter</span></td><td><code>d4b9c2bcd378e679</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.io.SerializedString</span></td><td><code>335fc673ab29c7b2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper</span></td><td><code>178126a36b8ec64d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonGeneratorImpl</span></td><td><code>9e1e368276e31db5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonReadContext</span></td><td><code>71299dc3ff5ebb1b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.JsonWriteContext</span></td><td><code>1c9c5d021d46e029</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.UTF8JsonGenerator</span></td><td><code>250dae3d7a219220</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.UTF8StreamJsonParser</span></td><td><code>be56d44c7b13841e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.json.WriterBasedJsonGenerator</span></td><td><code>6bbe3ced8b62f2c6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer</span></td><td><code>85f8f61cf7f03b43</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.TableInfo</span></td><td><code>824b4d47df6424bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer</span></td><td><code>11779992c7da0795</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer.TableInfo</span></td><td><code>d8f3a9141a9553e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.type.ResolvedType</span></td><td><code>25959cb4818312a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.type.TypeReference</span></td><td><code>1f43f2caf6e3fd9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.BufferRecycler</span></td><td><code>e30e8b10d3f1e862</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.ByteArrayBuilder</span></td><td><code>4b554592f27e459c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultIndenter</span></td><td><code>9701287383d17a19</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter</span></td><td><code>3c35cd2021d99380</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter</span></td><td><code>948a63fb8f58a005</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter</span></td><td><code>b1f25bfa69289acc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.InternCache</span></td><td><code>18df14c9399f6da9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.core.util.TextBuffer</span></td><td><code>b5fbff0351c354af</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.AnnotationIntrospector</span></td><td><code>9bedb33a0dc58e7a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.BeanDescription</span></td><td><code>438b9b6162f6341d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.BeanProperty.Std</span></td><td><code>e0d1a3989065dd03</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DatabindContext</span></td><td><code>e9d344b515eb9ede</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationConfig</span></td><td><code>1adb2bdf8c7b35ae</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationContext</span></td><td><code>03ca0a5cc2f1dff0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.DeserializationFeature</span></td><td><code>d558d68127b0cbc6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JavaType</span></td><td><code>cd6376798e8eb51d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonDeserializer</span></td><td><code>a3b6bad878ef50d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonNode</span></td><td><code>24a4603e2fe7532b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonSerializable.Base</span></td><td><code>fdbebdb822048c1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.JsonSerializer</span></td><td><code>40f46aad6fa7cf05</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.KeyDeserializer</span></td><td><code>03954341c9542946</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.MapperFeature</span></td><td><code>9b01f8b72bbb5e7c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.MappingJsonFactory</span></td><td><code>1264b5ae948e8874</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.Module</span></td><td><code>e0ae4d64fd61dc30</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ObjectMapper</span></td><td><code>e318c3ff42c7bd64</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ObjectMapper.1</span></td><td><code>a0043cc6ab7e18b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.PropertyMetadata</span></td><td><code>026300cf8aa2fc7a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.PropertyName</span></td><td><code>fd2239a90b1dafd4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializationConfig</span></td><td><code>034bccbfc5ea2dd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializationFeature</span></td><td><code>5a68beae378dcd8f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.SerializerProvider</span></td><td><code>c79605cdd9e8c52c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.BaseSettings</span></td><td><code>a692a5d6faec2230</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ConfigOverrides</span></td><td><code>46e4739b22247f59</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ContextAttributes</span></td><td><code>a2a8aa2f8961760b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl</span></td><td><code>b92e4530d24495a7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.DeserializerFactoryConfig</span></td><td><code>8c20e9a98392126a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.MapperConfig</span></td><td><code>586bf13db4c46109</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.MapperConfigBase</span></td><td><code>edca169077abdf74</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.cfg.SerializerFactoryConfig</span></td><td><code>20974162303fc9e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BasicDeserializerFactory</span></td><td><code>9dd8c3b3b25b645b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializer</span></td><td><code>7cb8513f4cc24000</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializer.1</span></td><td><code>b2852f818002d5de</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerBase</span></td><td><code>22f6aaef1d146f4e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerBuilder</span></td><td><code>f859b89b2143a155</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerFactory</span></td><td><code>1de18ccd8c54a766</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.BeanDeserializerModifier</span></td><td><code>f75128f29ae6c4be</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.CreatorProperty</span></td><td><code>c6851fe6430b3572</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext</span></td><td><code>278e78ed31a0ec85</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.Impl</span></td><td><code>5308b3cf9184befd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DeserializerCache</span></td><td><code>e83034312bb71a9a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.DeserializerFactory</span></td><td><code>ec395e5c8ecb066c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.SettableBeanProperty</span></td><td><code>3a4ef0a5bef0f9fe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.ValueInstantiator</span></td><td><code>923fefd9ad3a601c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.BeanPropertyMap</span></td><td><code>1469ae097ab2d20f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.CreatorCollector</span></td><td><code>ede3e0f51c948f91</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.CreatorCollector.StdTypeConstructor</span></td><td><code>c61208d060771582</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.FailingDeserializer</span></td><td><code>eced00b86fb88533</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.FieldProperty</span></td><td><code>6fd60d5c9d94a211</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.InnerClassProperty</span></td><td><code>41867919ffdaae02</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.MethodProperty</span></td><td><code>d9450d0aee8a5738</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator</span></td><td><code>157b7d5c78d0d944</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.impl.SetterlessProperty</span></td><td><code>07864ec8330f19f1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer</span></td><td><code>5fe824173bfcf1a6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer</span></td><td><code>8d0122097cc05534</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase</span></td><td><code>a0c73aa1c65456e3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers</span></td><td><code>982609bb4c5b071d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateBasedDeserializer</span></td><td><code>081b95412e1d2383</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateDeserializer</span></td><td><code>8d0a2e8b2de8c047</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.DelegatingDeserializer</span></td><td><code>7acb4f9ea28e0ae4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.EnumDeserializer</span></td><td><code>5969c694449f583c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.FactoryBasedEnumDeserializer</span></td><td><code>e415a792dbfd38a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.FromStringDeserializer</span></td><td><code>f62de2d61980b2d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.JdkDeserializers</span></td><td><code>417df484df8ec350</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.JsonNodeDeserializer</span></td><td><code>5f554df38c13ac20</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.MapDeserializer</span></td><td><code>37a3b1f7a2eead0f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers</span></td><td><code>7d07130e050ef59c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BooleanDeserializer</span></td><td><code>9417c8c91462b434</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.IntegerDeserializer</span></td><td><code>5e0190f0296c667f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.LongDeserializer</span></td><td><code>223e0a83985f30e6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.NumberDeserializer</span></td><td><code>037ef05a938c72b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.NumberDeserializers.PrimitiveOrWrapperDeserializer</span></td><td><code>222ed763ed04b29c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer</span></td><td><code>da1ac4420d63d175</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdDeserializer</span></td><td><code>03f9c471b75023f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer</span></td><td><code>7be6cb339549d9d1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringFactoryKeyDeserializer</span></td><td><code>63e6e7082224aec7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer.StringKD</span></td><td><code>a89df118488e97d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers</span></td><td><code>71556ca978990d8c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdScalarDeserializer</span></td><td><code>90f1cdd26ce1258b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StdValueInstantiator</span></td><td><code>fcc80331475a10b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringArrayDeserializer</span></td><td><code>d8cbc3fb9294c02b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringCollectionDeserializer</span></td><td><code>be5e634a23edafd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.StringDeserializer</span></td><td><code>9a32ddc7d57ffc63</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer</span></td><td><code>ac66c192161dbd6e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.Vanilla</span></td><td><code>721e9b894ffbd854</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.Java7Support</span></td><td><code>90c0dd6b3fe0c29c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.Java7SupportImpl</span></td><td><code>d700da1745598171</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ext.OptionalHandlerFactory</span></td><td><code>b883d6b4b44b583c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.Annotated</span></td><td><code>9abead95dc4d1013</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedClass</span></td><td><code>e57faaa544c6bf9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedConstructor</span></td><td><code>e32232a39615fe55</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedField</span></td><td><code>e1c582b78a07471e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMember</span></td><td><code>ad621546c3ddbacc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMethod</span></td><td><code>fbfa146386fe480c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedMethodMap</span></td><td><code>079433d67bb415d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedParameter</span></td><td><code>f700a079823d57b3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotatedWithParams</span></td><td><code>3ef7ba226de52c58</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.AnnotationMap</span></td><td><code>2e9f8ba110fdbf1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BasicBeanDescription</span></td><td><code>a1004be6b85c0d54</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BasicClassIntrospector</span></td><td><code>5d1a86e62e939695</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.BeanPropertyDefinition</span></td><td><code>19067cc09e14377b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.ClassIntrospector</span></td><td><code>a55d62e0336ef322</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase</span></td><td><code>4f854089f2a66ebd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector</span></td><td><code>f3878eaa8fcf2813</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.MemberKey</span></td><td><code>2b6dd82967bf10fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector</span></td><td><code>e69dbe8ff491207a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder</span></td><td><code>f532077226ce3b2d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.1</span></td><td><code>76ffc9c2f2bd4333</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.10</span></td><td><code>d91abcdea423b2fa</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.2</span></td><td><code>43e81646728fc8d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.3</span></td><td><code>4b27e7451b68f064</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.4</span></td><td><code>db44bc256c7f04d1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.5</span></td><td><code>9eda59eb66458bc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.6</span></td><td><code>bd014af9f1e2736a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.7</span></td><td><code>38b60974d21391b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.8</span></td><td><code>24b1a00926dcbcf9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.9</span></td><td><code>62bc37c180617899</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.Linked</span></td><td><code>24a964d377486140</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.MemberIterator</span></td><td><code>5e4dc2aaf87feb78</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.SimpleMixInResolver</span></td><td><code>4feb92e29c80b4e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.TypeResolutionContext.Basic</span></td><td><code>15a95b81b216aca4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std</span></td><td><code>bb8625b804fff43f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.jsontype.SubtypeResolver</span></td><td><code>788370d5d17cb28f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.jsontype.impl.StdSubtypeResolver</span></td><td><code>e1b1d63ab9c92046</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.module.SimpleModule</span></td><td><code>e7d309e00a929028</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ArrayNode</span></td><td><code>fc327ccbfd1fe984</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.BaseJsonNode</span></td><td><code>9c046c4551599eca</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.BooleanNode</span></td><td><code>346ea58998916762</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ContainerNode</span></td><td><code>0e3562125bd7e868</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.IntNode</span></td><td><code>2c33c5a5a6bd2d24</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.JsonNodeFactory</span></td><td><code>c58f1e28df370362</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.JsonNodeType</span></td><td><code>6419260f6c4b85df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.LongNode</span></td><td><code>ea03a1aa721888c8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor</span></td><td><code>caa196fc471ce5bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor.ArrayCursor</span></td><td><code>bfed6e210ddd14ea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NodeCursor.ObjectCursor</span></td><td><code>148b46bdb81c0d18</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NullNode</span></td><td><code>174a734008c7d8df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.NumericNode</span></td><td><code>760017ba928cf6a8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ObjectNode</span></td><td><code>8fb1ac43975c27a1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TextNode</span></td><td><code>4bc1ef8be12d003c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TreeTraversingParser</span></td><td><code>5efac5601837f93a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.TreeTraversingParser.1</span></td><td><code>3f9f55882167e8ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.node.ValueNode</span></td><td><code>793e5c092d9ff8bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.AnyGetterWriter</span></td><td><code>78ccbc796b0be0a9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BasicSerializerFactory</span></td><td><code>c90b1f1c5c0f55fc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BasicSerializerFactory.1</span></td><td><code>b8e0975251287c10</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanPropertyWriter</span></td><td><code>b959d94ad90528b4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializer</span></td><td><code>e371a4a56c310847</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializerBuilder</span></td><td><code>06453097da74e52a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.BeanSerializerFactory</span></td><td><code>617c339bee2ec39a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.ContainerSerializer</span></td><td><code>0280004f2e5e7644</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.DefaultSerializerProvider</span></td><td><code>426b8a57cd485bdb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.Impl</span></td><td><code>f9a7b19c1fd3c068</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyBuilder</span></td><td><code>f19a0606752e6d34</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyBuilder.1</span></td><td><code>6de85d3a0631f907</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.PropertyWriter</span></td><td><code>a361acc7a80a7efb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.SerializerCache</span></td><td><code>f3c58998b3749ea1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.SerializerFactory</span></td><td><code>0c8cdb6e7f052d58</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.FailingSerializer</span></td><td><code>8f790a2ffda84975</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer</span></td><td><code>43716384c5f56c6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap</span></td><td><code>9cd2e9120f31a887</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Double</span></td><td><code>d4fbf5b32b13fcd0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Empty</span></td><td><code>7cf856f8acb34769</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.SerializerAndMapResult</span></td><td><code>a3fd9ce53b0afa3b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap.Single</span></td><td><code>c74f486f49a8b361</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.ReadOnlyClassToSerializerMap</span></td><td><code>df260091a1a8f6c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.ReadOnlyClassToSerializerMap.Bucket</span></td><td><code>a5ae612d225acaa7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.StringArraySerializer</span></td><td><code>b2454de3ece491d2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.impl.UnknownSerializer</span></td><td><code>42b654bd131d523e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ArraySerializerBase</span></td><td><code>4bf7c3da45248cd6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.AsArraySerializerBase</span></td><td><code>156a1ca317999d23</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.BeanSerializerBase</span></td><td><code>f5275aa72ab219bc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.BooleanSerializer</span></td><td><code>070c8eaebc8f698c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ByteArraySerializer</span></td><td><code>c7dfd499437bf49c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.CalendarSerializer</span></td><td><code>9094d1dc0aaa2a6b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.DateSerializer</span></td><td><code>a4a225881cd45da1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase</span></td><td><code>ba38b085c025de00</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.JsonValueSerializer</span></td><td><code>a87518e8a0d77f2d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.MapSerializer</span></td><td><code>4ae4edcb70294d6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NonTypedScalarSerializerBase</span></td><td><code>11918f2a6ec02cec</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NullSerializer</span></td><td><code>d16cd1ec2abf81f5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializer</span></td><td><code>e346a5263bf844d7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers</span></td><td><code>53ac7767cd767d0d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.1</span></td><td><code>3344fc3dd7f6d6bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base</span></td><td><code>2cdc2f9a07b44ed0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.DoubleSerializer</span></td><td><code>825dbc59a2f77212</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer</span></td><td><code>b96833440b427568</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntLikeSerializer</span></td><td><code>6ca08db060bbb764</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer</span></td><td><code>f669e88bdfc2530e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.LongSerializer</span></td><td><code>58c847dc1e934c47</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.NumberSerializers.ShortSerializer</span></td><td><code>64335a13086d0150</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ObjectArraySerializer</span></td><td><code>87e3a26a8e78991c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.SerializableSerializer</span></td><td><code>20361cb71038ff41</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers</span></td><td><code>44e33a1e41767a2a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer</span></td><td><code>fd8994b75744b571</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.CharArraySerializer</span></td><td><code>eff5646161b71708</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.DoubleArraySerializer</span></td><td><code>9176b75644d4c0b1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.FloatArraySerializer</span></td><td><code>bfe22ac144616cbe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.IntArraySerializer</span></td><td><code>502dbc11517f69d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.LongArraySerializer</span></td><td><code>8dbff856c85a9280</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.ShortArraySerializer</span></td><td><code>84e7fcf58ecd9760</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdArraySerializers.TypedPrimitiveArraySerializer</span></td><td><code>4ec50d1ca0564da1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdJdkSerializers</span></td><td><code>a74b19684264d0b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializer</span></td><td><code>ac5275da9265ee2f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers</span></td><td><code>f6ef01620c249c5f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers.Dynamic</span></td><td><code>8866795a7ac13e33</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdKeySerializers.StringKeySerializer</span></td><td><code>45a840ab5907a6e2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdScalarSerializer</span></td><td><code>bc1ee8e531e69bbe</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StdSerializer</span></td><td><code>5c3fdd54d91acc89</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.StringSerializer</span></td><td><code>529c33431432bf8d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.ToStringSerializer</span></td><td><code>a1dc7b91226ac0ef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.ser.std.UUIDSerializer</span></td><td><code>14254ed8e4c9043e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ArrayType</span></td><td><code>7c1a3a9cd1dcb97e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ClassStack</span></td><td><code>675b04b67d6af33e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.CollectionLikeType</span></td><td><code>fd718f0c692d7a4d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.CollectionType</span></td><td><code>7cb688d15dbec9df</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.MapLikeType</span></td><td><code>c7c66dff87341dbd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.MapType</span></td><td><code>6304f661ba11f80d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.ResolvedRecursiveType</span></td><td><code>7bb3117494ff1413</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.SimpleType</span></td><td><code>e4a44219186be68d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBase</span></td><td><code>a8f29eb44582f0f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings</span></td><td><code>50c33474b843488d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings.AsKey</span></td><td><code>a075813f1bc09e73</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeBindings.TypeParamStash</span></td><td><code>456a91904038cb6e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeFactory</span></td><td><code>28ce70415428d5e4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.type.TypeParser</span></td><td><code>02a918bcb07f367b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ArrayBuilders</span></td><td><code>f0c8d8f46190de6a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ArrayIterator</span></td><td><code>e94c148ef0ce54ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.BeanUtil</span></td><td><code>fc234109ebbb588b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil</span></td><td><code>6e5e45c71f441b34</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil.Ctor</span></td><td><code>6cb5f59462ee3ffa</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ClassUtil.EmptyIterator</span></td><td><code>daa6329c87cc8ea3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.CompactStringObjectMap</span></td><td><code>c46bbb3ef7af5988</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.EnumResolver</span></td><td><code>79d217f7c9daf752</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.LRUMap</span></td><td><code>2df0e2fa690435cb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.LinkedNode</span></td><td><code>c50e2cbe0034d268</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.ObjectBuffer</span></td><td><code>725f285dc9c9b48f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.RootNameLookup</span></td><td><code>f975ab9bd8e64abc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.StdDateFormat</span></td><td><code>dd83d17f83a57198</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer</span></td><td><code>520ac622709c3126</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer.Parser</span></td><td><code>7786a8e643b497f6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TokenBuffer.Segment</span></td><td><code>e0e2f4b7cabbea14</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.fasterxml.jackson.databind.util.TypeKey</span></td><td><code>2be823c16e78493e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.AbstractDockerCmdExecFactory</span></td><td><code>70502ed6e408bd82</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerClientConfig</span></td><td><code>ce3b5b005c2d6856</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerClientConfig.Builder</span></td><td><code>c348377d79496c8e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerCmdExecFactory</span></td><td><code>6efd7c63f8452821</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerCmdExecFactory.DefaultWebTarget</span></td><td><code>bb343584af36b96c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder</span></td><td><code>52ce1f1cc5acba64</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.1</span></td><td><code>f022ef8a222f32ed</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.2</span></td><td><code>5155d8707bbe223c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder</span></td><td><code>f95003fdcdd13675</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder.1</span></td><td><code>f00dbf45fa32946f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DefaultObjectMapperHolder.1.1</span></td><td><code>9c2bf400291b8f80</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientConfig</span></td><td><code>eca24e0c3ede17f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientConfigDelegate</span></td><td><code>6ab0380db5899401</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerClientImpl</span></td><td><code>707ad651132dedb3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerConfigFile</span></td><td><code>26b694d5aac41644</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerConfigFile.1</span></td><td><code>8864a4bfbec833a5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile</span></td><td><code>346f1b08f6c847f0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile.Endpoints</span></td><td><code>8f1b71f0af25d36a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerContextMetaFile.Endpoints.Docker</span></td><td><code>404b999f39f0ea52</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.DockerObjectDeserializer</span></td><td><code>204951dec752a77e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.FramedInputStreamConsumer</span></td><td><code>03eb09544d55c81d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.MediaType</span></td><td><code>31683c01ae634bf4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser</span></td><td><code>3ce4b4f9f91e6a81</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser.HostnameReposName</span></td><td><code>1c084ea3df5f4e3d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.NameParser.ReposTag</span></td><td><code>4f33740b5d9fd702</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.RemoteApiVersion</span></td><td><code>987b19a06a9de957</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.RemoteApiVersion.1</span></td><td><code>92f4f8bb10083405</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrAsyncDockerCmd</span></td><td><code>1af08feacefbbe12</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrDockerCmd</span></td><td><code>424a1eca295646da</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.CreateContainerCmdImpl</span></td><td><code>13f5c71d64680bce</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InfoCmdImpl</span></td><td><code>64fcd72587ba1a95</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InspectContainerCmdImpl</span></td><td><code>55ae28380427b878</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.InspectImageCmdImpl</span></td><td><code>628ea28d423df234</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.ListImagesCmdImpl</span></td><td><code>8919cc9661c80a6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.LogContainerCmdImpl</span></td><td><code>c14637198fbae90c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.StartContainerCmdImpl</span></td><td><code>3a653d708a80a148</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.command.VersionCmdImpl</span></td><td><code>d63f90967af99330</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrAsyncDockerCmdExec</span></td><td><code>bb91d2324d3d9353</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrAsyncDockerCmdExec.1</span></td><td><code>de891ed1fb7b7f4f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrDockerCmdExec</span></td><td><code>d59d137aeac3d0e7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrSyncDockerCmdExec</span></td><td><code>568e2f98d4cbe08e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.CreateContainerCmdExec</span></td><td><code>202e23141ba1651a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.CreateContainerCmdExec.1</span></td><td><code>bf36f8eb452790c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InfoCmdExec</span></td><td><code>807017657f073403</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InfoCmdExec.1</span></td><td><code>79fab6d458c1b253</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectContainerCmdExec</span></td><td><code>8d1d61170f749ad2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectContainerCmdExec.1</span></td><td><code>b941c1e72db80ea4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectImageCmdExec</span></td><td><code>8a167854fae6694f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.InspectImageCmdExec.1</span></td><td><code>106fef8821fb754e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.ListImagesCmdExec</span></td><td><code>1f3056faab307468</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.ListImagesCmdExec.1</span></td><td><code>8f9a88f2f1ec6cef</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.LogContainerCmdExec</span></td><td><code>70445195734fa2c3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec</span></td><td><code>1b49deae2c1fcd3a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.VersionCmdExec</span></td><td><code>472d8f0826248a11</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.exec.VersionCmdExec.1</span></td><td><code>8a8410a63c9d2f97</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.github.dockerjava.core.util.FiltersBuilder</span></td><td><code>abc8337dd25cd974</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher</span></td><td><code>b6a60948c235f116</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Any</span></td><td><code>70e3757bf994c640</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Ascii</span></td><td><code>58b2d3466b5a260d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.BreakingWhitespace</span></td><td><code>9eaebfdf271440fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Digit</span></td><td><code>10afeebd2d9c26eb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.FastMatcher</span></td><td><code>4a85fdbf23fc3f8b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Invisible</span></td><td><code>9ffc8d25d781e118</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaDigit</span></td><td><code>de68ab358c70790e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaIsoControl</span></td><td><code>7f96aca9ce262ec8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLetter</span></td><td><code>c1932969ef35aff9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLetterOrDigit</span></td><td><code>9110f54f7242e45d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaLowerCase</span></td><td><code>a3028222583d6f98</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.JavaUpperCase</span></td><td><code>df29a3ab960dd6d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.NamedFastMatcher</span></td><td><code>f7e0c49468e200e3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.None</span></td><td><code>bfa65d521895a90c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.RangesMatcher</span></td><td><code>d600fe03363750cf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.SingleWidth</span></td><td><code>13a39e683c66f10f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.CharMatcher.Whitespace</span></td><td><code>284f7c7482591188</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner</span></td><td><code>b4e8c7950e5ecb2c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner.1</span></td><td><code>a6acce3bac50e321</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Joiner.MapJoiner</span></td><td><code>72e779a2e40fc052</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects</span></td><td><code>103a0bf41511cead</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects.ToStringHelper</span></td><td><code>0776a02f31e4b320</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.MoreObjects.ToStringHelper.ValueHolder</span></td><td><code>ffc38823055db6e5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Preconditions</span></td><td><code>9bf0ff7d402c0e1d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.base.Strings</span></td><td><code>38c49f7911a0e5c7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractIndexedListIterator</span></td><td><code>b28f32ad7208003b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap</span></td><td><code>43a2c7dac09b48fd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.2</span></td><td><code>cb919fc2c6b4779f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap</span></td><td><code>8ed0bf55b87b8f1c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap.AsMapEntries</span></td><td><code>8f22800a23c3e2c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.AsMap.AsMapIterator</span></td><td><code>f8afbf24f39e3431</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.Itr</span></td><td><code>effba7a0d17d38ad</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.KeySet</span></td><td><code>838fc33e94f4c5e0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection</span></td><td><code>e02a559911d30a90</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection.WrappedIterator</span></td><td><code>eab433111eb2b436</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapBasedMultimap.WrappedSet</span></td><td><code>fff32c47d57d50ff</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMapEntry</span></td><td><code>c138be488823ebd7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap</span></td><td><code>5761160bc76339d4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap.Entries</span></td><td><code>a866a62a9cb0c7b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractMultimap.EntrySet</span></td><td><code>b10663f128825dd2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.AbstractSetMultimap</span></td><td><code>90d7e1b5ca2d4166</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.CollectPreconditions</span></td><td><code>d937d0b60a30b999</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Collections2</span></td><td><code>699086b46b4457bb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.HashMultimap</span></td><td><code>42fc37f00a87b4a2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Hashing</span></td><td><code>58aab16e3d4db2ab</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableAsList</span></td><td><code>4371c2a1743cef75</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection</span></td><td><code>ef1d43c7b880263f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection.ArrayBasedBuilder</span></td><td><code>1ddd700c6118a645</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableCollection.Builder</span></td><td><code>ee01dd1f4feeb125</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableEntry</span></td><td><code>15234c8bfd3d63cd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableList</span></td><td><code>702e32f18253b8c9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableList.Builder</span></td><td><code>015f09c0316a8350</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMap</span></td><td><code>cc7d0867be439259</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMap.Builder</span></td><td><code>7772dc7c64639148</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntry</span></td><td><code>cff8bc42f1c10c45</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntry.NonTerminalImmutableMapEntry</span></td><td><code>eadbcb921c32b3f6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntrySet</span></td><td><code>f4eee8c718a0116f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableMapEntrySet.RegularEntrySet</span></td><td><code>292366d12cafefc1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ImmutableSet</span></td><td><code>3d1b7454ac3eb20e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators</span></td><td><code>3ba9bfae8c6ed571</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.1</span></td><td><code>f8b67cbc9298f89a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.11</span></td><td><code>08e13bdf1e9bb28f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.12</span></td><td><code>bff72b90d70a0028</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Iterators.2</span></td><td><code>db0a9a98ef97b082</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Lists</span></td><td><code>6254660a51db0db7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps</span></td><td><code>07cb62eed18327d3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.EntrySet</span></td><td><code>1a8304dc93b960c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.KeySet</span></td><td><code>82d54b306b9255c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Maps.ViewCachingAbstractMap</span></td><td><code>079c22de1775e1f0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder</span></td><td><code>921d97fa14d6ff57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.1</span></td><td><code>913e4b6c297b7435</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.HashSetSupplier</span></td><td><code>34da5fd819281c51</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys</span></td><td><code>be808d8f5b2ba52d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys.3</span></td><td><code>673867f71ef627f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.MultimapBuilder.SetMultimapBuilder</span></td><td><code>fe4ad6359fe460b4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps</span></td><td><code>935ff648a304062a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps.CustomSetMultimap</span></td><td><code>d2d3717e57d6009c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Multimaps.Entries</span></td><td><code>fa9a262c4db333c2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.ObjectArrays</span></td><td><code>b3567d5aacd7ad15</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Platform</span></td><td><code>2f4a4c249dd73bfc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableAsList</span></td><td><code>cbfe37ca45235097</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableList</span></td><td><code>273ab3108409ccbc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.RegularImmutableMap</span></td><td><code>8115ca34a2d111e8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Sets</span></td><td><code>5ffcb93d1d8e6fca</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.Sets.ImprovedAbstractSet</span></td><td><code>8dfae2e185d96b6f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.SingletonImmutableList</span></td><td><code>b239808ef56a9bfc</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.UnmodifiableIterator</span></td><td><code>0c235cf8f6a9ed0d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.collect.UnmodifiableListIterator</span></td><td><code>fc0541dffd88178f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.Escaper</span></td><td><code>acddefbd97fceba6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.Escaper.1</span></td><td><code>1535c9ee0a557106</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.escape.UnicodeEscaper</span></td><td><code>3c65f5a54cfdb533</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractByteHasher</span></td><td><code>0ee6741c60a6dd26</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractHasher</span></td><td><code>96fed41bc2891101</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.AbstractStreamingHashFunction</span></td><td><code>21d206f3541c69db</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.HashCode</span></td><td><code>932ef175f4a71a0e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.HashCode.BytesHashCode</span></td><td><code>91af25ef9e3b91b2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.Hashing</span></td><td><code>bad11efa2f49fe60</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.Hashing.Sha256Holder</span></td><td><code>82109373e29c0a5b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.MessageDigestHashFunction</span></td><td><code>9b89ea8f678a17a4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.hash.MessageDigestHashFunction.MessageDigestHasher</span></td><td><code>2b5885c055fdfedf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding</span></td><td><code>d3f822b651f75a57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Alphabet</span></td><td><code>fab0496e3c1e1fe0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Base16Encoding</span></td><td><code>44b421919392620f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.Base64Encoding</span></td><td><code>0a0f96bb4784d66a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.io.BaseEncoding.StandardBaseEncoding</span></td><td><code>22243b7583d6fa97</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.IntMath</span></td><td><code>ea2c00c48a5835cd</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.IntMath.1</span></td><td><code>e7316d55a1520fd1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.math.MathPreconditions</span></td><td><code>a1aa6833ffcf0086</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.net.PercentEscaper</span></td><td><code>c738af7c2cc7ca3c</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.net.UrlEscapers</span></td><td><code>f2a520b5f6e28c57</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.com.google.common.primitives.Ints</span></td><td><code>a6914dbe41974ae4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.BooleanUtils</span></td><td><code>1648efa923ead44e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.CharSequenceUtils</span></td><td><code>a15e5e24062152ea</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.JavaVersion</span></td><td><code>ce3d94312bd1a634</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.StringUtils</span></td><td><code>32d5a1be119f7f5d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.SystemUtils</span></td><td><code>6e517caf7c9497f2</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.apache.commons.lang3.math.NumberUtils</span></td><td><code>122122934d7d72e6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.Awaitility</span></td><td><code>93c715e89b7ac51d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.Durations</span></td><td><code>fb4ddad4a42a3f9e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.constraint.AtMostWaitConstraint</span></td><td><code>239404c6f8ce724a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AbstractHamcrestCondition</span></td><td><code>ac696904fcc8e56a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AbstractHamcrestCondition.1</span></td><td><code>e315b095ac2bc240</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AssertionCondition</span></td><td><code>cc31c588be733dc8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.AssertionCondition.1</span></td><td><code>bf3f7bbea75c9025</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.CallableHamcrestCondition</span></td><td><code>6f2924b1847144d6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionAwaiter</span></td><td><code>3ec6e57c8324101b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionAwaiter.ConditionPoller</span></td><td><code>5c7a3089def5fae7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationHandler</span></td><td><code>17513de75bb2f142</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationHandler.StopWatch</span></td><td><code>99593ffc0802a671</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionEvaluationResult</span></td><td><code>4c4d57a36c64b58b</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionFactory</span></td><td><code>2ae8f51db7968a99</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionFactory.1</span></td><td><code>26acc69740c85d00</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ConditionSettings</span></td><td><code>4f936923f77aa927</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.DurationFactory</span></td><td><code>a0e4f8314838e0bf</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.DurationFactory.1</span></td><td><code>60b68977c080f530</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.EvaluationCleanup</span></td><td><code>2e54c005bf9c09a0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ExecutorLifecycle</span></td><td><code>65592537ed9c6cb7</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.ForeverDuration</span></td><td><code>27dddf3cb711b9b8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.HamcrestToStringFilter</span></td><td><code>3210a3dbd9cf369d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.InternalExecutorServiceFactory</span></td><td><code>0f9609f2b71e3c29</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.LambdaErrorMessageGenerator</span></td><td><code>eb003c1d44915e55</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.OriginalDefaultUncaughtExceptionHandler</span></td><td><code>52352465033cd40e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.PredicateExceptionIgnorer</span></td><td><code>bea791afc2c612f8</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.SameThreadExecutorService</span></td><td><code>40c79f6d52519522</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.core.Uninterruptibles</span></td><td><code>c82014fe16390476</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.awaitility.pollinterval.FixedPollInterval</span></td><td><code>58acf1dcb8b74cb3</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.BaseDescription</span></td><td><code>80c0c0c2e658b73a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.BaseMatcher</span></td><td><code>18c67195d4fe533a</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.StringDescription</span></td><td><code>840f34f7a40af643</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.TypeSafeMatcher</span></td><td><code>d952c5d0d5be9626</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.hamcrest.internal.ReflectiveTypeFinder</span></td><td><code>fc36330042cb6d2e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidExitUtil</span></td><td><code>1fa8e01068f269f5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidExitValueException</span></td><td><code>a3fa02fc5d1154c0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.InvalidResultException</span></td><td><code>90a8190a0ed95ab1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers</span></td><td><code>91e921b81c7bdd96</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.1</span></td><td><code>db1819591edfd871</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.2</span></td><td><code>d80e66da31387b88</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.3</span></td><td><code>56591a7a63f02ee4</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.MessageLoggers.4</span></td><td><code>aa5e1a6bb41149c1</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessAttributes</span></td><td><code>2fd8386846ebfce5</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessExecutor</span></td><td><code>f01f42a84fb814b6</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessExecutor.1</span></td><td><code>b9a704667eaa604f</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessOutput</span></td><td><code>87ec6c775c73888d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.ProcessResult</span></td><td><code>daa08b97fa2de7d0</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.WaitForProcess</span></td><td><code>c871277286c4649d</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.close.StandardProcessCloser</span></td><td><code>faf3f02f9a5a94d9</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.listener.CompositeProcessListener</span></td><td><code>3a067e65a1129989</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.listener.ProcessListener</span></td><td><code>5c2a2281f5cb5898</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stop.DestroyProcessStopper</span></td><td><code>265e0c3d736cedbb</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.NullOutputStream</span></td><td><code>066560ae74ae3c4e</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.PumpStreamHandler</span></td><td><code>2b7ad3aff9a70797</code></td></tr><tr><td><span class="el_class">org.testcontainers.shaded.org.zeroturnaround.exec.stream.StreamPumper</span></td><td><code>cf0fee949ab952a2</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.AuthConfigUtil</span></td><td><code>53ba9d508e5be93f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Base58</span></td><td><code>daa98cab571594b7</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ClasspathScanner</span></td><td><code>2d614aa8953b9fe0</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ComparableVersion</span></td><td><code>b4b6bb9894600f9f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ConfigurationFileImageNameSubstitutor</span></td><td><code>d2ba05f34c224f1a</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DefaultImageNameSubstitutor</span></td><td><code>768169cfc15a76f9</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DockerImageName</span></td><td><code>0b9e1bef667824b3</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DockerLoggerFactory</span></td><td><code>87aa28f80cab2370</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.DynamicPollInterval</span></td><td><code>fedec28544138aa2</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ImageNameSubstitutor</span></td><td><code>1b29beacd50d78a5</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ImageNameSubstitutor.LogWrappedImageNameSubstitutor</span></td><td><code>4f46c95ed8a00da7</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.LazyFuture</span></td><td><code>e5556bb368de962d</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.PrefixingImageNameSubstitutor</span></td><td><code>2980b20650a78508</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RegistryAuthLocator</span></td><td><code>f8a6181fb6eb2101</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ResourceReaper</span></td><td><code>83e4a1cc3d3b8766</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.ResourceReaper.FilterRegistry</span></td><td><code>b040260aa53b1e4f</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RyukContainer</span></td><td><code>afe1d6c05abebbef</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.RyukResourceReaper</span></td><td><code>b710f111425d9132</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.TestcontainersConfiguration</span></td><td><code>c3089ee6cb4da896</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning</span></td><td><code>4d1dfe1d76b24e6d</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning.AnyVersion</span></td><td><code>655abd2d3ffee801</code></td></tr><tr><td><span class="el_class">org.testcontainers.utility.Versioning.TagVersioning</span></td><td><code>26e62a50471b07d1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions</span></td><td><code>8364eadf3c4569e6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.FlowStyle</span></td><td><code>668c8cabc9a25bc4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.LineBreak</span></td><td><code>41f901c9a18cfa48</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.NonPrintableStyle</span></td><td><code>2fd906186950e393</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.DumperOptions.ScalarStyle</span></td><td><code>975e9c1543471735</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.LoaderOptions</span></td><td><code>b6242df5d9b287cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.TypeDescription</span></td><td><code>8cb16def691c9ad7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.Yaml</span></td><td><code>620ed8ba116ec790</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentEventsCollector</span></td><td><code>c100c5a933f843ef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentEventsCollector.1</span></td><td><code>e1e0950937a6a4fb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.comments.CommentType</span></td><td><code>8e308dbc02013542</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.composer.Composer</span></td><td><code>ec7b2cf056873a92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.AbstractConstruct</span></td><td><code>82a1d0a21f9a4e79</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.BaseConstructor</span></td><td><code>ad90d4865a1e0de7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor</span></td><td><code>f9b58a14e567528c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructMapping</span></td><td><code>2f492f917f9d53c8</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructScalar</span></td><td><code>ea618a69ff1e59d9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructSequence</span></td><td><code>818d0c066f3ac764</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.Constructor.ConstructYamlObject</span></td><td><code>0b538fd088e22364</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor</span></td><td><code>f4d7821f8383bd49</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructUndefined</span></td><td><code>dcc771efcc1a1b43</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlBinary</span></td><td><code>7c51a3be889e94ff</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlBool</span></td><td><code>54305e860dc97355</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlFloat</span></td><td><code>590cb4f6915351b7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlInt</span></td><td><code>fb81b6cbe53284cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlMap</span></td><td><code>966808e55fcb0e92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlNull</span></td><td><code>bf5402d7f4e0a2e6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlOmap</span></td><td><code>585d04d46edf7ab9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlPairs</span></td><td><code>0b9f052c0c647969</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlSeq</span></td><td><code>47924237d06c5726</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlSet</span></td><td><code>fcec40b3ff928de0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlStr</span></td><td><code>5df133ce94e1844f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlTimestamp</span></td><td><code>082be8143a3d29e7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.error.Mark</span></td><td><code>b07c9bbefa14a2b4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.CollectionEndEvent</span></td><td><code>36c3684323be31b9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.CollectionStartEvent</span></td><td><code>3460027667bfd451</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.DocumentEndEvent</span></td><td><code>8a9c064a71b94ea3</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.DocumentStartEvent</span></td><td><code>9dddf7cf5bdc6a21</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.Event</span></td><td><code>6e57d0aa1274413a</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.Event.ID</span></td><td><code>1e65d9d6198bc0c4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.ImplicitTuple</span></td><td><code>a8ee2ab49f21bc72</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.MappingEndEvent</span></td><td><code>64b8da44a8c061e2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.MappingStartEvent</span></td><td><code>2970ab5bddd39612</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.NodeEvent</span></td><td><code>519a90bc3a477fc2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.ScalarEvent</span></td><td><code>d0d864dda3403b9e</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.SequenceEndEvent</span></td><td><code>6856db124d1d2b9c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.SequenceStartEvent</span></td><td><code>30eef42c60f959c0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.StreamEndEvent</span></td><td><code>85d4b2cb75fe4d05</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.events.StreamStartEvent</span></td><td><code>e63fae697b88ebef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.PercentEscaper</span></td><td><code>8c0249063fdd1b14</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.UnicodeEscaper</span></td><td><code>e78bb0151ae65ccc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.external.com.google.gdata.util.common.base.UnicodeEscaper.2</span></td><td><code>74d5f761782253f6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.introspector.BeanAccess</span></td><td><code>b086d8cd4f22e3e9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.introspector.PropertyUtils</span></td><td><code>460a2028819a3c83</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.CollectionNode</span></td><td><code>4d51145dc5eeaa92</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.MappingNode</span></td><td><code>3484477010fb1651</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.Node</span></td><td><code>345fd8efe4749008</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.NodeId</span></td><td><code>e4e077a276716d47</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.NodeTuple</span></td><td><code>805d7726304d15b0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.ScalarNode</span></td><td><code>2cddbd767ae96912</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.SequenceNode</span></td><td><code>fc15f422db15f78c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.nodes.Tag</span></td><td><code>b5f9c4e7a2c25d29</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl</span></td><td><code>49f5c07da85ebd0f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingFirstKey</span></td><td><code>9f9c964fc3c1567c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingKey</span></td><td><code>598da81fa648fcd7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockMappingValue</span></td><td><code>c702f8db76ae83c1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockNode</span></td><td><code>ec34184d316d5c5f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceEntryKey</span></td><td><code>8d2a7e26cec09e71</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceEntryValue</span></td><td><code>8fdb63a27af76d52</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseBlockSequenceFirstEntry</span></td><td><code>21fc698d8fb4b8cc</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseDocumentEnd</span></td><td><code>ef1e09a231a69181</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseDocumentStart</span></td><td><code>9c1f65b67d3f7a91</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseImplicitDocumentStart</span></td><td><code>905cf041089e7642</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.ParserImpl.ParseStreamStart</span></td><td><code>f1473df9bb0eb562</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.parser.VersionTagsTuple</span></td><td><code>69e9acbd18520cf7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.reader.StreamReader</span></td><td><code>d97ac2d6d90c443f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.reader.UnicodeReader</span></td><td><code>fe5efbb833bb2669</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.BaseRepresenter</span></td><td><code>83ae874fa4af46a4</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.BaseRepresenter.1</span></td><td><code>ec5156a9e12ffd8c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.Representer</span></td><td><code>39d04cfcb298de99</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.Representer.RepresentJavaBean</span></td><td><code>2856b4cee00b9c84</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter</span></td><td><code>e76c3890f2290fb2</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentArray</span></td><td><code>e94bb6d6165c9b50</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentBoolean</span></td><td><code>85b27ae88da38397</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentByteArray</span></td><td><code>15aaa09f0f7adaeb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentDate</span></td><td><code>e3c7acc972efb839</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentEnum</span></td><td><code>d24bdee03e25f4e9</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentIterator</span></td><td><code>4ccd2102a75fc96e</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentList</span></td><td><code>9a62b6b415988727</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentMap</span></td><td><code>233b56476fada63f</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNull</span></td><td><code>cd8fc012cd90bca7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNumber</span></td><td><code>366978c1df8efd56</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentPrimitiveArray</span></td><td><code>d773c11b5ba9f66b</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentSet</span></td><td><code>e68e25b41c4faacb</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentString</span></td><td><code>ec971d0f9cc63f28</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.representer.SafeRepresenter.RepresentUuid</span></td><td><code>89687bc81876365d</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.Resolver</span></td><td><code>8ebc55808fe79266</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.Resolver.1</span></td><td><code>793048873cf2a0d6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.resolver.ResolverTuple</span></td><td><code>9426921f99c76174</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.Constant</span></td><td><code>603b2b248b9db7e3</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.ScannerImpl</span></td><td><code>7020a104843958ef</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.scanner.SimpleKey</span></td><td><code>278ae40878c7a122</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.serializer.NumberAnchorGenerator</span></td><td><code>3507b90bf0ca42b1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockEndToken</span></td><td><code>cef2158e97318ff1</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockEntryToken</span></td><td><code>f5dd637c6a9f39af</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockMappingStartToken</span></td><td><code>bb5d345c3cc844ee</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.BlockSequenceStartToken</span></td><td><code>994152e0327bbba0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.KeyToken</span></td><td><code>e71e6341a4c4642c</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.ScalarToken</span></td><td><code>a9212349356c7542</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.StreamEndToken</span></td><td><code>332ec98b1999c6b0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.StreamStartToken</span></td><td><code>32b528f0a32eb6b7</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.Token</span></td><td><code>ceeadfd0a99d3427</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.Token.ID</span></td><td><code>4bc408d8fe88e821</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.tokens.ValueToken</span></td><td><code>2f3dc04fcc98e29b</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.ArrayStack</span></td><td><code>71718ca4e4d6aae0</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.PlatformFeatureDetector</span></td><td><code>143ae74510513ad6</code></td></tr><tr><td><span class="el_class">org.yaml.snakeyaml.util.UriEncoder</span></td><td><code>9f77c10e554829ec</code></td></tr><tr><td><span class="el_class">reactor.adapter.JdkFlowAdapter</span></td><td><code>762ef5b853da076a</code></td></tr><tr><td><span class="el_class">reactor.adapter.JdkFlowAdapter.PublisherAsFlowPublisher</span></td><td><code>854a562acee1e14a</code></td></tr><tr><td><span class="el_class">reactor.core.Scannable</span></td><td><code>ae9e38b679940f95</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.BlockingMonoSubscriber</span></td><td><code>985ece20d6e031c6</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.BlockingSingleSubscriber</span></td><td><code>3b03b1dd3b7a47e2</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Flux</span></td><td><code>e4ef1720154ad233</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.FluxEmpty</span></td><td><code>d30929dce1723c4c</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Hooks</span></td><td><code>7ee85d0ffe2e8ef3</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Mono</span></td><td><code>a0923c31987968fc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoDefer</span></td><td><code>d96f7828daaadd83</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoEmpty</span></td><td><code>6d43f50a09b2b2cc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen</span></td><td><code>6ae517fbd49e8e3d</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen.WhenCoordinator</span></td><td><code>cdf6716b8e0e1a98</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.MonoWhen.WhenInner</span></td><td><code>7b9cdd8fd5eac032</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators</span></td><td><code>192b9128419ad2ac</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.1</span></td><td><code>719fbec9315d64bc</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.CancelledSubscription</span></td><td><code>284e4d11ee8d6a70</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.EmptySubscription</span></td><td><code>b94f73c0db61245d</code></td></tr><tr><td><span class="el_class">reactor.core.publisher.Operators.MonoSubscriber</span></td><td><code>6e1429b4402b4209</code></td></tr><tr><td><span class="el_class">reactor.core.scheduler.Schedulers</span></td><td><code>f5dcfadd6134c209</code></td></tr><tr><td><span class="el_class">reactor.core.scheduler.Schedulers.1</span></td><td><code>f65965d8b474d993</code></td></tr><tr><td><span class="el_class">reactor.netty.http.HttpResources</span></td><td><code>571e4dafd7c6c44b</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider</span></td><td><code>1cf5cd5feef60e17</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider.Builder</span></td><td><code>d3190874b5219ede</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.ConnectionProvider.ConnectionPoolSpec</span></td><td><code>de16b20f6e43894b</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.DefaultLoopResources</span></td><td><code>625dc738cf289101</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.DefaultPooledConnectionProvider</span></td><td><code>c6ed9bf32ec1563e</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.LoopResources</span></td><td><code>e24596a51ed74178</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.PooledConnectionProvider</span></td><td><code>5610e783d2bb21e5</code></td></tr><tr><td><span class="el_class">reactor.netty.resources.PooledConnectionProvider.PoolFactory</span></td><td><code>e86319751391dbad</code></td></tr><tr><td><span class="el_class">reactor.netty.tcp.TcpResources</span></td><td><code>bd0b9b9b61389f46</code></td></tr><tr><td><span class="el_class">reactor.netty.transport.NameResolverProvider</span></td><td><code>1340e4bab32b5437</code></td></tr><tr><td><span class="el_class">reactor.netty.transport.NameResolverProvider.Build</span></td><td><code>b66055ae397003e8</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers</span></td><td><code>dab55664952e2876</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers.Slf4JLogger</span></td><td><code>4488b640db0d4cc7</code></td></tr><tr><td><span class="el_class">reactor.util.Loggers.Slf4JLoggerFactory</span></td><td><code>61b1358a7d0bdd23</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature</span></td><td><code>daf2694f8c2d9ecf</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.Raw</span></td><td><code>612d1fdcbc91e3d1</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.RawECDSA</span></td><td><code>a6aa09e6c512aa51</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECDSASignature.SHA1</span></td><td><code>b0b781b4f0e3faec</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECKeyFactory</span></td><td><code>7957ef10d6acbcc4</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECKeyPairGenerator</span></td><td><code>647a786be4f307d4</code></td></tr><tr><td><span class="el_class">sun.security.ec.ECPublicKeyImpl</span></td><td><code>5e1a025fa4afaeb6</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC</span></td><td><code>047b876ac98a1133</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.1</span></td><td><code>f831e2713965eef1</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.ProviderService</span></td><td><code>d7855095f52a725d</code></td></tr><tr><td><span class="el_class">sun.security.ec.SunEC.ProviderServiceA</span></td><td><code>84b6e3e9f56e578d</code></td></tr><tr><td><span class="el_class">sun.util.resources.cldr.provider.CLDRLocaleDataMetaInfo</span></td><td><code>9ed83010eeaa402e</code></td></tr><tr><td><span class="el_class">sun.util.resources.provider.NonBaseLocaleDataMetaInfo</span></td><td><code>3286ba296d343b25</code></td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.10.202304240956</span></div></body></html>
    \ No newline at end of file
    diff --git a/job/jacoco/jacoco.csv b/job/jacoco/jacoco.csv
    deleted file mode 100644
    index 2f4c64b12..000000000
    --- a/job/jacoco/jacoco.csv
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -GROUP,PACKAGE,CLASS,INSTRUCTION_MISSED,INSTRUCTION_COVERED,BRANCH_MISSED,BRANCH_COVERED,LINE_MISSED,LINE_COVERED,COMPLEXITY_MISSED,COMPLEXITY_COVERED,METHOD_MISSED,METHOD_COVERED
    -job,gov.cms.ab2d.job.util,JobUtil,3,86,3,25,1,14,4,15,1,4
    -job,gov.cms.ab2d.job.service,JobOutputServiceImpl,0,41,0,0,0,7,0,5,0,5
    -job,gov.cms.ab2d.job.service,InvalidJobAccessException,0,4,0,0,0,2,0,1,0,1
    -job,gov.cms.ab2d.job.service,JobOutputMissingException,0,4,0,0,0,2,0,1,0,1
    -job,gov.cms.ab2d.job.service,JobServiceImpl,18,402,1,23,3,91,2,26,1,15
    -job,gov.cms.ab2d.job.service,InvalidJobStateTransition,0,4,0,0,0,2,0,1,0,1
    -job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    -job,gov.cms.ab2d.job.model,JobStatus,3,57,0,0,1,11,1,3,1,3
    -job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},15,7,2,0,4,1,2,1,1,1
    -job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},0,9,0,0,0,2,0,2,0,2
    -job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    -job,gov.cms.ab2d.job.model,JobStatus.new JobStatus() {...},2,7,0,0,1,1,1,1,1,1
    -job,gov.cms.ab2d.job.model,Job,23,275,7,17,1,38,8,55,2,49
    -job,gov.cms.ab2d.job.model,JobStartedBy,0,21,0,0,0,4,0,1,0,1
    -job,gov.cms.ab2d.job.model,JobOutput,38,92,9,5,1,12,10,19,3,19
    -job,gov.cms.ab2d.job.dto,StaleJob,95,9,20,0,2,1,15,1,5,1
    -job,gov.cms.ab2d.job.dto,JobPollResult,252,24,48,0,6,2,39,2,15,2
    -job,gov.cms.ab2d.job.dto,StartJobDTO,296,51,70,0,1,9,39,9,4,9
    diff --git a/job/jacoco/jacoco.xml b/job/jacoco/jacoco.xml
    deleted file mode 100644
    index 0c8e2d325..000000000
    --- a/job/jacoco/jacoco.xml
    +++ /dev/null
    @@ -1 +0,0 @@
    -<?xml version="1.0" encoding="UTF-8" standalone="yes"?><!DOCTYPE report PUBLIC "-//JACOCO//DTD Report 1.1//EN" "report.dtd"><report name="job"><sessioninfo id="Ben-NAVA-MacBook.local-1ed3c022" start="1737642280157" dump="1737642412404"/><package name="gov/cms/ab2d/job/util"><class name="gov/cms/ab2d/job/util/JobUtil" sourcefilename="JobUtil.java"><method name="&lt;init&gt;" desc="()V" line="12"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="isJobDone" desc="(Lgov/cms/ab2d/job/model/Job;I)Z" line="23"><counter type="INSTRUCTION" missed="0" covered="63"/><counter type="BRANCH" missed="2" covered="20"/><counter type="LINE" missed="0" covered="13"/><counter type="COMPLEXITY" missed="2" covered="10"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$isJobDone$1" desc="(ILgov/cms/ab2d/job/model/JobOutput;)Z" line="46"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$isJobDone$0" desc="(Lgov/cms/ab2d/job/model/JobOutput;)Z" line="45"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="BRANCH" missed="1" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="1" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="11"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobUtil.java"><line nr="11" mi="0" ci="4" mb="0" cb="0"/><line nr="12" mi="3" ci="0" mb="0" cb="0"/><line nr="23" mi="0" ci="13" mb="0" cb="8"/><line nr="24" mi="0" ci="2" mb="0" cb="0"/><line nr="28" mi="0" ci="8" mb="0" cb="4"/><line nr="29" mi="0" ci="2" mb="0" cb="0"/><line nr="35" mi="0" ci="8" mb="1" cb="3"/><line nr="36" mi="0" ci="2" mb="0" cb="0"/><line nr="40" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="5" mb="1" cb="3"/><line nr="42" mi="0" ci="2" mb="0" cb="0"/><line nr="44" mi="0" ci="3" mb="0" cb="0"/><line nr="45" mi="0" ci="14" mb="1" cb="3"/><line nr="46" mi="0" ci="14" mb="0" cb="2"/><line nr="48" mi="0" ci="6" mb="0" cb="2"/><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><counter type="INSTRUCTION" missed="3" covered="86"/><counter type="BRANCH" missed="3" covered="25"/><counter type="LINE" missed="1" covered="14"/><counter type="COMPLEXITY" missed="4" covered="15"/><counter type="METHOD" missed="1" covered="4"/><counter type="CLASS" missed="0" covered="1"/></package><package name="gov/cms/ab2d/job/repository"><class name="gov/cms/ab2d/job/repository/JobOutputRepository" sourcefilename="JobOutputRepository.java"/><class name="gov/cms/ab2d/job/repository/JobRepository" sourcefilename="JobRepository.java"/><sourcefile name="JobOutputRepository.java"/><sourcefile name="JobRepository.java"/></package><package name="gov/cms/ab2d/job/service"><class name="gov/cms/ab2d/job/service/JobOutputServiceImpl" sourcefilename="JobOutputServiceImpl.java"><method name="updateJobOutput" desc="(Lgov/cms/ab2d/job/model/JobOutput;)Lgov/cms/ab2d/job/model/JobOutput;" line="21"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="findByFilePathAndJob" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/model/JobOutput;" line="25"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;init&gt;" desc="(Lgov/cms/ab2d/job/repository/JobOutputRepository;)V" line="12"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$findByFilePathAndJob$0" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/Job;)Ljava/lang/RuntimeException;" line="26"><counter type="INSTRUCTION" missed="0" covered="14"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="13"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="41"/><counter type="LINE" missed="0" covered="7"/><counter type="COMPLEXITY" missed="0" covered="5"/><counter type="METHOD" missed="0" covered="5"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobOutputService" sourcefilename="JobOutputService.java"/><class name="gov/cms/ab2d/job/service/InvalidJobAccessException" sourcefilename="InvalidJobAccessException.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobOutputMissingException" sourcefilename="JobOutputMissingException.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobServiceImpl" sourcefilename="JobServiceImpl.java"><method name="&lt;init&gt;" desc="(Lgov/cms/ab2d/job/repository/JobRepository;Lgov/cms/ab2d/job/service/JobOutputService;Lgov/cms/ab2d/eventclient/clients/SQSEventClient;Ljava/lang/String;)V" line="47"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="createJob" desc="(Lgov/cms/ab2d/job/dto/StartJobDTO;)Lgov/cms/ab2d/job/model/Job;" line="56"><counter type="INSTRUCTION" missed="0" covered="92"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="20"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="cancelJob" desc="(Ljava/lang/String;Ljava/lang/String;)V" line="84"><counter type="INSTRUCTION" missed="0" covered="40"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="9"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getAuthorizedJobByJobUuid" desc="(Ljava/lang/String;Ljava/lang/String;)Lgov/cms/ab2d/job/model/Job;" line="97"><counter type="INSTRUCTION" missed="0" covered="19"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="5"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobByJobUuid" desc="(Ljava/lang/String;)Lgov/cms/ab2d/job/model/Job;" line="110"><counter type="INSTRUCTION" missed="0" covered="19"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="5"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="updateJob" desc="(Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/model/Job;" line="122"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceForJob" desc="(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/springframework/core/io/Resource;" line="127"><counter type="INSTRUCTION" missed="0" covered="96"/><counter type="BRANCH" missed="0" covered="12"/><counter type="LINE" missed="0" covered="23"/><counter type="COMPLEXITY" missed="0" covered="7"/><counter type="METHOD" missed="0" covered="1"/></method><method name="incrementDownload" desc="(Ljava/io/File;Ljava/lang/String;)V" line="166"><counter type="INSTRUCTION" missed="0" covered="27"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="activeJobs" desc="(Ljava/lang/String;)I" line="178"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getActiveJobIds" desc="(Ljava/lang/String;)Ljava/util/List;" line="186"><counter type="INSTRUCTION" missed="14" covered="0"/><counter type="LINE" missed="3" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="poll" desc="(ZLjava/lang/String;Ljava/lang/String;I)Lgov/cms/ab2d/job/dto/JobPollResult;" line="193"><counter type="INSTRUCTION" missed="4" covered="37"/><counter type="BRANCH" missed="1" covered="1"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="checkForExpiration" desc="(Ljava/util/List;I)Ljava/util/List;" line="203"><counter type="INSTRUCTION" missed="0" covered="12"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="clientHasNeverCompletedJob" desc="(Ljava/lang/String;)Z" line="210"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$checkForExpiration$1" desc="(Lgov/cms/ab2d/job/model/Job;)Lgov/cms/ab2d/job/dto/StaleJob;" line="205"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="lambda$checkForExpiration$0" desc="(ILgov/cms/ab2d/job/model/Job;)Z" line="204"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="&lt;clinit&gt;" desc="()V" line="33"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="18" covered="402"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="91"/><counter type="COMPLEXITY" missed="2" covered="26"/><counter type="METHOD" missed="1" covered="15"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/service/JobService" sourcefilename="JobService.java"/><class name="gov/cms/ab2d/job/service/InvalidJobStateTransition" sourcefilename="InvalidJobStateTransition.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;)V" line="6"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="InvalidJobStateTransition.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="InvalidJobAccessException.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutputServiceImpl.java"><line nr="12" mi="0" ci="6" mb="0" cb="0"/><line nr="13" mi="0" ci="4" mb="0" cb="0"/><line nr="21" mi="0" ci="6" mb="0" cb="0"/><line nr="25" mi="0" ci="11" mb="0" cb="0"/><line nr="26" mi="0" ci="6" mb="0" cb="0"/><line nr="27" mi="0" ci="4" mb="0" cb="0"/><line nr="28" mi="0" ci="4" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="41"/><counter type="LINE" missed="0" covered="7"/><counter type="COMPLEXITY" missed="0" covered="5"/><counter type="METHOD" missed="0" covered="5"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobServiceImpl.java"><line nr="33" mi="0" ci="4" mb="0" cb="0"/><line nr="47" mi="0" ci="2" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="49" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="0" ci="3" mb="0" cb="0"/><line nr="51" mi="0" ci="3" mb="0" cb="0"/><line nr="52" mi="0" ci="1" mb="0" cb="0"/><line nr="56" mi="0" ci="4" mb="0" cb="0"/><line nr="57" mi="0" ci="4" mb="0" cb="0"/><line nr="58" mi="0" ci="4" mb="0" cb="0"/><line nr="59" mi="0" ci="4" mb="0" cb="0"/><line nr="60" mi="0" ci="3" mb="0" cb="0"/><line nr="61" mi="0" ci="3" mb="0" cb="0"/><line nr="62" mi="0" ci="4" mb="0" cb="0"/><line nr="63" mi="0" ci="4" mb="0" cb="0"/><line nr="64" mi="0" ci="4" mb="0" cb="0"/><line nr="65" mi="0" ci="4" mb="0" cb="0"/><line nr="66" mi="0" ci="4" mb="0" cb="0"/><line nr="67" mi="0" ci="4" mb="0" cb="0"/><line nr="69" mi="0" ci="7" mb="0" cb="0"/><line nr="72" mi="0" ci="5" mb="0" cb="2"/><line nr="73" mi="0" ci="9" mb="0" cb="0"/><line nr="74" mi="0" ci="7" mb="0" cb="0"/><line nr="75" mi="0" ci="5" mb="0" cb="0"/><line nr="77" mi="0" ci="4" mb="0" cb="0"/><line nr="78" mi="0" ci="3" mb="0" cb="0"/><line nr="79" mi="0" ci="6" mb="0" cb="0"/><line nr="84" mi="0" ci="5" mb="0" cb="0"/><line nr="86" mi="0" ci="4" mb="0" cb="0"/><line nr="87" mi="0" ci="4" mb="0" cb="2"/><line nr="88" mi="0" ci="5" mb="0" cb="0"/><line nr="89" mi="0" ci="7" mb="0" cb="0"/><line nr="91" mi="0" ci="7" mb="0" cb="0"/><line nr="92" mi="0" ci="4" mb="0" cb="0"/><line nr="93" mi="0" ci="3" mb="0" cb="0"/><line nr="94" mi="0" ci="1" mb="0" cb="0"/><line nr="97" mi="0" ci="4" mb="0" cb="0"/><line nr="99" mi="0" ci="5" mb="0" cb="2"/><line nr="100" mi="0" ci="3" mb="0" cb="0"/><line nr="102" mi="0" ci="5" mb="0" cb="0"/><line nr="105" mi="0" ci="2" mb="0" cb="0"/><line nr="110" mi="0" ci="5" mb="0" cb="0"/><line nr="112" mi="0" ci="2" mb="0" cb="2"/><line nr="113" mi="0" ci="4" mb="0" cb="0"/><line nr="114" mi="0" ci="6" mb="0" cb="0"/><line nr="117" mi="0" ci="2" mb="0" cb="0"/><line nr="122" mi="0" ci="6" mb="0" cb="0"/><line nr="127" mi="0" ci="5" mb="0" cb="0"/><line nr="130" mi="0" ci="2" mb="0" cb="0"/><line nr="131" mi="0" ci="2" mb="0" cb="0"/><line nr="132" mi="0" ci="11" mb="0" cb="2"/><line nr="133" mi="0" ci="5" mb="0" cb="2"/><line nr="134" mi="0" ci="2" mb="0" cb="0"/><line nr="135" mi="0" ci="2" mb="0" cb="0"/><line nr="136" mi="0" ci="1" mb="0" cb="0"/><line nr="138" mi="0" ci="1" mb="0" cb="0"/><line nr="140" mi="0" ci="2" mb="0" cb="2"/><line nr="141" mi="0" ci="4" mb="0" cb="0"/><line nr="142" mi="0" ci="6" mb="0" cb="0"/><line nr="145" mi="0" ci="15" mb="0" cb="0"/><line nr="146" mi="0" ci="6" mb="0" cb="0"/><line nr="147" mi="0" ci="4" mb="0" cb="2"/><line nr="148" mi="0" ci="5" mb="0" cb="0"/><line nr="150" mi="0" ci="3" mb="0" cb="2"/><line nr="152" mi="0" ci="5" mb="0" cb="2"/><line nr="153" mi="0" ci="3" mb="0" cb="0"/><line nr="155" mi="0" ci="2" mb="0" cb="0"/><line nr="157" mi="0" ci="3" mb="0" cb="0"/><line nr="158" mi="0" ci="5" mb="0" cb="0"/><line nr="161" mi="0" ci="2" mb="0" cb="0"/><line nr="166" mi="0" ci="5" mb="0" cb="0"/><line nr="167" mi="0" ci="7" mb="0" cb="0"/><line nr="171" mi="0" ci="6" mb="0" cb="0"/><line nr="172" mi="0" ci="3" mb="0" cb="0"/><line nr="173" mi="0" ci="5" mb="0" cb="0"/><line nr="174" mi="0" ci="1" mb="0" cb="0"/><line nr="178" mi="0" ci="5" mb="0" cb="0"/><line nr="179" mi="0" ci="3" mb="0" cb="0"/><line nr="186" mi="7" ci="0" mb="0" cb="0"/><line nr="187" mi="3" ci="0" mb="0" cb="0"/><line nr="188" mi="4" ci="0" mb="0" cb="0"/><line nr="193" mi="4" ci="7" mb="1" cb="1"/><line nr="194" mi="0" ci="3" mb="0" cb="0"/><line nr="195" mi="0" ci="5" mb="0" cb="0"/><line nr="196" mi="0" ci="6" mb="0" cb="0"/><line nr="197" mi="0" ci="12" mb="0" cb="0"/><line nr="198" mi="0" ci="4" mb="0" cb="0"/><line nr="203" mi="0" ci="8" mb="0" cb="0"/><line nr="204" mi="0" ci="6" mb="0" cb="0"/><line nr="205" mi="0" ci="9" mb="0" cb="0"/><line nr="206" mi="0" ci="1" mb="0" cb="0"/><line nr="210" mi="0" ci="8" mb="0" cb="0"/><line nr="211" mi="0" ci="1" mb="0" cb="0"/><line nr="212" mi="0" ci="6" mb="0" cb="2"/><counter type="INSTRUCTION" missed="18" covered="402"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="91"/><counter type="COMPLEXITY" missed="2" covered="26"/><counter type="METHOD" missed="1" covered="15"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutputMissingException.java"><line nr="6" mi="0" ci="3" mb="0" cb="0"/><line nr="7" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobService.java"/><sourcefile name="JobOutputService.java"/><counter type="INSTRUCTION" missed="18" covered="455"/><counter type="BRANCH" missed="1" covered="23"/><counter type="LINE" missed="3" covered="104"/><counter type="COMPLEXITY" missed="2" covered="34"/><counter type="METHOD" missed="1" covered="23"/><counter type="CLASS" missed="0" covered="5"/></package><package name="gov/cms/ab2d/job/model"><class name="gov/cms/ab2d/job/model/JobStatus$5" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="41"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="44"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="52"><counter type="INSTRUCTION" missed="0" covered="11"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isCancellable" desc="()Z" line="48"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isFinished" desc="()Z" line="50"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;clinit&gt;" desc="()V" line="9"><counter type="INSTRUCTION" missed="0" covered="43"/><counter type="LINE" missed="0" covered="6"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="3" covered="57"/><counter type="LINE" missed="1" covered="11"/><counter type="COMPLEXITY" missed="1" covered="3"/><counter type="METHOD" missed="1" covered="3"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$4" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="30"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="34"><counter type="INSTRUCTION" missed="15" covered="0"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="4" covered="0"/><counter type="COMPLEXITY" missed="2" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="15" covered="7"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="4" covered="1"/><counter type="COMPLEXITY" missed="2" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$3" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="24"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="27"><counter type="INSTRUCTION" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="2"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$2" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="18"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="21"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStatus$1" sourcefilename="JobStatus.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;IZZ)V" line="12"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(Ljava/time/OffsetDateTime;I)Z" line="15"><counter type="INSTRUCTION" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="2" covered="7"/><counter type="LINE" missed="1" covered="1"/><counter type="COMPLEXITY" missed="1" covered="1"/><counter type="METHOD" missed="1" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/Job" sourcefilename="Job.java"><method name="&lt;init&gt;" desc="()V" line="29"><counter type="INSTRUCTION" missed="0" covered="14"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="addJobOutput" desc="(Lgov/cms/ab2d/job/model/JobOutput;)V" line="97"><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="3"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hasJobBeenCancelled" desc="()Z" line="102"><counter type="INSTRUCTION" missed="0" covered="8"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="pollAndUpdateTime" desc="(I)V" line="106"><counter type="INSTRUCTION" missed="0" covered="13"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="isExpired" desc="(I)Z" line="113"><counter type="INSTRUCTION" missed="0" covered="7"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="pollingTooMuch" desc="(I)Z" line="117"><counter type="INSTRUCTION" missed="0" covered="15"/><counter type="BRANCH" missed="1" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="1" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="buildJobStatusChangeEvent" desc="(Lgov/cms/ab2d/job/model/JobStatus;Ljava/lang/String;)Lgov/cms/ab2d/eventclient/events/JobStatusChangeEvent;" line="121"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="buildFileEvent" desc="(Ljava/io/File;Lgov/cms/ab2d/eventclient/events/FileEvent$FileStatus;)Lgov/cms/ab2d/eventclient/events/FileEvent;" line="126"><counter type="INSTRUCTION" missed="10" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getId" desc="()Ljava/lang/Long;" line="34"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobUuid" desc="()Ljava/lang/String;" line="38"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="41"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobOutputs" desc="()Ljava/util/List;" line="49"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getCreatedAt" desc="()Ljava/time/OffsetDateTime;" line="53"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getCompletedAt" desc="()Ljava/time/OffsetDateTime;" line="56"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getRequestUrl" desc="()Ljava/lang/String;" line="58"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStatus" desc="()Lgov/cms/ab2d/job/model/JobStatus;" line="62"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStatusMessage" desc="()Ljava/lang/String;" line="63"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOutputFormat" desc="()Ljava/lang/String;" line="64"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getProgress" desc="()Ljava/lang/Integer;" line="65"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFhirVersion" desc="()Lgov/cms/ab2d/fhir/FhirVersion;" line="68"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getLastPollTime" desc="()Ljava/time/OffsetDateTime;" line="71"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSince" desc="()Ljava/time/OffsetDateTime;" line="74"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUntil" desc="()Ljava/time/OffsetDateTime;" line="77"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getExpiresAt" desc="()Ljava/time/OffsetDateTime;" line="80"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceTypes" desc="()Ljava/lang/String;" line="83"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getStartedBy" desc="()Lgov/cms/ab2d/job/model/JobStartedBy;" line="88"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSinceSource" desc="()Lgov/cms/ab2d/common/model/SinceSource;" line="91"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getContractNumber" desc="()Ljava/lang/String;" line="94"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setId" desc="(Ljava/lang/Long;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setJobUuid" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setOrganization" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setJobOutputs" desc="(Ljava/util/List;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setCreatedAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setCompletedAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setRequestUrl" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStatus" desc="(Lgov/cms/ab2d/job/model/JobStatus;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStatusMessage" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setOutputFormat" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setProgress" desc="(Ljava/lang/Integer;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFhirVersion" desc="(Lgov/cms/ab2d/fhir/FhirVersion;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setLastPollTime" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setSince" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setUntil" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setExpiresAt" desc="(Ljava/time/OffsetDateTime;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setResourceTypes" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setStartedBy" desc="(Lgov/cms/ab2d/job/model/JobStartedBy;)V" line="27"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setSinceSource" desc="(Lgov/cms/ab2d/common/model/SinceSource;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setContractNumber" desc="(Ljava/lang/String;)V" line="27"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="28"><counter type="INSTRUCTION" missed="9" covered="29"/><counter type="BRANCH" missed="6" covered="6"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="5" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="28"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hashCode" desc="()I" line="28"><counter type="INSTRUCTION" missed="0" covered="20"/><counter type="BRANCH" missed="0" covered="2"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="2"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="23" covered="275"/><counter type="BRANCH" missed="7" covered="17"/><counter type="LINE" missed="1" covered="38"/><counter type="COMPLEXITY" missed="8" covered="55"/><counter type="METHOD" missed="2" covered="49"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobStartedBy" sourcefilename="JobStartedBy.java"><method name="&lt;clinit&gt;" desc="()V" line="3"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/model/JobOutput" sourcefilename="JobOutput.java"><method name="&lt;init&gt;" desc="()V" line="20"><counter type="INSTRUCTION" missed="0" covered="6"/><counter type="LINE" missed="0" covered="2"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getId" desc="()Ljava/lang/Long;" line="25"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJob" desc="()Lgov/cms/ab2d/job/model/Job;" line="30"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFilePath" desc="()Ljava/lang/String;" line="34"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFhirResourceType" desc="()Ljava/lang/String;" line="36"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getError" desc="()Ljava/lang/Boolean;" line="39"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getDownloaded" desc="()I" line="42"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getChecksum" desc="()Ljava/lang/String;" line="45"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getFileLength" desc="()Ljava/lang/Long;" line="48"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getLastDownloadAt" desc="()Ljava/time/OffsetDateTime;" line="50"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setId" desc="(Ljava/lang/Long;)V" line="18"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setJob" desc="(Lgov/cms/ab2d/job/model/Job;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFilePath" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFhirResourceType" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setError" desc="(Ljava/lang/Boolean;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setDownloaded" desc="(I)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setChecksum" desc="(Ljava/lang/String;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setFileLength" desc="(Ljava/lang/Long;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="setLastDownloadAt" desc="(Ljava/time/OffsetDateTime;)V" line="18"><counter type="INSTRUCTION" missed="0" covered="4"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="19"><counter type="INSTRUCTION" missed="11" covered="27"/><counter type="BRANCH" missed="7" covered="5"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="6" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="19"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="hashCode" desc="()I" line="19"><counter type="INSTRUCTION" missed="20" covered="0"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="2" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="38" covered="92"/><counter type="BRANCH" missed="9" covered="5"/><counter type="LINE" missed="1" covered="12"/><counter type="COMPLEXITY" missed="10" covered="19"/><counter type="METHOD" missed="3" covered="19"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobStartedBy.java"><line nr="3" mi="0" ci="3" mb="0" cb="0"/><line nr="4" mi="0" ci="6" mb="0" cb="0"/><line nr="5" mi="0" ci="6" mb="0" cb="0"/><line nr="6" mi="0" ci="6" mb="0" cb="0"/><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="4"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="Job.java"><line nr="27" mi="4" ci="76" mb="0" cb="0"/><line nr="28" mi="9" ci="52" mb="6" cb="8"/><line nr="29" mi="0" ci="2" mb="0" cb="0"/><line nr="34" mi="0" ci="3" mb="0" cb="0"/><line nr="38" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="3" mb="0" cb="0"/><line nr="43" mi="0" ci="5" mb="0" cb="0"/><line nr="49" mi="0" ci="3" mb="0" cb="0"/><line nr="53" mi="0" ci="3" mb="0" cb="0"/><line nr="56" mi="0" ci="3" mb="0" cb="0"/><line nr="58" mi="0" ci="3" mb="0" cb="0"/><line nr="62" mi="0" ci="3" mb="0" cb="0"/><line nr="63" mi="0" ci="3" mb="0" cb="0"/><line nr="64" mi="0" ci="3" mb="0" cb="0"/><line nr="65" mi="0" ci="3" mb="0" cb="0"/><line nr="67" mi="0" ci="3" mb="0" cb="0"/><line nr="68" mi="0" ci="3" mb="0" cb="0"/><line nr="71" mi="0" ci="3" mb="0" cb="0"/><line nr="74" mi="0" ci="3" mb="0" cb="0"/><line nr="77" mi="0" ci="3" mb="0" cb="0"/><line nr="80" mi="0" ci="3" mb="0" cb="0"/><line nr="83" mi="0" ci="3" mb="0" cb="0"/><line nr="86" mi="0" ci="4" mb="0" cb="0"/><line nr="88" mi="0" ci="3" mb="0" cb="0"/><line nr="91" mi="0" ci="3" mb="0" cb="0"/><line nr="94" mi="0" ci="3" mb="0" cb="0"/><line nr="97" mi="0" ci="5" mb="0" cb="0"/><line nr="98" mi="0" ci="3" mb="0" cb="0"/><line nr="99" mi="0" ci="1" mb="0" cb="0"/><line nr="102" mi="0" ci="8" mb="0" cb="2"/><line nr="106" mi="0" ci="4" mb="0" cb="2"/><line nr="107" mi="0" ci="5" mb="0" cb="0"/><line nr="109" mi="0" ci="3" mb="0" cb="0"/><line nr="110" mi="0" ci="1" mb="0" cb="0"/><line nr="113" mi="0" ci="7" mb="0" cb="0"/><line nr="117" mi="0" ci="15" mb="1" cb="3"/><line nr="121" mi="0" ci="9" mb="0" cb="2"/><line nr="122" mi="0" ci="12" mb="0" cb="0"/><line nr="126" mi="10" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="23" covered="275"/><counter type="BRANCH" missed="7" covered="17"/><counter type="LINE" missed="1" covered="38"/><counter type="COMPLEXITY" missed="8" covered="55"/><counter type="METHOD" missed="2" covered="49"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobOutput.java"><line nr="18" mi="4" ci="32" mb="0" cb="0"/><line nr="19" mi="31" ci="30" mb="9" cb="5"/><line nr="20" mi="0" ci="2" mb="0" cb="0"/><line nr="25" mi="0" ci="3" mb="0" cb="0"/><line nr="30" mi="0" ci="3" mb="0" cb="0"/><line nr="34" mi="0" ci="3" mb="0" cb="0"/><line nr="36" mi="0" ci="3" mb="0" cb="0"/><line nr="39" mi="0" ci="3" mb="0" cb="0"/><line nr="41" mi="0" ci="4" mb="0" cb="0"/><line nr="42" mi="0" ci="3" mb="0" cb="0"/><line nr="45" mi="0" ci="3" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="38" covered="92"/><counter type="BRANCH" missed="9" covered="5"/><counter type="LINE" missed="1" covered="12"/><counter type="COMPLEXITY" missed="10" covered="19"/><counter type="METHOD" missed="3" covered="19"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="JobStatus.java"><line nr="9" mi="0" ci="3" mb="0" cb="0"/><line nr="12" mi="0" ci="15" mb="0" cb="0"/><line nr="15" mi="2" ci="0" mb="0" cb="0"/><line nr="18" mi="0" ci="15" mb="0" cb="0"/><line nr="21" mi="2" ci="0" mb="0" cb="0"/><line nr="24" mi="0" ci="15" mb="0" cb="0"/><line nr="27" mi="0" ci="2" mb="0" cb="0"/><line nr="30" mi="0" ci="15" mb="0" cb="0"/><line nr="34" mi="2" ci="0" mb="2" cb="0"/><line nr="35" mi="2" ci="0" mb="0" cb="0"/><line nr="37" mi="6" ci="0" mb="0" cb="0"/><line nr="38" mi="5" ci="0" mb="0" cb="0"/><line nr="41" mi="0" ci="15" mb="0" cb="0"/><line nr="44" mi="2" ci="0" mb="0" cb="0"/><line nr="48" mi="0" ci="3" mb="0" cb="0"/><line nr="50" mi="3" ci="0" mb="0" cb="0"/><line nr="52" mi="0" ci="4" mb="0" cb="0"/><line nr="53" mi="0" ci="3" mb="0" cb="0"/><line nr="54" mi="0" ci="3" mb="0" cb="0"/><line nr="55" mi="0" ci="1" mb="0" cb="0"/><counter type="INSTRUCTION" missed="24" covered="94"/><counter type="BRANCH" missed="2" covered="0"/><counter type="LINE" missed="8" covered="12"/><counter type="COMPLEXITY" missed="6" covered="9"/><counter type="METHOD" missed="5" covered="9"/><counter type="CLASS" missed="0" covered="6"/></sourcefile><counter type="INSTRUCTION" missed="85" covered="482"/><counter type="BRANCH" missed="18" covered="22"/><counter type="LINE" missed="10" covered="66"/><counter type="COMPLEXITY" missed="24" covered="84"/><counter type="METHOD" missed="10" covered="78"/><counter type="CLASS" missed="0" covered="9"/></package><package name="gov/cms/ab2d/job/dto"><class name="gov/cms/ab2d/job/dto/StaleJob" sourcefilename="StaleJob.java"><method name="&lt;init&gt;" desc="(Ljava/lang/String;Ljava/lang/String;)V" line="7"><counter type="INSTRUCTION" missed="0" covered="9"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getJobUuid" desc="()Ljava/lang/String;" line="10"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="12"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="7"><counter type="INSTRUCTION" missed="49" covered="0"/><counter type="BRANCH" missed="16" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="9" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="7"><counter type="INSTRUCTION" missed="34" covered="0"/><counter type="BRANCH" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="3" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="7"><counter type="INSTRUCTION" missed="6" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><counter type="INSTRUCTION" missed="95" covered="9"/><counter type="BRANCH" missed="20" covered="0"/><counter type="LINE" missed="2" covered="1"/><counter type="COMPLEXITY" missed="15" covered="1"/><counter type="METHOD" missed="5" covered="1"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/dto/JobPollResult" sourcefilename="JobPollResult.java"><method name="getRequestUrl" desc="()Ljava/lang/String;" line="14"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getStatus" desc="()Lgov/cms/ab2d/job/model/JobStatus;" line="15"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getProgress" desc="()I" line="16"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getTransactionTime" desc="()Ljava/lang/String;" line="17"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getExpiresAt" desc="()Ljava/time/OffsetDateTime;" line="18"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="getJobOutputs" desc="()Ljava/util/List;" line="19"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setRequestUrl" desc="(Ljava/lang/String;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setStatus" desc="(Lgov/cms/ab2d/job/model/JobStatus;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setProgress" desc="(I)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setTransactionTime" desc="(Ljava/lang/String;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setExpiresAt" desc="(Ljava/time/OffsetDateTime;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="setJobOutputs" desc="(Ljava/util/List;)V" line="11"><counter type="INSTRUCTION" missed="4" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="11"><counter type="INSTRUCTION" missed="113" covered="0"/><counter type="BRANCH" missed="38" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="20" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="11"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="11"><counter type="INSTRUCTION" missed="83" covered="0"/><counter type="BRANCH" missed="10" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="6" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="11"><counter type="INSTRUCTION" missed="14" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;init&gt;" desc="(Ljava/lang/String;Lgov/cms/ab2d/job/model/JobStatus;ILjava/lang/String;Ljava/time/OffsetDateTime;Ljava/util/List;)V" line="12"><counter type="INSTRUCTION" missed="0" covered="21"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="252" covered="24"/><counter type="BRANCH" missed="48" covered="0"/><counter type="LINE" missed="6" covered="2"/><counter type="COMPLEXITY" missed="39" covered="2"/><counter type="METHOD" missed="15" covered="2"/><counter type="CLASS" missed="0" covered="1"/></class><class name="gov/cms/ab2d/job/dto/StartJobDTO" sourcefilename="StartJobDTO.java"><method name="getContractNumber" desc="()Ljava/lang/String;" line="19"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOrganization" desc="()Ljava/lang/String;" line="21"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getResourceTypes" desc="()Ljava/lang/String;" line="23"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUrl" desc="()Ljava/lang/String;" line="25"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getOutputFormat" desc="()Ljava/lang/String;" line="27"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getSince" desc="()Ljava/time/OffsetDateTime;" line="28"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getUntil" desc="()Ljava/time/OffsetDateTime;" line="29"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="getVersion" desc="()Lgov/cms/ab2d/fhir/FhirVersion;" line="31"><counter type="INSTRUCTION" missed="0" covered="3"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><method name="equals" desc="(Ljava/lang/Object;)Z" line="15"><counter type="INSTRUCTION" missed="157" covered="0"/><counter type="BRANCH" missed="54" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="28" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="canEqual" desc="(Ljava/lang/Object;)Z" line="15"><counter type="INSTRUCTION" missed="3" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="hashCode" desc="()I" line="15"><counter type="INSTRUCTION" missed="118" covered="0"/><counter type="BRANCH" missed="16" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="9" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="toString" desc="()Ljava/lang/String;" line="15"><counter type="INSTRUCTION" missed="18" covered="0"/><counter type="LINE" missed="1" covered="0"/><counter type="COMPLEXITY" missed="1" covered="0"/><counter type="METHOD" missed="1" covered="0"/></method><method name="&lt;init&gt;" desc="(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/time/OffsetDateTime;Ljava/time/OffsetDateTime;Lgov/cms/ab2d/fhir/FhirVersion;)V" line="16"><counter type="INSTRUCTION" missed="0" covered="27"/><counter type="LINE" missed="0" covered="1"/><counter type="COMPLEXITY" missed="0" covered="1"/><counter type="METHOD" missed="0" covered="1"/></method><counter type="INSTRUCTION" missed="296" covered="51"/><counter type="BRANCH" missed="70" covered="0"/><counter type="LINE" missed="1" covered="9"/><counter type="COMPLEXITY" missed="39" covered="9"/><counter type="METHOD" missed="4" covered="9"/><counter type="CLASS" missed="0" covered="1"/></class><sourcefile name="JobPollResult.java"><line nr="11" mi="237" ci="0" mb="48" cb="0"/><line nr="12" mi="0" ci="21" mb="0" cb="0"/><line nr="14" mi="3" ci="0" mb="0" cb="0"/><line nr="15" mi="0" ci="3" mb="0" cb="0"/><line nr="16" mi="3" ci="0" mb="0" cb="0"/><line nr="17" mi="3" ci="0" mb="0" cb="0"/><line nr="18" mi="3" ci="0" mb="0" cb="0"/><line nr="19" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="252" covered="24"/><counter type="BRANCH" missed="48" covered="0"/><counter type="LINE" missed="6" covered="2"/><counter type="COMPLEXITY" missed="39" covered="2"/><counter type="METHOD" missed="15" covered="2"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="StaleJob.java"><line nr="7" mi="89" ci="9" mb="20" cb="0"/><line nr="10" mi="3" ci="0" mb="0" cb="0"/><line nr="12" mi="3" ci="0" mb="0" cb="0"/><counter type="INSTRUCTION" missed="95" covered="9"/><counter type="BRANCH" missed="20" covered="0"/><counter type="LINE" missed="2" covered="1"/><counter type="COMPLEXITY" missed="15" covered="1"/><counter type="METHOD" missed="5" covered="1"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><sourcefile name="StartJobDTO.java"><line nr="15" mi="296" ci="0" mb="70" cb="0"/><line nr="16" mi="0" ci="27" mb="0" cb="0"/><line nr="19" mi="0" ci="3" mb="0" cb="0"/><line nr="21" mi="0" ci="3" mb="0" cb="0"/><line nr="23" mi="0" ci="3" mb="0" cb="0"/><line nr="25" mi="0" ci="3" mb="0" cb="0"/><line nr="27" mi="0" ci="3" mb="0" cb="0"/><line nr="28" mi="0" ci="3" mb="0" cb="0"/><line nr="29" mi="0" ci="3" mb="0" cb="0"/><line nr="31" mi="0" ci="3" mb="0" cb="0"/><counter type="INSTRUCTION" missed="296" covered="51"/><counter type="BRANCH" missed="70" covered="0"/><counter type="LINE" missed="1" covered="9"/><counter type="COMPLEXITY" missed="39" covered="9"/><counter type="METHOD" missed="4" covered="9"/><counter type="CLASS" missed="0" covered="1"/></sourcefile><counter type="INSTRUCTION" missed="643" covered="84"/><counter type="BRANCH" missed="138" covered="0"/><counter type="LINE" missed="9" covered="12"/><counter type="COMPLEXITY" missed="93" covered="12"/><counter type="METHOD" missed="24" covered="12"/><counter type="CLASS" missed="0" covered="3"/></package><counter type="INSTRUCTION" missed="749" covered="1107"/><counter type="BRANCH" missed="160" covered="70"/><counter type="LINE" missed="23" covered="196"/><counter type="COMPLEXITY" missed="123" covered="145"/><counter type="METHOD" missed="36" covered="117"/><counter type="CLASS" missed="0" covered="18"/></report>
    \ No newline at end of file
    
    From 28db4e43d244ab21e2772c2b3b6790a3083a0776 Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 15:57:58 -0700
    Subject: [PATCH 18/23] Remove TODO
    
    ---
     .../test/java/gov/cms/ab2d/e2etest/TestRunner.java  | 13 ++-----------
     1 file changed, 2 insertions(+), 11 deletions(-)
    
    diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    index dd93e858e..7aaae10d0 100644
    --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    @@ -532,21 +532,12 @@ private Pair<String, JSONArray> performStatusRequests(List<String> contentLocati
     
             String jobUuid = JobUtil.getJobUuid(contentLocationList.iterator().next());
     
    -        final String statusResponseAgainBody = statusResponseAgain.body();
    -
             if (statusResponseAgain.statusCode() == 500) {
                 // No values returned if 500
    -            log.info("500 response body: " + statusResponseAgainBody);
    +            log.info("500 response body: " + statusResponseAgain.body());
                 return null;
             }
    -
    -        // TODO - remove temporary debugging code
    -        log.info("Body -> {}", statusResponseAgainBody);
    -        log.info("Status code -> {}", statusResponseAgain.statusCode());
    -        assertEquals(
    -                200,
    -                statusResponseAgain.statusCode(),
    -                "Expected HTTP 200 but received " + statusResponseAgain.statusCode());
    +        assertEquals(200, statusResponseAgain.statusCode());
     
             return verifyJsonFromStatusResponse(statusResponseAgain, jobUuid, isContract, contractNumber, version);
         }
    
    From 21251a373b57905b0b067cb87ea9b2b703fe0ac1 Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 15:58:35 -0700
    Subject: [PATCH 19/23] Reoder statement
    
    ---
     .../gov/cms/ab2d/worker/processor/ContractProcessorImpl.java    | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    index b175834d1..dd2e9f650 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    @@ -168,9 +168,9 @@ public List<JobOutput> process(Job job) {
                 }
     
                 // Retrieve all the job output info
    -            log.info("Number of outputs: " + jobOutputs.size());
                 jobOutputs.addAll(getOutputs(job.getJobUuid(), DATA));
                 jobOutputs.addAll(getOutputs(job.getJobUuid(), ERROR));
    +            log.info("Number of outputs: " + jobOutputs.size());
     
             } catch (InterruptedException | IOException ex) {
                 log.error("interrupted while processing job for contract");
    
    From c0f2fe98c86c84345ba5d6ba71dc093de32f03c7 Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 16:07:28 -0700
    Subject: [PATCH 20/23] Minor change to test
    
    ---
     .../gov/cms/ab2d/api/controller/common/StatusCommon.java    | 2 +-
     .../cms/ab2d/api/controller/common/StatusCommonTest.java    | 6 ++++++
     2 files changed, 7 insertions(+), 1 deletion(-)
    
    diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    index 162e15c27..c577faf13 100644
    --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
    @@ -156,7 +156,7 @@ protected String getUrlPath(String jobUuid, String filePath, HttpServletRequest
         }
     
         // job output files are now stored in gzip format - remove '.gz' extension before building file download URL for backwards compatibility
    -    private String removeGzFileExtension(String filePath) {
    +    protected String removeGzFileExtension(String filePath) {
             val index = filePath.lastIndexOf(".gz");
             return (index == -1)
                     ? filePath
    diff --git a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    index 01f658b44..2ff010a8c 100644
    --- a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    +++ b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    @@ -158,6 +158,12 @@ void testGetUrlPathError(String file) {
         );
       }
     
    +  @Test
    +  void test() {
    +    assertEquals("file.ndjson", statusCommon.removeGzFileExtension("file.ndjson.gz"));
    +    assertEquals("file.ndjson", statusCommon.removeGzFileExtension("file.ndjson"));
    +  }
    +
     
     
     }
    
    From 8cda2978e307cdf2ee5f4299a7b29f1e72bff0bd Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 16:14:06 -0700
    Subject: [PATCH 21/23] Add comment
    
    ---
     .../controller/common/StatusCommonTest.java   |  2 +-
     .../ab2d/common/util/GzipCompressUtils.java   | 26 -------------
     .../common/util/GzipCompressUtilsTest.java    | 39 -------------------
     .../processor/ContractProcessorImpl.java      |  2 +-
     .../ab2d/worker/processor/StreamOutput.java   | 10 +++++
     5 files changed, 12 insertions(+), 67 deletions(-)
    
    diff --git a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    index 2ff010a8c..5fa7d05e2 100644
    --- a/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    +++ b/api/src/test/java/gov/cms/ab2d/api/controller/common/StatusCommonTest.java
    @@ -159,7 +159,7 @@ void testGetUrlPathError(String file) {
       }
     
       @Test
    -  void test() {
    +  void testRemoveGzFileExtension() {
         assertEquals("file.ndjson", statusCommon.removeGzFileExtension("file.ndjson.gz"));
         assertEquals("file.ndjson", statusCommon.removeGzFileExtension("file.ndjson"));
       }
    diff --git a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    index d8e87fa83..aba7f1dea 100644
    --- a/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    +++ b/common/src/main/java/gov/cms/ab2d/common/util/GzipCompressUtils.java
    @@ -52,32 +52,6 @@ public static void decompress(final Path compressedFile, Path destination) throw
             }
         }
     
    -    /**
    -     * Compress job output files (both 'DATA' and 'ERROR' types)
    -     * @param jobId job id
    -     * @param baseDir root directory containing directory for corresponding job id
    -     * @param fileFilter function to determine whether a file should be compressed
    -     * @return false if an error occurred while compressing one or more files (unlikely), true otherwise
    -     */
    -    /*
    -    public static boolean compressJobOutputFiles(
    -            String jobId,
    -            String baseDir,
    -            FileFilter fileFilter) {
    -        val jobDirectory = new File(baseDir + File.separator + jobId);
    -        if (!jobDirectory.exists() || !jobDirectory.isDirectory()) {
    -            return false;
    -        }
    -
    -        val files = jobDirectory.listFiles(fileFilter);
    -        boolean success = true;
    -        for (File file : files) {
    -            success = success && compressFile(file, true);
    -        }
    -        return success;
    -    }
    -    */
    -
         /**
          * Compress a file (outputting to the same directory) and optionally delete file after compressing
          * @param file file to compress
    diff --git a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    index 11b301fab..faa92b16e 100644
    --- a/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    +++ b/common/src/test/java/gov/cms/ab2d/common/util/GzipCompressUtilsTest.java
    @@ -122,45 +122,6 @@ void testCompressFile_fileIsADirectory(@TempDir File tempDir)  {
             assertNull(GzipCompressUtils.compressFile(tempDir, true));
         }
     
    -    /*
    -    @Test
    -    void testCompressJobOutputFiles(@TempDir File tempDir) throws IOException {
    -        String jobId = "job1234";
    -        File jobDirectory = new File(tempDir, jobId);
    -        jobDirectory.mkdirs();
    -
    -        File testDataFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test.ndjson").toFile();
    -        File testErrorFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test_error.ndjson").toFile();
    -        File testTextFile = copyFile(UNCOMPRESSED_FILE.toFile(), jobDirectory, "test.txt").toFile();
    -
    -        assertTrue(testDataFile.exists());
    -        assertTrue(testErrorFile.exists());
    -        assertTrue(testTextFile.exists());
    -
    -        GzipCompressUtils.compressJobOutputFiles(jobId, tempDir.getAbsolutePath(), this::fileFilter);
    -
    -        // verify files are compressed
    -        assertTrue(new File(jobDirectory, "test.ndjson.gz").exists());
    -        assertTrue(new File(jobDirectory, "test_error.ndjson.gz").exists());
    -
    -        // verify original files were deleted after being compressed
    -        assertFalse(testDataFile.exists());
    -        assertFalse(testErrorFile.exists());
    -
    -        // verify unrelated file (neither data nor error) is not changed
    -        assertTrue(testTextFile.exists());
    -        assertFalse(new File(jobDirectory, "test.txt.gz").exists());
    -    }
    -
    -    @Test
    -    void testCompressJobOutputFiles_badInputs(@TempDir File tempDir) throws IOException {
    -        copyFile(UNCOMPRESSED_FILE.toFile(), tempDir).toFile();
    -        assertFalse(GzipCompressUtils.compressJobOutputFiles("non-existent-job-id", tempDir.getAbsolutePath(), null));
    -        assertFalse(GzipCompressUtils.compressJobOutputFiles(UNCOMPRESSED_FILE.toFile().getName(), tempDir.getAbsolutePath(), null));
    -    }
    -     */
    -
    -
         @Test
         void compressFile_invalidInputs(@TempDir File tempDir) {
             assertNull(GzipCompressUtils.compressFile(null, true));
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    index dd2e9f650..27135f3f5 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/ContractProcessorImpl.java
    @@ -190,7 +190,7 @@ List<JobOutput> getOutputs(String jobId, FileOutputType type) {
             final String fileLocation = searchConfig.getEfsMount() + "/" + jobId;
             List<JobOutput> jobOutputs = new ArrayList<>();
             List<StreamOutput> dataOutputs = FileUtils.listFiles(fileLocation, type).stream()
    -                .map(file -> new StreamOutput(file))
    +                .map(StreamOutput::new)
                     .toList();
             dataOutputs.stream().map(this::createJobOutput).forEach(jobOutputs::add);
             return jobOutputs;
    diff --git a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    index 103bd0ef5..911946ec7 100644
    --- a/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    +++ b/worker/src/main/java/gov/cms/ab2d/worker/processor/StreamOutput.java
    @@ -20,9 +20,19 @@
     @Getter
     public class StreamOutput {
     
    +    /**
    +     * Filename of compressed file (includes the '.gz' file suffix)
    +     */
         private final String filePath;
    +    /**
    +     * Checksum of the uncompressed file
    +     */
         private final String checksum;
    +    /**
    +     * Length of the uncompressed file
    +     */
         private final long fileLength;
    +
         private final FileOutputType type;
     
         public StreamOutput(final File uncompressedFile) {
    
    From 32c3696f0036b8de1ec60357b1706c95c1db0475 Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 16:28:09 -0700
    Subject: [PATCH 22/23] Disable failing FileSystemCheckTest#unableToWriteToDir
    
    ---
     .../java/gov/cms/ab2d/common/health/FileSystemCheckTest.java   | 3 +++
     1 file changed, 3 insertions(+)
    
    diff --git a/common/src/test/java/gov/cms/ab2d/common/health/FileSystemCheckTest.java b/common/src/test/java/gov/cms/ab2d/common/health/FileSystemCheckTest.java
    index 24efc8304..3d733e0e1 100644
    --- a/common/src/test/java/gov/cms/ab2d/common/health/FileSystemCheckTest.java
    +++ b/common/src/test/java/gov/cms/ab2d/common/health/FileSystemCheckTest.java
    @@ -2,6 +2,7 @@
     
     import org.apache.commons.lang3.RandomStringUtils;
     import org.apache.commons.lang3.SystemUtils;
    +import org.junit.jupiter.api.Disabled;
     import org.junit.jupiter.api.Test;
     
     import java.io.File;
    @@ -25,6 +26,7 @@ void canWriteFile() throws IOException {
         }
     
         @Test
    +    @Disabled("Assertion for 'FileSystemCheck.canWriteFile' fails in GitHub test runner (but not locally)")
         void unableToWriteToDir() {
             String randomDirName = RandomStringUtils.randomAlphabetic(20);
             File newDir = new File("." + File.separator + randomDirName);
    @@ -32,6 +34,7 @@ void unableToWriteToDir() {
             // Windows does not support the ability to turn off creating files in a directory
             if (!SystemUtils.IS_OS_WINDOWS) {
                 assertTrue(newDir.setReadOnly());
    +            // TODO investigate why this fails in the GitHub runner
                 assertFalse(FileSystemCheck.canWriteFile(randomDirName, false));
             }
             assertTrue(newDir.delete());
    
    From 806ae2610b13f6502d05d1985d4f51d2ad4d5654 Mon Sep 17 00:00:00 2001
    From: Ben Hesford <benhesford@navapbc.com>
    Date: Mon, 27 Jan 2025 16:38:49 -0700
    Subject: [PATCH 23/23] Update TestRunner to include downloading non-compressed
     files
    
    ---
     .../java/gov/cms/ab2d/e2etest/TestRunner.java | 37 +++++++++++++++++++
     1 file changed, 37 insertions(+)
    
    diff --git a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    index 7aaae10d0..ffcdb3731 100644
    --- a/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    +++ b/e2e-test/src/test/java/gov/cms/ab2d/e2etest/TestRunner.java
    @@ -828,6 +828,43 @@ void testHealthEndPoint() throws IOException, InterruptedException {
             assertEquals(200, healthCheckResponse.statusCode());
         }
     
    +    /**
    +     * This test is identical to {@link #runSystemWideExport} except this calls {@link #downloadFileWithoutAcceptEncoding}
    +     */
    +    @ParameterizedTest
    +    @MethodSource("getVersionAndContract")
    +    @Order(15)
    +    void runSystemWideExportWithoutAcceptEncoding(FhirVersion version, String contract) throws IOException, InterruptedException, JSONException {
    +        System.out.println();
    +        log.info("Starting test 15 - " + version.toString());
    +        HttpResponse<String> exportResponse = apiClient.exportRequest(FHIR_TYPE, null, version);
    +        assertEquals(202, exportResponse.statusCode());
    +        List<String> contentLocationList = exportResponse.headers().map().get("content-location");
    +
    +        Pair<String, JSONArray> downloadDetails = performStatusRequests(contentLocationList, false, contract, version);
    +        assertNotNull(downloadDetails);
    +        downloadFileWithoutAcceptEncoding(downloadDetails, null, version);
    +    }
    +
    +    /**
    +     * This test is identical to {@link #runSystemWideExportSince} except this calls {@link #downloadFileWithoutAcceptEncoding}
    +     */
    +    @ParameterizedTest
    +    @MethodSource("getVersionAndContract")
    +    @Order(16)
    +    void runSystemWideExportSinceWithoutAcceptEncoding(FhirVersion version, String contract) throws IOException, InterruptedException, JSONException {
    +        System.out.println();
    +        log.info("Starting test 16 - " + version.toString());
    +        HttpResponse<String> exportResponse = apiClient.exportRequest(FHIR_TYPE, earliest, version);
    +        log.info("run system wide export since {}", exportResponse);
    +        assertEquals(202, exportResponse.statusCode());
    +        List<String> contentLocationList = exportResponse.headers().map().get("content-location");
    +
    +        Pair<String, JSONArray> downloadDetails = performStatusRequests(contentLocationList, false, contract, version);
    +        assertNotNull(downloadDetails);
    +        downloadFileWithoutAcceptEncoding(downloadDetails, earliest, version);
    +    }
    +
         /**
          * Returns the stream of FHIR version and contract to use for that version
          *
    

y!65WN)hC&lz7cEtv z7gIxP7Z0dn^GN=YkVTzHy6U4tGiu47tYWziefVZL^RZcway2<2^Cvz=@VqG9!4UMe984AG7E6SMo^ zPU2>8U|5_ST*JOsO;On_OBguP+AGQu#!fyni=tKy_z%L4djtI|vy1gLwPZ%ku68wj z`6)c>cj#tx>uritIyj8=suj8jmlb1vksPXi#W4Ww}cDRi<80jIT*mRB4=IgFTmO8v8qq#S2^WLf+d7Q;j))o)*@^n*YO?I25C?78N0asq?pFoML37`@Z*(ml^4`g^?T+X?Uq#dgF;77twb+@$L?bc zMVX?T0kK>|SV)3PjjI~YF|3=tfQ>JYU>YD~Ba-`0(H%37_Gw9Ne78gi&y^XsY(=*6 zpu>*hKVBt!esJ5Ne5GL6n9E0y!+McCAkAg`_9(9>vXIz&t5_OKNs+~T#WrJ#?3R2WBbX7 zr>ZKeD1b%PkCT8T%K)hNWgwEw;+xZlUlEv&Qb{D;;`9Y!sbbqu0f4A2k6qAr^0|Il zJ&v^aqfr(87G`pm+AXYm2a}5)_F_L`<7J-Yt^tl-!v3-45PaiTZ9o+Di(W4Q5Jmlb zJ^gaG5)efJ>jPLbM&&Tvb7VK(c>m#3+9u%HVQ)O!Keli3PM%wHL&7-lbKztUJEY|6dk|YP3zD!Z3peC+JBMXRaC)iLRx^c@vr?o3y}Ys(`pgIOPXZ#D9_l+ z!fLnZ2iRnAfy5rM!9XC#lGPzwJtggbN<4;Lahqfy%@N*TYuz{(x}LHmx#O~H?N&jb z&IxDZz~y^uCW-tpD!PqYr9;r3i1Rz1cx1=d1w@{AVx44pown~94wUEc1KWE0ZPg`_ zf})laaU)IPF!VSW@q#X}-XXsc15{XnFWP*Ur!~y;Oq4BOb?yJ=@+P_A!)x_j{AIJm zeu#S+fp>+p^Q`sAUduDfo8)s7tj$+;**7+>V3k32ixi(%3(ss)WZ`_qjj1~ILAgJb zBoVxjxO1D_JAO|sSsb!nCU*q%ogrQ2khPPad{WA>q-`rwZ;XvdO{%PjqsApP0@PTn zcOO$z73J9gDIq0ptPIeor#;9g0hAi8vn0gkS7a5SQWN{{5;eKl==yhdjOLWR^nxlt zrRHb#i;W`C>K0;PQUWOEU}wKt$x?iWpT#^v_XU#laDO6A!&!n^HlWqQVOo@Z<<4U7i*o|J>5D3unP*mC*#vMi z2JTPj#_VWnP=E^>9v1-p!Z8FD9MPpB>y%{Zu^yOe$6cJHBba^LG!VcTQNUS z5NX)hq%f(bXipq*)e=z3rN{tExj{G+fADX}lBF#hr#;&O%;5T(`h#%lfB^yqkibc2 zLZTVxWb9r6SAU867?H|zuZL>4zv+uZfu=Um*Fby5z1J{VS6{+bzB<7A3Ezo|hmT$p z!EUO##O%PvVqzVC4$eA;wf3J03N?14Fn9z0?fkb4LtWD%of1sgw_^}}`MLgulGP$l zaJ0#xac+{}4<$y;{vV8#?_xlw$C2LUQB-3wljXLBP@ z)tk!Rsgrj(!eJtfSPmGPLE zlF|Rb$NqvZ*bey)lN$|V4&BS@d&a6#!a*q@bA{>mqJZi>(KA%NvuSH6+4(8QD7jqJ zj42;2fp=WnsygLq3PNGU^Dx%A4zqV#0eJ?BjMidyT{*l2b8;;{AX)}-OIuh3EdKbG zJ+hxag%hIa`l@ZBnt!l4+2 zJd52cS#-iXjZN;)46XI|c?B1u1g&cCojzMyno`&|%nr9ljGk{mL$sC;{8?EK?@Z57 zvO4&^(Re@EWXTY;i%Aq+oP%erztjvT4m1PIT_=Vf)AdYV#Dld(k<0;%QAqTz@eeS@ zvt2s-xmJjC$9RNRFrIcq$I%L%!kc{Sp@#!4d&H)0F=#k8)O1i2bw<>GQ$@DHt2Mg637D-%`w> z#3iXGI^ULjx?upWx$$yL_~9C;*Hcjs8q?5s0uLl1qzB0Tp;(Tw*I)*+j-CvX#oMSp zub~&DS}QV@m!!;1h}r{($JOxtBH&9-Bh`NN<(}~m25rkWd9{4wI9W?BwR2eE!fu?f z_v(*l1*`e~%5Of{s`6&*RuYRAQ@(7wavJlS)l7Ex z`@8DvmR7QjDyq-4Ly>HIu*86$Z>31H7#uM-DMA7{&?ITw*s3Mtb_ZR|Eq@mhaetKx zeMDAAw5!GtmOK`GEaI1B6!AaLC6|rw7`-hY!ULZ*TEk>^YPGZ?eO@%oqW3Vc!zvX# z@G)+_n{Zpfwjw331WbCDrN9h?^R!=i_WxMh98a;Ixx!5)*UxrTZbu(X3w89jFgFF9 zY#WA}7jrAXkr$sAfMYYi?+Fpm>_UTiclep@;g(2;5iUvrkFiIl9Q z8@eqG?1gc#q{($omBsPY8gsyPuZH4jyV96c_E6?&IW_#;PGKZ>O z+Yoi$UFdd2jZH*168vlVyLkc&*sNp%fAtBx3w;9UIMBfv2pueb3sB5}b) zdGdd3ej%<@f`2W3$6tG&NZUZ%#m1_y$eWUHKa{2}FR>Di^<6r>8f`@$`+e%ov-M{3 z^DoQa(#kg>DK^#Mt(c8mLKI8-z$gj#*h`5rg3}3x$8+x&W+x zi6)Q6!m%SsZLXPP39m87mFe3^ zGX|%*GHETrc6uX5HwF9zWpQIxtCc~=FF%}gL8@CWaes7d1sAd6n}adkh{G75!X##K z6f?7+zFE=12GX%=YUk}QNn7%71RlH=(@I>{UD^ugm<62ItsqIQfUBn-eXsXXz?)(I z{k#jg!B;-qW%_yOXOcZ3n^EN1OutA|&urwWmO83dm z7b75_=SFVI9>svsK5KQ;d8zD6qRfx&jIl_PglUIRG`MNCic24den~xsW@ZbwkPjjF z-7@Vd!E26_VX7~y(AZn6e)o+w07lD`Wd;$g_vVC&2B}FqIn=kPiP1RHAq*kqyC66r z&hShQ2qUH#nNUR}glI`G5c*4=?WAW~kgbEqc!2<0jx*Klgpo|kx{e@pWcostVb^pm zt%EM{;FXNEwE;YmD2dyg-av_)|E>d=n#`rHzZe zb70^;K?hb_Q+l7v(B`9aJQnl)DY3+$6tl!=VvyKkwH0W^sbg<~ZUnGtUJe=#lG~E+ z47Sg%N;gTTgzRx(4GPn1)K{D|nx9?I*wW%+_8V6F*KxKoX$@UOl#aIdi6*;B=JqhP z-szb^Kgdi&U@iaC#F%J(3}-f&6iloXL%#g>C-?aEhvZF)`9z!TFH={^;$Hwf3c$U8 z3;>SN7)G!e7fdxQlI?#p99-&$@R__4(drjXser4RDAF&W#xWO65AzhAZWftswydB)whvsE5a@ZB3m1!Y{E zQ5bYDri9{<0RH=r;hy~ZFUjaM9v+fQnHY3L7Lbc!tt@9u!2x$z78lgiONws$oI~P` ztmiL;C0N@m+Iuljh79mRjPb-meIj4WyVI4%?Bzh6@?> z8aopSO1gxmHDqSC_@t9z*U6rP+b%+SI>e*jn)C)7L%UE-A_wDKxs2yFh5Y7a;Bz70 z%+-ojJxa#dSijXc=UF zsVJTzvwr1pP#7v&Qf$FdzJ~oOp`fQ2AN-Qss3YgHQgO?9E~lTrJ?F3?RcVug4Goh9 z*Ux~8jIwLD*q%|af`}4WUqJlNQiP41=hRK60Feq@X?E68s=ab}vOtXb}B{Fzb zJ)I8W>|LD~`>u1`&_0EKn9;yO@_WGu%3X9fA7slMB1_VfBqD%>{v5|QTtJkFq(f?) zhy>tezcM6cUxR&$#QcuN@PZi%JIIW~M5oIi9Nu3;iJ-;aGO<5Tm{7gbnd_XVGGyU0 zQGD&RvYzFf`aO=;-cvo~xoTw&sUDe~s=>B>OoHvVwWK&&KIK74zh8C$+}1*Cqphne z-sWKnxx(5=-g zr~63zRkEr>XmGX$iPQTgQQjfGSws5U51O2pf6MDpmbc0CbxhS8!@Jy#A3R)7gSrJ@ zQj4I)cUuyN$o$SDt)YTrBYO#ocDIF*>PgN$Tu4b#zO&E3TmZe0@XbjP;EW5*QGP@C z{keG0tDJW@UopLsvhj=+wECFo=55>Yh?73LA)oi{OUI9{IDYS`OnR1N`H6g;+|a;J znpv3qNX4dJohx_4ec+9|P`^S$z$e|YF5*Uk|0KbV^W|fLahHZXv z<>RMwMwqCtV!ue1&<@3Q5K(xZ6X>JFK+S$krJ#KR9?L&ZBrbxCh~%o^`Y8kpATjN! zU*j-Q`@ROAlcBI^zh?{@rwOni&e(?IZNO~sNmTg<8U}OaxA2nYedD7KhNK^v4a)kx z3B|IM68PKWNrOJ2(cn_r_vd}M5kljBO=$olG9CSht`dyPkd!AYKnF-x0dx|wZ<7r9 zg973Oq%z2c(M=_&N0LM6dc@|to}ew$0GUNe!!ksJ2}q3&Hw{rC{`^PNCUyi}$L$22 zu42-K1c5&w{;(H>u}RK$h0cwuYajj$vIuxfy+p^=tvtd@-D@$-rb|i}6-(=)6^2QC zCcW@X`Wg8%jIWP?pI?S<(3XE$TLrWLYm4c3;_9!&!x`Ma&=F1}Q|NPB3TBH+*K(kD2+@?F3Z;5 zt{^GhL>nCPf=T~1MgYPeSbaZ6!9*hIULxt;X|#U_wggK!Jw$b~30o}JrrWdk6)8;g zGl{RH0@2F$EcoKlQ4J`6V*r-Uu>ks*C;&ERjwY3DAq&am4lKuQuzJ@+CK00tte?(Ruw@xGRWLM5gvVdbAw!o)t4 zeEc;lfRF(zZ_k_&a3=vU#n9CeN>*bvB(6F6pIBqQajW33kE}5cnh`o6jg&+cx(d8$iXml$ROgLJ1vSh>ha72W$4jlO@hmJ2FKAS3~alGFJ0k2}GT zq?eRO&&U9x*8&#qV&jV4K`=v5uz)ZTF)CW{D`8mTte;X<24c!FB!Ne^-(NWy2s08} za`^$yh%E3#ulN@MZr8-77lpDw)Av)PURLjbQKhNT*RGYHOP?xlJ zqmDr~8Gt?4q$e{cGuhseY-l0_Eg!4HLvBfxX89sukZhXH^cNXI|;s>hdlxvuNeDtke z_CF1k=t!QY8H{Xu^0@}@7NiGUE*>0cujve9Q2GtHa9f`XcZ}Zuh z`VrYzfKEaG_?pqQ`_pKnI7;4<7Q%MqlsmJU$i9PD1WZI3GHgtvUR6CO=(U?d92edO*I(3s~PwyY1(-1&(>i$b~%6uX^C5mMMcR8dwB#2Gl z2O}qhm=1;+Cdn{1;Ke`Fj)W{CGGKz|)=|6p&RIHvW8e2Cc{8$nC(@e3{gZBG_i5k0 z6cl17*={Hy9UGe{Y;xW*5rswREZQBV4WT*x0&n})D^J@|^KPrnfX-{`sK4dL^61<0 z+5HS|u+UaW`S--OPaMywNSMsjKgnXyc&AS_+uUNXV1+`qFB>@6~g_FZe2`bs^X8zc3>N z4vmWF>*<)(2A+1<9R`|3yanTpU@N=$z~}Afm1_S(GtwA+VR4|m`(jPgHx53^q$dor zRo#LVn6>$*T=zCX3!1>Xh>n`_|}ppyKyk;G8UsHKD{#++AB1p!vlM( zsoZ^`o$ZaOQa*B^*%oyN2-$XmZqd(N;2Qn!^A~Hkbzu(f#8@5irV8nK9fucF)nkST zJ>Vyg3R+#pxo57bOQ`*`dkQYxMhTH3ulxARe7f&%P~0dS6>C4o1~vQpazuy3O&qTH zFI*14-yfv87pU@^pCGPrzJcg&Y7&awEx0N^Ourbh#NAY;FU!-lwr&l+XKUmi(49Ns zo>(3@I~BWA+q!1(1Un2wisSWKO+q~D`CD)9*PPui)^-itC#HYYTj0%{ZPlZOEtWB~ zrs&M;m<;u9xcIO*8~%1TB2SyQu>t2#&U(<5WqUhmYqi|6Za~lbAdsy)wdTm}^LxXq zW2dXLE1)8?feHq{Li@BX=HXSDV*^aCEEAntmws3-{3d%I*HPeO}v0$ZWfYa~JjN-Shn+ zFhi}{MFXCe_u_-Qn}b8m=69@%I~l^%x}Rz$`7T!(iIf$Mkh7Q-qBAkhw0l3+s`2@~ zo+vm5%aa~XyFo~~CoAg(>e7HU!@k@ku40k*(Py;!j&8|lQiWL3u$+~vTShf<#k6-x z9_~amat+#ALyM3jpHC!Db724 zRs2%!8Az>nk}R0NCKPRcWj84AD%n+)FMX1fp%fWQTgyn7IUP(>?x`>{P{e2F1r7=Z z7w;M$V;a)Sdj2dhQ$3*7eS5e*gFg0|I?l>zsV*HJ<{{|_qts*{74^AD726PrJu zs^x}CV!$P~U;}Wa{Qz0}?y0By`JH_-NlM!*v5G=mJ9PnOSlll& z*)Y+)_jp(tp^;u*e3k zSYvRP%{t__49(5q>Fw%%RAC%HSINy+c7BVk%-WPcX#>ZN)TlLsNI)7&L5lJV>L0UZUwh|Ihj`RZ*XVCbi=jMSTW6g`@Ty*O06vl3Xa?cqy?vi}8cyhmhD?9uCrqf=XvkH>F#jgI(GiZm{Rl zvUeF0FBAIVVtzam#w8>Ff(e0n3jB`_Xfn3f(EE#P5kWqkgw@hXmTR%i8Cgsg8<}*R z05_DI@HzNhhk18e@7dYa!A8-udmdoDPwteb>nJRD+`L#>K}5LSEY%JtT%G!wh8m~Wvz>A{u*Hlnme^eBi82|SKX^y-0CP=H{u`@7X={P!C?T?j2m*-`xl0Y{%87rOkQOH`S#Lf`5(e+`wa--TC_R z%YhLYZ^(^#)dF>X_Np6|*h`gEZqzN*U|4M^;dXvrJEj#Xv8O1lWb-^RD)+Q!)1@o8 zMz-VAhUxV&l#7@$_#npArbyeVcjt8fWr9M}$H+(Pwrp3!&^iG-CJQNh6{XHX+o~xj zV)180In2Pf2p`-0&&^1@BCEI;M}oYB2c=H_R;%alvsOlqHZS9+&i1!mD=xw!1^9*) zy2~BpQQd-hgb9dIegt(3t*Qlk8VOu(9gQUfH&KW>$Dv;Bg8rYfzB;U`W_y_KZV)5{ z=~No&MpF9FUFXmt(wz!OOQVv9=1?NtQqtWa9n$q}c;9<}_j$g5&NH)W?>%c~&02G2 zX3-P8S8dB;2h*HvB&pJz;JufM^r<+1EAYfrepQGVe<&1h98TA^Y~ z`?K<$jxGsDCyQ9`Y?O{>^+T@*9q!%i^0PX=uLPt`!rlIU#DVwX{yAbJ)Z4g!{rUf1 z$cPlMY`ehDa#x)*mH^`x%3%#-vayprll-j7}^fx7S0y4=Z&tN7b~h6k6< zi$CzcNf}za*tK3x(lRZ%#V5KG{#{o!}r2B@=E(RB+<8J?lwcIuB3+YbQ;dE~J zlOSQ*D__pag(HSOG3r@c@e^UkgxgT`fRm|)7&Sj8u|(>A+>P*)mMTAI@=~aoQ(V1O=o7G{pq8A}Tq0{6)T>Z^?4wrbF=csbulM_utss zeVhsc*@7;~KjNs%I#5H0I<&`Z*w*FmPwFvp`_*x*aQh!dv?6qlUa_4Y(Wm#~r3 zMf1N6JI1a;%WXkD$YonRX&F71X}_J8}@Mj%4|T?oxwa=4ghMJ?run(^2;y{B`D)Rf@ng-(Q*k%SGk-^9L1WO z@6QW42@bPMSG*E~9|5mA3rHX+1_9B6yxP~S{g%|6)K7b_<8qvq5_1H$4+(M#J&DoP@N#IxB?5xrkl~{| zQJGdt&6hm7`Ji(7y2tTTlo?$c+Fgdb}lG)pxZX5j{a2^T6WEq2M zo#FrCu@l|Fdy@Gi1vw3l-+6C@L0G~gXiu8Iig46N>D0QK@HCgoBYQ+hMBPBPoiKzE zO%*STMnuAEbzvpaV(xfw$v00x$s_v_6m*2N5~*T<_DHt5f)0$XD@p8~D#CT#Ug|h8 z8&AVS$UTkQ-s^F0|EGZ^_c*XL(7xiy)5b~CgoC%)MZp0~#Q*UjFe7Q8?HX8-KNGn0SdEwTn!DtY2$3`; zl(uolqs876@MDhPqFyj1M9p+X>(ZhR7sm;t1Ujh;+B)81rj-0?rOz0@v-|)#<|72w zOFLe_7AHj$K2nS+0Z_J!gsVMuqHd6&kK6Nk`Kp~6YHa`KF;y?_1zD#vhf$m3-G3}S zyYsH$PsQp!!~L{CA+HpdZ1Vy5W_>!R{eT4uO-dp`bQgkk`d)>&&oqn@DtYOjb#cCn zy*a-%Q=yyDNct>qu}Pm7k{u0ew%5$LH^pm}<;j2pq``Ued?6 zz!N0cc*@g7fcbrx>A9(AP3usg?+Cgq=@}#xgA$RL(KQIZ(l35VILf%v*O4ut-?S!A zNTB%_8OdRQ_K0_zhOR7x->MEP6cc+g3g?tQkU!twi+&w)_Q!Q89Sgc*(IQrryfE%m zGbKzBgF6+a^y9`!PUSME(Qk3C+#g9H_66FlT_7>?sV&zK#bM9h^;u7z95wYhE>7v< zD5HIX`?~$>oy523X#_kB?B%;uLy1VR?Cn%$1q#86O>+kO=cIiE2@Lc~^2u>*w0e?N zUlZ8$(gM7^f82kwP+&6>NupO;RkNz1KUYY8GO$%47LmDq2~Obm5NE- zWvb{u?sL)ToxqMQ+ZnEuXjT$D!j-{? z`Y3ZtGQ0DspV73^=W2%NYI@M`E{8~={RbDHucx#Al#P*~vn|x-%=oe0{xm!I)H{Az}_ZCFGOyh%0^@nqP65$y^FB^nByu{b?kLQf0no5p+`LV#N zavu*r_z}uY{^&8jXob59@DUfKp^n4tMP1jCxOW*p|06M!BJM}0D23juYEVQYhPefn69Mreko1%*ERSJ!VCXK;sq8ZU04 z`Lp~OMBP1E{i1elChhK>NhK~C`Qd{r=lx`#r8a)mi(W;Q@c@ncVF!E8-Q!vSXSPNTzd9Oj=;NzTyUrXKDi%Lt}<=(6L7mAG=BcEN+4Oec^ zdYG3!`0P>a8LL@W_2ArVUQ20nh0#te&zzW6*&;Xfo13Cc+a-8Ug zx=KO>R7XnVmyU5QND2Hl?u)HT?}X8fXAMk58^>BV5f;DjkzNYm$y$sHr%Kg2-=#g2 zfw|QTloE*Ong1$kh#=N2ydFAuc?^5OSHepIDbKJxbpmd3kagY7X?XY}h}&S~xOFPM zy=Qu!AOM&PHaDYzDZb#lnh7)3)$Nijyq#SFNn0nAJlDpCI}MR)US<>m#t*nLd9|NP znRuBH6XE+u{zkhG;X{5diT%OXP)(APf0Oo{*8K==ED05S4A)7&{PHFIh8p}!_-{eL zPjo8T=Ky78gfL!4_!bHtblvw}ewH`|;sV*PIi1d1GD)=L# zwd>~GP<_LxQw=&Uy-?J%6l*YGuo5Ajbf0Osa}yA~2OYc3Lr+f2h8K1HW>jIYTaq=C zD#hcK-i7MW%Xe4HnkwcI1V8%sE5eW&kKw-xeZ6#u)KZeeS}tchnMi8yU&1}Gs++3z zNj*KUrDI(TlO3DcA3WPL8#;9_v;O_eMtyW~OoW$%-63byj5`duA7b6ws@&0fNv&cd ztUilOR-duB7ncL#TiHT4RHJe?{uQFv;gYWK^7}KtEcxGVlEQCKeHIWgTnz4l^^*@$ zdXf*;qLU$lwv1jGBW^c0Z?3S0mdJvYV7@&*C@I+tSU4#BV*UPCf$y5L?|)8+%?hT+ zbmoOlUY;IrZym>*tjKkY=IRnUaZ#uym$Vbh4yDJSgx?*16$=8=Uo;M^i%?}|>~>dL z-=M4EFrg;eGbFx)IjOR^uVf{Le$dXzAnStbhu;Wr5f{v%1Skql*~p&=$7<>UV1p-C z2<=8q(R+EpuNnO$7)inX5*zFMuS+SlRWg%6X{&p9$spTK8^M|kA@(gt;YHXkMcD?B z8!}mHfW6k>BqaHnpJ@8uY(!VJhT0+n;S0Qj$+B6e?(6WR*#nA!={|d()mHvPGK6m z&nd0@q7;8}`m!wkw2ezQpO1G~e3I!xu+wXnsU-=xyCil*_6i#txXDDbUhK%FxLT^l z`5V3z09Uj%&sea9#T3L|={?dZ&Gt$LY|FZtznkiHrgq?Ju1c%ny}ETyLP?pjimR<# z+$z1o`e$J*$;aR&$Ggmdn4oFZeVQ)IRUYRwcDJ;j`TdqrjtN^lgs3SEt2}Gqsh%fP z{ab*XFr}y|y!EM`PC^P)uRgYM8GPsC#Z8GE&|FY-P6Nok--d+^bXpd>rm?=uq;g4P zjU{`;uJcq!Q9BCfPIC^Lq%^oB1C*P$OrDaA?j>=16`ovpTn=VbXW>1l&BwVWX~?(F z(2#X+huhQl&#PNT>O?yvkLPJR+qqXmagU;M!Pn=BII z_hxkYPLAV1c~Sr3yX?VR+Fti+E)5K)GdHBNV{dx0g(!$j9Yn1zN=JydaU!J{Wazf* z2Ha_KHUiz&c4KWMej?Zr$&Gc8fzg3@**Pp&tInYLCKcM?;>^HOEhAHMRec72RT0)K z;$fDCq(Hs4(jBf{GyQ6*1ou%N(^4*N%NVWgA)7h$x)`g{4ZU_<(^7ABZamhA+Knl+ z&VKI#s{9=9GWVU0rdOsCl{va2XDzzT$jUHHy%FhRRn3yzOT1-T+k``p+b2kS@rfYrQE02&- zQS_FGj;Prbw!5p4j%83)Mp>=aRjjZ9a=E&6x;53iGm}wR#w)v#;+@+*J%`-k^F8#y3qN z1}V)9zlb-BKQ>&O39)8>f1TFAF+{M5;c7VYLjWDfc;)yowRXR4;v{l8E=Kv6g3w!F zl0-oJvqJ%il7GAKO6Jj!4&NKJ%FJmM2Ww$)LEX204{siDffswb2Zs^i8Xb1zey4|- z@Dl+e?A=@*&o2)v&X9VQ=4kw}$UmKKd@Uaw(YD76XUWloEIlx~%~kraiTZ4RuK(2# zPO6h?;{N!m&3RQo*(oD>W)O#VNQN_VS=xz(BqOUZtQ&J^j}1QqO{KY&?8iGo>jC|* z*TQoYd0K(h&|EEdT`AtuaEDsmdBLEWc87`5yvFHQh}O~7T{E!ZnWz+H-l55q9S6e< zaMuiq04Rffh~x>m>foM?8YT#85GM7MpY3OtFJ+%3v7f5~_q4%GKz(;X$Mf1A&${N) z55eYB=X(5SXXK(k*cT^}96>6s9%%E)cl4_y&e8QU^K=mWy3Fvb2#_)d(!Zd7qPnc) z^-1?1y&eQ3?As)6bBb=P-fX z+wQr!d#y!jDJ7;EawUwU5+(18MvyL|>Ps_hO1xdSGhYGZ${<~dQs6K+YXos;@hSaJ z(}<)bbC7x*oHiV5K&@qoM!U{RNhxKC=d;kVbX6Ta!E@y{5`Y9+BH6Fbq}HWhW{3D7DRwsmbrmy&PwXU!wEh9n=m=FK2; zwvb?Utxdi-JII?~?3*O6K(lezrGlQy(G9*ed4@z@Fwz{z8K>er`vHmPT+JU4Rurvc zZP9y_e$b3>@YT7tx3J7odby(^V+?_C(iBcCe7#Yke6y*96Ky>P`hm+%wGx`=jCH${ zX?+xV87E8fG1io)Nj;arSu3G!iP+KK8l)`V=_0r++=}($5TB^`d=L@)dQET)<3O>Q z$OM@xC%OZ_tQVaKeioD{i>|3q)=O3+)H>kE0Atu|4jnHGO*MqEop2@cNZM;hqywCK zghimO1(uM=6CTan9{NtK#7!BtKmL7@+(vlg9J6~sWd=+%H3L7D76v=a6*4wXR^MsH z0RDQ_3>O+`7{ZAks;Yk6pEVIUq^2e(H!k&AVr!KR*sV20EZN;y+-R>lsWq`KY10OY z)z@(!+aqbTqce1OuPNCOC7;&XWAUhU_uwTc_}W>viKy^<&o0$Wr-0S5vn<-MtIP~g z*%OV{7H|#gUhzD3w6KNF1_`|faZ{8bcm}ctV2juN+Ps=rnqtj#fK~oV` zI2~V;k_xR*`*@D;g2J8J1AYWB3{WVvUE8#zVq(Z%VY>JwDFSTvHOT!(zcbZePexU5 zEp?y4&lBfmM92FrUgRuutFrbj9A?$yGP2DMC01T`z0%a%XK$ zYljS4*Qpbs@PKHKNPsamfxgILEh0?snBvRum&Cgyb@4jSj9k^x7u6fHS?iO~Xf3Bv zL`Ns|-2Q2a%75g`UopK7z_SBxF%Da6o4(#Sl(OGCwMlfB(4HjT|Nqyh;!$Oh^Mlme z3QflO!5e`xU3q5eAZzt^>NSdNb`%3Og|-nghWg`PbH|m1x|(b(B*f8C0MU-fGsje! zq^1&=aQfo;pw8S?HRnS1IRdIM45_4fPO?vGmcU`*;wzL1WvRIfn!<8AJ~S4j38WzX zAy*IioMb8nIO2d}oE+IXmHK^IkQL&1mmY!|d|~4;w@>j)wbTjYv+#D_Rw#*DJxZSz zT&R8F93_U%C;PLk!hTG1i1O>YtdHBU`3NL8%tqt|81@3nN3R9VKuEA4Vp1^VT@Uht zijMKtyMHYg@!<0s(ppVDT^;!81k&fPsTP_7*qRrr03Jpj_R* zy=61m(wMtWHg(P=y;^D$w#WG2LCv}_?`@w3>SSMqy&^>b3~Xlf+z#gNM;ieF821b(#Q73|aJ>P+LOzQPH0 zw>shV(7imQc?1Z2owE7Qt{k#;?Jw!pG!01${HdQH-|F5?L$CJu6z*Daoa^dA^I-n@ zeV3tXr4x@CJu}D3I>mi(P3AM{j(xCS@-%1<>N0^|K4I+c&90Tn`??rmLa!s;uIi&5 z_NU^(_L+K3Lc`*c7jN15=>xyDYnT>6&5O$FzD0a%%zB%g?io}ue#Hv;!9Lj;`h=~} z)Ma5KPA+y-C-2tSIKW(>O=PK~p)HEjl(!q;b4UG(puuo~+3l(cScVuoQCat~k@Jl} zD|0S81fYwh2dEFcAHq=|ugXWtLr|ZP7#C>DcGx;icq#R$diB7<#w+fO;+H0=mL_MY z9c+jLJQYr$(|YK~S=f9O5;z(rGY3D-%>g zw}PM4DiewWL;jD7_w$LJH5jWph#)1vRStk|1LnSSFPW)fxjfCB^N%y9+~dr-H|gWC z+Zaze;}`TpW|7XZiPkZtI?J%CZs35xH~Obmv19(e0WC$DBXD)eQl4W{lS%;ezHH3C zXt#7low$C8V%BX(QF~J$L^D)A&?BvqWy5nzCBqhKO}Imfegxof>}O4w7Bf{^cB`#u6rOn8AQR99aB} z8nMuhE>sU*+n@OtMuku*T$2KG42)NO&RfW3&gB_FJv(48=Y$~7qLccQoaUxK_kq{o zAi{?4<1a*>aR0HTLLG=5_0ajj9O2GK9Y0xF@QliV6R7@4#}Gir?cl+!|LAy@FVVXI z0T@uk96)x-KYMuf>`jWT?8_uhnDxj2*f}czWXOR8)IkArsC9!AA6DP(k+=fW_5fzw z$4x$Gf*ud4f7~Nkw=WUzG=d<6IxicQb=OGTnvfd-FZjRy5%Pklw|ZNdDVOz7YfutM#P zI=Q%P<9KxHBtrh&s_sXhiNo1PQN5m<=FxJw4;_6+HX;H7c-d10=F^(Waa_ACJD)=I z9<+kbjH!Q+$D(|=*-3O7H)Ej855d-K*XJ;J*5eTu6e7`1v%*KWqB&DlTQqKIKL$rH zVo2_NWDv*oKe-r%T+ut?oE!!~m}OGZx>no>Awd4dmG93SL+Jo?36Y@l>>jS0$)J!3g{N7CjbF3lR!deaebR9NmG5 zAVbdD1vE4)Bou@?0)*%~Q(nC36pTP~8Yg4~MsX7wE+BE>BN8#t{X2e`gbBY@?J@}w z{ZryXh>v@xj{p{SsdDoxHN=5^(wK|ZsyQZ_X&*ewCKzWqIzkY9TYyQXxRc=E3@yIF z`R6zj`3gG%wx5&)Smfc8G(b;AFh6t_#NSNkGr!94kR4daN5ej6%*{bjRLZBsJ?t@3lnU@WSHKJ0;@dXUct!cV!+*eyQLyn)q`1E-Y`Z- z=6akzRx>h@j@|rgU%tRTM@w*rR6j1dtgtmXaxDocITkQkpC-8`AZZkd43TfexK8#9 zasu%IeI^heOp@=Gjtj}nHC(-(7n1AxO7#fP9c@oL)2T61A_imMm57f{Ry0eFHXed> z>zw65h!1uNsf7{&wZ}DV#144{6D~z2kM3^RSi9{?4S2ogDma=z<=HnLLGWIOZAu2; zqKBjadj^RLWJ#vX6hU+7bRb=_yGgtIGwrcB-Z`%5pb9p$im-HBa z-ZS8wd)k-mlU>Y>WQL`Rq;eiRdC{X?+pBy#tGYx`0>cd7&(ek&_1mj|cIst9IAlrl zAJJxR+>N@{)~4wkDqt}Q(p{stCs4g}Ln>}~Zgg#t=gS?lqB}`cx5|0GD2{_5j*t6l zSx5YGq)N?N@GE15|t6>SH#Jwn?Xj*xS_ zA1H;BKyn+JDGVAfY?Vx@qaD^qk4a2jw$(mvXISOdM%K722Quk21^2rc+jDld7HWvv z4yIZ0aHpRyOF862SqXEJs-Jo=+XxZH$8A+a^IVl@n1>Jf(8$BHE{F#~;}3b(j{QXB z-pv+<58<~8+y(~B6BN?eN77-62LbP728Mtjz*5Od@`5bw{3hW6uvCI{QSuZG($?e8 z?;v>!j?K`v8G0n4L6G=^Kw--t@#fJW3vlEPWGxFpn1M^(j`r1Yp4eS?!+V)W4ILcX ze?`gePv)Z*&py>aZ=3XWdz#fJ=fysuHedI&=}*0sv{lY@Tb>@JNFiX3O_Wu1R8cI* zyHTh6_D=PCqRNY}uQe!`p@k#yzvXS8%CU)lHR9T-0Lh=h9Hx6$7=e>NGcxS7II zCV@q=?QfPB*oJsx33JR=vp%o(g??^L=l0cz^_d$vJ=xCv`^l}6;RjerD_$R+f;@JoBiWi_SL1}2 z;{aFj4bjPN&|?r8f+eXP9`_hT;;#ciBn@KR1iS^m@sutQM8cl{L1ZtSMe{t3kRIX7 zp`Ae>{BhoX38`(M{OfU@ZzQ92h$DAbimpc;p6%y5ZP1y0CL4ZMu7>RZMTV4jRr0p( z^K!uu=8eoZHYw|LjCW<97BnY~f?1;v`V31x%wXZt%;^15H20kYR+v2D=6Y z0DhCQXQzJ#h+hc9gnxXGH2tPSkemT3nBCTS8^&Svv6gRC-(CUg%OADZiVO;dwoO7i zC(TY-c&CNpBcX=W4%jdh5G#vY1@AP)Q#lx#J*_TW(~Jax0Opg^v>AMrRXZL^#e6@ zkbK+@lvlxNS|*z=b1Y1+63P4Lh59qZvRHF}<)tLZr@df0P2lO7`-o~8#v_%M`%BFV zAkwq$Hzl*g`Fha5K-_fBM9>gppiQ5$@cO)qy*nC~JmR_0aXrGni(bZ2 z2BdVkzcl6K_)O;UoV0dX)p72a(*GO!ciWwpx%||j%^;C=45|q`wIM+>tmYOa`eN{W6O-w>3KG#L?cB8LRiuP?(4p{E? zbK)VlD~`mTYE#&^yno-`vvxr>f9PhRM_y=WyZGFjzwG8Ldl0?x`|#oY@#SXqrs=p? z(dQXzov91X425!`wv02Fzd^L%9WOO~{~>tUTk|^@!a3|#X@4bSM|sVlU?(?vE%*J) zUsleoz1@jBz3SH5cpebtQs2g)aqMKJ|FCW9W!T=Ln!Bk{PJgK768&iCRegoep6T)B zUK1$FM6w!5u_kC$M&>Oj>ZS)g+2kvjW?4==@n98Eh}rBoB8ndK#G zka8qKiA->a&RA`Bw5C;dej(T2(x5Tw3MU}8XfQ0oEuUrldeovHy;TMKr)E>X*3H#Ve369>h5o}J_CNYWrj=WYx z68v^vO6sjy=awRQYVArM`gdD-Rf0RV#lN|+z9mJ7@SE)&vyoXAXZoV$Ibs#2tZcTM z(9POF*V&BJ#*gg;64l$_-CGmL0g;%yD47bg;`>;};U4QZ+4lxmzpNSWvn9?wuD)Cx zPVK0>kL);!Rp}Rw@}%vCrRVR|hSJr;dy%HyuroQhtexU? zteZEdH>|H_94RV1N_3nr*>_RD!`!(ZsHjVQgrsAB8-o}puY5ip0ecdMyEZH*m&<`Y ziP#qSd)0mv)cg1Q!R`$As(%?bmVK^XP89=LJceVx7c5EuSR`n-o= z%gJ`Z57<=ftbecO@td@Ox|7;Cf|}G7eYNLwDt6-n*Q4{|A&Khjb+%OM!~TSx#O}f7 zjjwi4%El~Xb=N25hb{UKH$%g|=caRY&csFe#0tfFIn^U zvP;UBIDs23!_Us>Z%Pic6TPMlI8{{&j3GavHDO`Tq&%eR@7D%4ik!?jWA;T;xt^c( z5XSe2?Zx&qXWk93-COWL)}fbe$G0s%uEbV2e}qdhR{vSZ*1LQ2;o{f&mj&s|Ppy?} zOh%27*zI918C5@Dd1<3|PCV;q8@%1j`ZQ{=WZ;->i5qFG^Zjqtu9GwC&~C7eW_9VG z1>=k%Y1d}47UuhRHMv)b-M_B?jF~=o3EY2qYf&-wEEeTXy(FaVh}qQX#zt`){#8AD zmR6PU$rSZz)7Guo;JxR$@zl(loxdkHGvh3Z3+Z)5^4#YFOTnZO|i7DL-l(YWyl z@_`)kfrI5xBr-TGI21l4l+{*`XQ}Ba6%)2(p&rZmDC4BFVbkJ;G1ws*GvXM}Qp-e@ zdMeIFB889A96hDemDtwLOdj#0F%aRkxV!=IHbd$dI4zSNa%Q|b?PC@Bty*)>M<5_`&~K$c!b4a?5BzD5cWG)9UMf)$C^_N*0gIWTsZIsmm5vDTUus6Dn~PM{WQ6sj9g`bWeg zb~$kBsFl?2F%=u-FV%%n->kK*PvK5R z(Ovr5Q<14fzpg)gfgSq+g?c!^y7iSq_bUt4#B}d4rXvT`;m6j9vzAYKAEsGs9dV2` zHqmo~2GC7kCZc4)537AZ_;#0->owHz%4YQU5mx3I)+wr+2qJ)bl(kHLghh3RwI~cE zQy(i}Kf?lE4nU3Y4C8@??_uv2#=hR-{qxk`R{}<7LrY6qb(O&n_fm`Knd2oS8>WXQ zG#@R@EO~D)bNEGxa9L!!s3Wv1n)Ewo2!BZ|T?_17bbr2&UjHB~H(| zf^-^luM3ntm`gf>xsCi6!5h9gz{oAp=!Z3PWQw)-oC0URv*J4PNuK2i9kKH82k~4I zYC6t1(%xw0zUV>6kLrXb_4e>F3!+GfK;&xksx6|%5bcG$`CPO!*$yUH3a{fG3b#lR zUI(JtTb(5pT{Ogq$}4no8Wg)K=6l>2dbvxSxaGP~4ZmksDjE&Guk0i^2!NZ7()mcd>BFf=BoOOTk~2Ymdu4q#D8 z5TlQ)y1d+X>b{ZWQ$jld$@*5@x25RdCcno{^$4gS`=U>g@4ZEheSTiMl!O!k-w9{t zMsC&_Scdl^f>78@JqDX-HjG9#2g?jegH{%+GqvnzN`){wp82UOw>TD!?0#DIxm3)m zAZ|pij1r=m8;RL3>XAS)0EL2w_#_UF+bEQbbNB{EWR{qp^vE+nBMW?Z>FeIE@FzO+ zcX%Boi&r;I0$7wNIQeNEt)}wMWVt^v&Aj5N8U?Vn zt#LV#J`546cpxBcnajwXj8pXnHf{>M z0)UVmpp;Gh1V)*7yuj*-#G&8xhodWj0171{pq&8oAD5+BA-PmJ+=(eOVO+9bvCO44 zxWjO}f$#tF)dY*HyL-zV2rpx1tHppC3K?QdrD!)()^O#cW**x<@JSU$wZL=lVB=4OD4NBzTj!5yIc9MtZSyrMvEp=j<+ z)$OM~hxp$vSZ)`SV(kwq=I&on1U@m}lJW&{@R#>sBip#>e>xuuWpENV9C-kico;fO zhZ2IY8Te84R^qbvjipEyNFU$E;a3ZEBUr4LGiIRz@sER#B1#;5Z{ZtwB%lVz14pi0 z)3J(91;GBP0-{i8*0kb|Pi`HRBxD5*&;djZrbWGqX#F1@3X3aRAg+S%oyO~RT0-Ud zcbFi?9^b~xNZ2rPkV(By1NWNM_p^nuPMAsS#{Aj&q7Vc$s)G+73h?=bZ!Z4R`*%}@ xZ{ew;;JX6M#JO|Gp4xSdH|n?_NW04{E2taUDQ>pS$bB#7w;7RRd?*k1{{W_IgP#BZ literal 0 HcmV?d00001 From e2360ff106132623e00065dd73ec0343d0b8bc42 Mon Sep 17 00:00:00 2001 From: Ben Hesford Date: Mon, 13 Jan 2025 12:36:38 -0700 Subject: [PATCH 03/23] Add unit tests for FileDownloadCommon --- .../controller/common/FileDownloadCommon.java | 18 +- .../common/FileDownloadCommonTest.java | 79 +++ .../efsTestDir/clientA/EOB-500.ndjson | 500 ++++++++++++++++++ .../efsTestDir/clientA/EOB-500.ndjson.gz | Bin 0 -> 103412 bytes .../common/util/GzipCompressUtilsTest.java | 1 - 5 files changed, 590 insertions(+), 8 deletions(-) create mode 100644 api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java create mode 100644 api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson create mode 100644 api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson.gz diff --git a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java index c32f96bc2..4ea7ffe3d 100644 --- a/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java +++ b/api/src/main/java/gov/cms/ab2d/api/controller/common/FileDownloadCommon.java @@ -99,10 +99,10 @@ Resource getDownloadResource(String jobUuid, String filename) throws IOException static String getDownloadFilename( Resource downloadResource, - Encoding requestedEncoding) { + Encoding requestedEncoding) throws IOException { final Encoding fileEncoding = getFileEncoding(downloadResource); - final String filename = downloadResource.getFilename(); + final String filename = downloadResource.getFile().getName(); if (requestedEncoding == fileEncoding) { return filename; } @@ -114,8 +114,8 @@ else if (fileEncoding == GZIP_COMPRESSED && requestedEncoding == UNCOMPRESSED) { } } - static Encoding getFileEncoding(Resource resource) { - if (resource.getFilename().endsWith(".gz")) { + static Encoding getFileEncoding(Resource resource) throws IOException { + if (resource.getFile().getName().endsWith(".gz")) { return GZIP_COMPRESSED; } return UNCOMPRESSED; @@ -124,11 +124,15 @@ static Encoding getFileEncoding(Resource resource) { // determine optional encoding requested by user, defaulting to uncompressed if not provided static Encoding getRequestedEncoding(HttpServletRequest request) { val values = request.getHeaders("Accept-Encoding"); - while (values.hasMoreElements()) { - if (values.nextElement().equalsIgnoreCase(Constants.GZIP_ENCODING)) { - return GZIP_COMPRESSED; + if (values != null) { + while (values.hasMoreElements()) { + val header = values.nextElement(); + if (header.equalsIgnoreCase(Constants.GZIP_ENCODING)) { + return GZIP_COMPRESSED; + } } } + return UNCOMPRESSED; } } diff --git a/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java b/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java new file mode 100644 index 000000000..9f3019796 --- /dev/null +++ b/api/src/test/java/gov/cms/ab2d/api/controller/common/FileDownloadCommonTest.java @@ -0,0 +1,79 @@ +package gov.cms.ab2d.api.controller.common; + +import gov.cms.ab2d.api.remote.JobClient; +import gov.cms.ab2d.common.service.PdpClientService; +import gov.cms.ab2d.eventclient.clients.SQSEventClient; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; +import org.springframework.core.io.Resource; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.File; +import java.io.IOException; + +import static gov.cms.ab2d.api.controller.common.FileDownloadCommon.Encoding.*; +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.when; +import static java.util.Collections.enumeration; +import static java.util.Arrays.asList; + +@ExtendWith(MockitoExtension.class) +class FileDownloadCommonTest { + + @Mock + Resource downloadResource; + + @Mock + HttpServletRequest request; + + @Test + void download_filename_matches_requested_encoding() throws Exception { + when(downloadResource.getFile()).thenReturn(new File("/mnt/efs/xyz/test_1.ndjson")); + assertEquals("test_1.ndjson.gz", FileDownloadCommon.getDownloadFilename(downloadResource, GZIP_COMPRESSED)); + assertEquals("test_1.ndjson.gz", FileDownloadCommon.getDownloadFilename(downloadResource, GZIP_COMPRESSED)); + + when(downloadResource.getFile()).thenReturn(new File("/mnt/efs/xyz/test_1.ndjson.gz")); + assertEquals("test_1.ndjson", FileDownloadCommon.getDownloadFilename(downloadResource, UNCOMPRESSED)); + assertEquals("test_1.ndjson", FileDownloadCommon.getDownloadFilename(downloadResource, UNCOMPRESSED)); + } + + @Test + void test_encoding_by_file_extension() throws IOException { + when(downloadResource.getFile()).thenReturn(new File("/mnt/efs/xyz/test_1.ndjson")); + assertEquals(FileDownloadCommon.getFileEncoding(downloadResource), UNCOMPRESSED); + + when(downloadResource.getFile()).thenReturn(new File("/mnt/efs/xyz/test_1.txt")); + assertEquals(FileDownloadCommon.getFileEncoding(downloadResource), UNCOMPRESSED); + + when(downloadResource.getFile()).thenReturn(new File("/mnt/efs/xyz/test_1.ndjson.gz")); + assertEquals(FileDownloadCommon.getFileEncoding(downloadResource), GZIP_COMPRESSED); + } + + @Test + void test_accept_encoding_values() { + when(request.getHeaders("Accept-Encoding")).thenReturn(null); + assertEquals(UNCOMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList(""))); + assertEquals(UNCOMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList())); + assertEquals(UNCOMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("gzip2"))); + assertEquals(UNCOMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("gzip"))); + assertEquals(GZIP_COMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("GZIP"))); + assertEquals(GZIP_COMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + + when(request.getHeaders("Accept-Encoding")).thenReturn(enumeration(asList("test", "gzip"))); + assertEquals(GZIP_COMPRESSED, FileDownloadCommon.getRequestedEncoding(request)); + } + +} diff --git a/api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson b/api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson new file mode 100644 index 000000000..cf9756e78 --- /dev/null +++ b/api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson @@ -0,0 +1,500 @@ +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":9}]}],"billablePeriod":{"end":"2020-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4468.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":160}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":160}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"hospitalization":{"end":"2020-03-22","start":"2020-03-13"},"id":"inpatient--10000000020384","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020384"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021963"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17872.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":22436.56}},"procedure":[{"date":"2020-03-13T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BW03ZZZ","display":"PLAIN RADIOGRAPHY OF CHEST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":22436.56},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-10-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020389","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020389"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021969"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-10-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020390","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020390"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021971"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020391","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020391"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021972"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-07-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":7469.37},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2005-04-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2005-04-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020400","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020400"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021981"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020403","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020403"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021984"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-01-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020445","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020445"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022026"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020448","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020448"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022029"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":60.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":210.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020449","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020449"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022030"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020455","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020455"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022036"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-01-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-12-31","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020483","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020483"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022074"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020485","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020485"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022077"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020487","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020487"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022080"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-08-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-08-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022083"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-08-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2413.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2411.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020490","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020490"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022085"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-12-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020492","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020492"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022088"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020494","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020494"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022092"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-12-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020496","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020496"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022095"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-01-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020498","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020498"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022098"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-01-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022101"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J189","display":"\"PNEUMONIA, UNSPECIFIED ORGANISM\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"R0603","display":"ACUTE RESPIRATORY DISTRESS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"R5081","display":"FEVER PRESENTING WITH CONDITIONS CLASSIFIED ELSEWHERE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"H1189","display":"OTHER SPECIFIED DISORDERS OF CONJUNCTIVA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0981","display":"NASAL CONGESTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R54","display":"AGE-RELATED PHYSICAL DEBILITY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":13},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":14},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":15}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022107"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.19},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-12-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-12-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994996"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"H1189","display":"OTHER SPECIFIED DISORDERS OF CONJUNCTIVA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0981","display":"NASAL CONGESTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R54","display":"AGE-RELATED PHYSICAL DEBILITY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"id":"outpatient--10000000020508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022110"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-01-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.070-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687531"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220135"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1984-01-30","start":"1984-01-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020519","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020519"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022121"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1984-01-30","start":"1984-01-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-02-02","start":"1987-02-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020522","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020522"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022124"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-02-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1987-02-02","start":"1987-02-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1444.85}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-11-23","start":"1992-11-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020525","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020525"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022127"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-11-27"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1992-11-23","start":"1992-11-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1994-11-28","start":"1994-11-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59}}],"id":"carrier--10000000020528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022130"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-12-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1994-11-28","start":"1994-11-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1334.45}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-12-02","start":"1996-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020530","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020530"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022132"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-12-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1996-12-02","start":"1996-12-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1303.17}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-12-11","start":"2000-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020531","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020531"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022133"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-12-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2000-12-11","start":"2000-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-11-18","start":"2002-11-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020574","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020574"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022177"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-11-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2002-11-18","start":"2002-11-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1509.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-11-29","start":"2004-11-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020578","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020578"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022181"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-12-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2004-11-29","start":"2004-11-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1733.13}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-12-05","start":"2005-12-05"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020581","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020581"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022184"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-12-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2005-12-05","start":"2005-12-05"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":749.14}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-12-11","start":"2006-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020582","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020582"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022185"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-12-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2006-12-11","start":"2006-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2032.7}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-12-17","start":"2007-12-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020584","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020584"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022187"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-12-21"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2007-12-17","start":"2007-12-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-12-22","start":"2008-12-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020586","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020586"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022189"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-12-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2008-12-22","start":"2008-12-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-01-09","start":"2012-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020591","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020591"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022194"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2012-01-09","start":"2012-01-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-01-14","start":"2013-01-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020593","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020593"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022196"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2013-01-14","start":"2013-01-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-01-20","start":"2014-01-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020597","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020597"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022200"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2014-01-20","start":"2014-01-20"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1693.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-01-26","start":"2015-01-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020601","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020601"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022204"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2015-01-26","start":"2015-01-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-02-01","start":"2016-02-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020603","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020603"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022207"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-02-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2016-02-01","start":"2016-02-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-02-06","start":"2017-02-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020639","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020639"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022243"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-02-10"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":7},"sequence":1,"servicedPeriod":{"end":"2017-02-06","start":"2017-02-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1261.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-02-12","start":"2018-02-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000020641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022245"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-02-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2018-02-12","start":"2018-02-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1581.7}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-02-18","start":"2019-02-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84}}],"id":"carrier--10000000020643","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020643"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022247"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-02-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1079.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2019-02-18","start":"2019-02-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1349.8}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-02-24","start":"2020-02-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000020645","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020645"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022249"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-02-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2020-02-24","start":"2020-02-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-03-01","start":"2021-03-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999267702"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0902","display":"HYPOXEMIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000020649","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020649"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022253"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-03-01","start":"2021-03-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.787-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-04-20","start":"2005-04-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999558565"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000020663","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000020663"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022278"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"8","display":"Other entities for whom employer identification (EI) numbers are used in coding the ID field or proprietorship for whom EI numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2005-04-20","start":"2005-04-20"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000066"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-12-31","start":"2011-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001604","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001604"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022254"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001604"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"68071071630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-12-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2011-12-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2012-12-30","start":"2012-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001605","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001605"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022255"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001605"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"16252050630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2012-12-30"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2012-12-30"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2015-12-30","start":"2015-12-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001606","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001606"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022256"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001606"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"70518142600","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2015-12-30"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2015-12-30"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-12-29","start":"2016-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001607","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001607"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022257"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001607"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"63629339204","display":"simvastatin - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2016-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-12-29","start":"2017-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022258"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001608"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"61919068890","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2017-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-12-29","start":"2018-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001609","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001609"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022259"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001609"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00430630162","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2018-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-12-29","start":"2019-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001610","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001610"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022260"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001610"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00680711946","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-12-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2019-12-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001611","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001611"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022261"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001611"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":520},"sequence":1,"service":{"coding":[{"code":"63323056497","display":"Enoxaparin Sodium - ENOXAPARIN SODIUM","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001612","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001612"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022262"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001612"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":346},"sequence":1,"service":{"coding":[{"code":"69097014260","display":"ALBUTEROL SULFATE - ALBUTEROL SULFATE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-03-13","start":"2020-03-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001613","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001613"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022263"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001613"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":520}}],"value":520},"sequence":1,"service":{"coding":[{"code":"59779048452","display":"pain relief - ACETAMINOPHEN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-03-13"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-03-13"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-12-28","start":"2020-12-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999499"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"id":"pde--10000001614","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001614"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100022264"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001614"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000066"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":231}}],"value":231},"sequence":1,"service":{"coding":[{"code":"67228035403","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-12-28"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.960-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220135"}},"patient":{"reference":"Patient/-10000000000066"},"payment":{"date":"2020-12-28"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-10-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8200.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"hospitalization":{"end":"2014-10-12","start":"2014-10-11"},"id":"inpatient--10000000018909","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018909"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020407"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":32802.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8240.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":41042.88}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":41042.88},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-06-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-06-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018941","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018941"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020439"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018942","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018942"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020440"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-05-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-05-20"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018944","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018944"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020442"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-05-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-08-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018945","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018945"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020443"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-08-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1975-10-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1975-10-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018951","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018951"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020449"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-10-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1975-10-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1975-10-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018952","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018952"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020450"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-10-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1985-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1985-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018962","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018962"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020460"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1993-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018971","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018971"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020469"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018973","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018973"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020471"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.5},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1994-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1994-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018974","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018974"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020472"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-01-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1995-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1995-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.86}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018976","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018976"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020474"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-01-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":202.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1996-01-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1996-01-13"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018978","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018978"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020476"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-01-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1997-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1997-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018979","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018979"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020477"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1997-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":359.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1998-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1998-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018980","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018980"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020478"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1998-08-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1998-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018982","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018982"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020480"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-08-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1999-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1999-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018983","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018983"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020481"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2000-01-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2000-01-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018985","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018985"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020483"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2001-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2001-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018987","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018987"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020485"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-01-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2002-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018989","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018989"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020487"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-01-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2003-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2003-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018991","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018991"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020489"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2004-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2004-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018993","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018993"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020491"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2005-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2005-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018995","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018995"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020493"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2006-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2006-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018997","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018997"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020495"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":209.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":359.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000018999","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000018999"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020497"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-01-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-02-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-02-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019000","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019000"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020498"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-02-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-01-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019002","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019002"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020500"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-01-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019004","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019004"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020502"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019006","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019006"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019008","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019008"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020506"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-01-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-01-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019010","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019010"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019012","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019012"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020510"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-01-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-05-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019014","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019014"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020512"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-05-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7077.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":28308.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":35425.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019015","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019015"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020513"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-01-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-09-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-09-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019017","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019017"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020515"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4723.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":18895},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4763.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":23658.75},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-10-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-10-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019018","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019018"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020516"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-10-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-12-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-12-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019035","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019035"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020533"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-12-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019085","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019085"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020583"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-04-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-04-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019086","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019086"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020584"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-04-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-01-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019088","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019088"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020586"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-01-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-02-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-02-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C20","display":"MALIGNANT NEOPLASM OF RECTUM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019099","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019099"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020597"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-03-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019105","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019105"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020603"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-09-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-09-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0300","display":"\"ACUTE STREPTOCOCCAL TONSILLITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J020","display":"STREPTOCOCCAL PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019130","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019130"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020628"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-09-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":441.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1765.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2287.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019132","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019132"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020630"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-01-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-11-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019136","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019136"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020634"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-11-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":142.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.04},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-11-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019138","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019138"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020636"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-11-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019139","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019139"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020637"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-01-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019141","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019141"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020639"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-01-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019147","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019147"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020645"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.05},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.31},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-01-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-01-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997791"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"id":"outpatient--10000000019153","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019153"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020651"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-01-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688281"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220060"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1961-06-28","start":"1961-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019158","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019158"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020656"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1961-06-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1961-06-28","start":"1961-06-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.757-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1962-07-04","start":"1962-07-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019161","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019161"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020659"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1962-07-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1962-07-04","start":"1962-07-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.757-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1963-07-10","start":"1963-07-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019162","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019162"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020660"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1963-07-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1963-07-10","start":"1963-07-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1964-07-15","start":"1964-07-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019164","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019164"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020662"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-07-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1964-07-15","start":"1964-07-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1550.25}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1965-07-21","start":"1965-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019166","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019166"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020664"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1965-07-21","start":"1965-07-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1295.34}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1966-07-27","start":"1966-07-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019168","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019168"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020666"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1966-07-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1966-07-27","start":"1966-07-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1606.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1967-08-02","start":"1967-08-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019171","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019171"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020669"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1967-08-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1967-08-02","start":"1967-08-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1968-08-07","start":"1968-08-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019173","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019173"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020671"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1968-08-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1968-08-07","start":"1968-08-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1163.94}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1969-08-13","start":"1969-08-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019176","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019176"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020674"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-08-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1969-08-13","start":"1969-08-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1122.1}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-08-25","start":"1971-08-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019180","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019180"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020678"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-08-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1971-08-25","start":"1971-08-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1972-08-30","start":"1972-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019183","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019183"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020681"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1972-08-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1972-08-30","start":"1972-08-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1210.82}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1973-09-05","start":"1973-09-05"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019185","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019185"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020683"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-09-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1973-09-05","start":"1973-09-05"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.58}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1974-09-11","start":"1974-09-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019230","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019230"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020728"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-09-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1974-09-11","start":"1974-09-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1975-09-17","start":"1975-09-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020733"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-09-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1975-09-17","start":"1975-09-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.97}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1976-09-22","start":"1976-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019242","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019242"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020740"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-09-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1976-09-22","start":"1976-09-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1829.25}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1977-09-28","start":"1977-09-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019248","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019248"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020746"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1977-09-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1977-09-28","start":"1977-09-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1978-10-04","start":"1978-10-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019249","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019249"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020747"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1978-10-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1978-10-04","start":"1978-10-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1979-10-10","start":"1979-10-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019250","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019250"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020748"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-10-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1979-10-10","start":"1979-10-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1980-10-15","start":"1980-10-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019256","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019256"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020754"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1980-10-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1980-10-15","start":"1980-10-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1981-10-21","start":"1981-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019262","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019262"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020760"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1981-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1981-10-21","start":"1981-10-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1454.94}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1982-10-27","start":"1982-10-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":307}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":307}}],"id":"carrier--10000000019269","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019269"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020767"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1982-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":102.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":307},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1982-10-27","start":"1982-10-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1384.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1983-11-02","start":"1983-11-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019276","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019276"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-11-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1983-11-02","start":"1983-11-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1984-11-07","start":"1984-11-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019282","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019282"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1984-11-07","start":"1984-11-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1493.47}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-11-13","start":"1985-11-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019286","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019286"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020784"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1985-11-13","start":"1985-11-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1760.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1986-11-19","start":"1986-11-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019293","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019293"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020791"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1986-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1986-11-19","start":"1986-11-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1449.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-11-25","start":"1987-11-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019295","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019295"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020793"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1987-11-25","start":"1987-11-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1439.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1988-11-30","start":"1988-11-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93}}],"id":"carrier--10000000019297","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019297"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020795"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1988-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":135.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":406.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1988-11-30","start":"1988-11-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1517.61}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1989-12-06","start":"1989-12-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019298","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019298"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020796"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1989-12-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1989-12-06","start":"1989-12-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.1}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1990-12-12","start":"1990-12-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019300","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019300"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020798"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1990-12-12","start":"1990-12-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-12-18","start":"1991-12-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019302","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019302"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020800"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-12-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1991-12-18","start":"1991-12-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1347.73}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-12-23","start":"1992-12-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019304","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019304"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020802"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-12-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1992-12-23","start":"1992-12-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1718.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019419","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019419"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020917"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1993-12-29","start":"1993-12-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1605.64}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1995-01-04","start":"1995-01-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38}}],"id":"carrier--10000000019428","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019428"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020926"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-01-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":65.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1995-01-04","start":"1995-01-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.87}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-01-10","start":"1996-01-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019431","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019431"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020931"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-01-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1996-01-10","start":"1996-01-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1228.32}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-01-21","start":"1998-01-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019439","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019439"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020940"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-01-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1998-01-21","start":"1998-01-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1831.6}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-01-27","start":"1999-01-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019442","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019442"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020944"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-01-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1999-01-27","start":"1999-01-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-02-02","start":"2000-02-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019444","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019444"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020946"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2000-02-02","start":"2000-02-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1410.59}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2001-02-07","start":"2001-02-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019446","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019446"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020948"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-02-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2001-02-07","start":"2001-02-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-02-13","start":"2002-02-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019448","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019448"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020950"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-02-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2002-02-13","start":"2002-02-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.4}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-02-19","start":"2003-02-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019450","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019450"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020952"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-02-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2003-02-19","start":"2003-02-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-02-25","start":"2004-02-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019452","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019452"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020954"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-02-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2004-02-25","start":"2004-02-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-03-02","start":"2005-03-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019454","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019454"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020956"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-03-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2005-03-02","start":"2005-03-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1658.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-03-08","start":"2006-03-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":690.85}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11}}],"id":"carrier--10000000019456","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019456"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020958"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-03-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":690.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":149.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2006-03-08","start":"2006-03-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-03-14","start":"2007-03-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019459","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019459"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020961"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-03-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2007-03-14","start":"2007-03-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1407.48}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-03-19","start":"2008-03-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019461","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019461"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020963"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-03-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2008-03-19","start":"2008-03-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1436.67}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-03-25","start":"2009-03-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019463","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019463"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020965"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2009-03-25","start":"2009-03-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-03-31","start":"2010-03-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89}}],"id":"carrier--10000000019465","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019465"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020967"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-04-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":275.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1101.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2010-03-31","start":"2010-03-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1377.39}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019467","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019467"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020969"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-04-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"2011-04-06","start":"2011-04-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-04-11","start":"2012-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54}}],"id":"carrier--10000000019469","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019469"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020971"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-04-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":309.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1238.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2012-04-11","start":"2012-04-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1548.2}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000019471","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019471"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020973"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2013-04-17","start":"2013-04-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.02}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019487","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019487"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020989"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-04-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2014-04-23","start":"2014-04-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-04-29","start":"2015-04-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81}}],"id":"carrier--10000000019500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021004"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-04-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":226.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2015-04-29","start":"2015-04-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.54}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-05-04","start":"2016-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65}}],"id":"carrier--10000000019517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021021"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":313.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1253.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2016-05-04","start":"2016-05-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1567.09}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-05-10","start":"2017-05-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019568","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019568"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021072"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-05-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2017-05-10","start":"2017-05-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74}}],"id":"carrier--10000000019575","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019575"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021079"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":53.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":215.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2018-05-16","start":"2018-05-16"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98}}],"id":"carrier--10000000019586","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019586"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021090"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-05-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":681.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2019-05-22","start":"2019-05-22"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":852.5}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8}}],"id":"carrier--10000000019590","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019590"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021094"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":344.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1376.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2020-05-27","start":"2020-05-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1721.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-06-02","start":"2021-06-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000019598","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019598"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021102"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-06-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-06-02","start":"2021-06-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.69}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-12-29","start":"1993-12-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999699428"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000019683","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019683"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021220"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"5","display":"Institutional providers and independent laboratories for whom employer identification (EI) numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1993-12-29","start":"1993-12-29"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-08-18","start":"1998-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999323509"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000019694","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019694"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021232"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-08-21"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"0","display":"Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1998-08-18","start":"1998-08-18"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999035295"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C188","display":"MALIGNANT NEOPLASM OF OVERLAPPING SITES OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K621","display":"RECTAL POLYP","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"8","display":"Ambulatory Surgery Center (ASC) or other special facility (e.g. hospice)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673689"}},"hospitalization":{"end":"2018-05-17","start":"2018-05-16"},"id":"hospice--10000000019758","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019758"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021297"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-17"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd","display":"NCH Patient Status Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"A","display":"Discharged","system":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3056.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3056.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0650","display":"Hospice services-general classification","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:50.454-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673689"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221520"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":3860.96},"type":{"coding":[{"code":"50","display":"Hospice claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HOSPICE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-01-09","start":"2011-01-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001504","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001504"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021109"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"57297047802","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-01-09"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-01-09"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021114"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001505"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00538080883","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-04-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-04-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2011-04-06","start":"2011-04-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001506","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001506"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021117"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001506"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0009"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00904580846","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2011-04-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2011-04-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-01-08","start":"2013-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021120"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001507"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"68788974709","display":"simvastatin - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-01-08"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-01-08"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021122"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"50228011110","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-04-17"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-04-17"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2013-04-17","start":"2013-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001509","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001509"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021128"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001509"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"23490082700","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2013-04-17"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2013-04-17"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-01-08","start":"2014-01-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001510","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001510"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021130"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001510"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"55154506200","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-01-08"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-01-08"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001512","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001512"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021137"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001512"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"71335161005","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-04-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-04-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-04-23","start":"2014-04-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021141"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001514"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"54868465705","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-04-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2014-04-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-01-07","start":"2018-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001515","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001515"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021143"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001515"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"63304079030","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001516","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001516"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021144"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001516"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"67544034630","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021146"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001517"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":1}}],"value":1},"sequence":1,"service":{"coding":[{"code":"66336097207","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999903529"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"id":"pde--10000001518","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001518"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021148"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001518"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":182}}],"value":182},"sequence":1,"service":{"coding":[{"code":"63187044090","display":"Hydrochlorothiazide - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-05-16","start":"2018-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999903529"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"id":"pde--10000001519","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001519"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021151"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001519"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":200},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":182}}],"value":182},"sequence":1,"service":{"coding":[{"code":"00662670577","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-05-16"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221520"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-05-16"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-14","start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001520","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001520"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021153"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001520"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":240},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"68387053700","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-14"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-14"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-14","start":"2018-11-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001521","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001521"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021155"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001521"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":280},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":1}}],"value":1},"sequence":1,"service":{"coding":[{"code":"60760026790","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-14"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-14"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-10","start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001522","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001522"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021156"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001522"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":189}}],"value":189},"sequence":1,"service":{"coding":[{"code":"60760043090","display":"HYDROCHLOROTHIAZIDE - HYDROCHLOROTHIAZIDE","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-11-10","start":"2018-11-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001524","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001524"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021159"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001524"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":360},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":189}}],"value":189},"sequence":1,"service":{"coding":[{"code":"68788763301","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-11-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2018-11-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-01-07","start":"2019-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001526","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001526"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021162"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001526"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"00615799239","display":"SIMVASTATIN - SIMVASTATIN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021165"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001528"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392001151","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-05-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-05-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-05-22","start":"2019-05-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001530","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001530"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021167"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001530"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"68001033400","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-05-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2019-05-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-01-07","start":"2020-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999779"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"id":"pde--10000001531","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001531"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021169"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001531"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":365}}],"value":365},"sequence":1,"service":{"coding":[{"code":"53978306903","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-01-07"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220060"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-01-07"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001533","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001533"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021174"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001533"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":9}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00378360101","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-05-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-05-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-05-27","start":"2020-05-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999965679"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"id":"pde--10000001535","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000001535"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021177"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000001535"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000059"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":9}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392093025","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-05-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.956-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP65148"}},"patient":{"reference":"Patient/-10000000000059"},"payment":{"date":"2020-05-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2000-09-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2000-09-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2000-09-24","start":"2000-09-23"},"id":"inpatient--10000000003210","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003210"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003423"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-09-29"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2012-05-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2012-05-15","start":"2012-05-14"},"id":"inpatient--10000000003226","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003226"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003439"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47}},"procedure":[{"date":"2012-05-14T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":233.47},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2013-04-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":43.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2013-04-10","start":"2013-04-09"},"id":"inpatient--10000000003231","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003231"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003444"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":173.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":83.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":257.04}},"procedure":[{"date":"2013-04-09T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":257.04},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":42.35}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2014-05-02","start":"2014-05-01"},"id":"inpatient--10000000003235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003448"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":169.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.73}},"procedure":[{"date":"2014-05-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.73},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-05-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":44.3}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2015-05-09","start":"2015-05-08"},"id":"inpatient--10000000003241","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003241"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003454"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.5}},"procedure":[{"date":"2015-05-08T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.5},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2016-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.77}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2016-04-09","start":"2016-04-08"},"id":"inpatient--10000000003245","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003245"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003458"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":283.84}},"procedure":[{"date":"2016-04-08T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":283.84},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2017-04-12","start":"2017-04-11"},"id":"inpatient--10000000003251","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003251"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003464"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":81.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":248.92}},"procedure":[{"date":"2017-04-11T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":248.92},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":56.11}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2018-05-02","start":"2018-05-01"},"id":"inpatient--10000000003255","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003255"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003468"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":224.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320.54}},"procedure":[{"date":"2018-05-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":320.54},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2019-04-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":42.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2019-04-26","start":"2019-04-25"},"id":"inpatient--10000000003260","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003260"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003473"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-05-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":169.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":252.04}},"procedure":[{"date":"2019-04-25T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":252.04},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-03-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.05}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2020-03-25","start":"2020-03-24"},"id":"inpatient--10000000003267","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003267"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003480"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":164.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":245.26}},"procedure":[{"date":"2020-03-24T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":245.26},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2021-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":53.62}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"hospitalization":{"end":"2021-03-22","start":"2021-03-21"},"id":"inpatient--10000000003271","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003271"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003484"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":214.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":308.08}},"procedure":[{"date":"2021-03-21T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":308.08},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-11-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-11-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003274","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003274"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003487"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-11-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-12-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003282","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003282"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003495"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-12-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12005.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-12-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-12-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003283","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003283"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003496"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-12-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-12-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-12-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J029","display":"\"ACUTE PHARYNGITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003285","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003285"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003498"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-12-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003287","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003287"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003500"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16627.73},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1976-12-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1976-12-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003288","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003288"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003501"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1976-12-31"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":170.26},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1979-01-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1979-01-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13684.5}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003291","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003291"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003504"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-01-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":720.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13684.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":780.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14464.74},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-01-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-01-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8448.82}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003296","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003296"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003509"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-02-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2816.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8448.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2891.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11340.1},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1988-02-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1988-02-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003301","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003301"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003514"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1988-02-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1990-06-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1990-06-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003304","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003304"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003517"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-06-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.06},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-06-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003324","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003324"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003537"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-06-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13219.75},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2009-06-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2009-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003326","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003326"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003539"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14837.48},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2010-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2010-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003328","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003328"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003541"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-07-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6321.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":6318.67},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-05-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003330","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003330"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003543"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-05-14","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-05-14"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003332","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003332"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003545"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-05-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11397.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11395.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003335","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003335"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003548"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-04-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-04-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003337","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003337"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003550"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-04-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3315.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13262.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3355.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16618.39},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003339","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003339"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003552"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003341","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003341"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003554"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-05-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1741.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6966.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8748.66},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003343","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003343"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003556"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":85.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":165.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":473.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-01-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003344","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003344"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003557"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-01-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.54},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003345","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003345"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003558"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003347","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003347"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003560"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-05-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3517.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14069.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3557.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":17627.33},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-04-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003349","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003349"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003562"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-04-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-04-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003351","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003351"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003564"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-04-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2362.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9451.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11854.29},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-07-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003352","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003352"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003565"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.89},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-12-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-12-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B349","display":"\"VIRAL INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003354","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003354"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003567"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-12-23"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003355","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003355"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003568"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003357","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003357"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003570"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3048.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12194.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3088.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":15282.62},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003432","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003432"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003645"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-05-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-05-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003443","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003443"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003656"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-05-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1876.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7507.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":9424.77},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-06-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003444","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003444"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003657"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-06-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003452","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003452"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003665"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003454","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003454"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003667"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2100.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8403.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":10544.74},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003459","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003459"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003672"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003481","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003481"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003694"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":37.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-09","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003482","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003482"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003695"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":199.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":288.83},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003483","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003483"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003696"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003485","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003485"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003698"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1883.77},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7535.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":9458.83},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003702"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-21","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999994293"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"id":"outpatient--10000000003492","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003492"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003705"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2290.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9161.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.889-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886675866"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221302"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11491.52},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-10-17","start":"1965-10-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003501","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003501"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003714"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":5},"sequence":1,"servicedPeriod":{"end":"1965-10-17","start":"1965-10-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.36}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1966-10-23","start":"1966-10-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003503","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003503"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003716"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1966-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1966-10-23","start":"1966-10-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1967-10-29","start":"1967-10-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003504","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003504"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003717"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1967-11-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1967-10-29","start":"1967-10-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1968-11-03","start":"1968-11-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003505","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003505"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003718"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1968-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1968-11-03","start":"1968-11-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1969-11-09","start":"1969-11-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003506","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003506"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003719"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1969-11-09","start":"1969-11-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.38}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1970-11-15","start":"1970-11-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003720"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1970-11-15","start":"1970-11-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1426.21}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-11-21","start":"1971-11-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01}}],"id":"carrier--10000000003508","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003508"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003721"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1135.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":6},"sequence":1,"servicedPeriod":{"end":"1971-11-21","start":"1971-11-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1254.8}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1972-11-26","start":"1972-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003509","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003509"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003722"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1972-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1972-11-26","start":"1972-11-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1474.89}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1974-12-08","start":"1974-12-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003512","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003512"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003725"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1974-12-08","start":"1974-12-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.73}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1975-12-14","start":"1975-12-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003727"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1975-12-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1975-12-14","start":"1975-12-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1845}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1977-12-25","start":"1977-12-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003517","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003517"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003730"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1977-12-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1977-12-25","start":"1977-12-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1978-12-31","start":"1978-12-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34}}],"id":"carrier--10000000003520","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003520"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003733"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-01-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":46.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":886.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1978-12-31","start":"1978-12-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1980-01-06","start":"1980-01-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003523","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003523"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003736"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1980-01-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1980-01-06","start":"1980-01-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1981-01-11","start":"1981-01-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003525","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003525"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003738"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1981-01-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1981-01-11","start":"1981-01-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1472.68}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1982-01-17","start":"1982-01-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003528","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003528"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003741"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1982-01-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1982-01-17","start":"1982-01-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1983-01-23","start":"1983-01-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61}}],"id":"carrier--10000000003534","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003534"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003747"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-01-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":361.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1083.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1983-01-23","start":"1983-01-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1519.86}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1984-01-29","start":"1984-01-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003545","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003545"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003758"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1984-02-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1984-01-29","start":"1984-01-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1096.37}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-02-03","start":"1985-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003546","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003546"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-02-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1985-02-03","start":"1985-02-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1319.39}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1986-02-09","start":"1986-02-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003549","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003549"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003762"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1986-02-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1986-02-09","start":"1986-02-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1540.57}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-02-15","start":"1987-02-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003551","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003551"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003764"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-02-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1987-02-15","start":"1987-02-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1878.92}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1989-02-26","start":"1989-02-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003555","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003555"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003768"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1989-03-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1989-02-26","start":"1989-02-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1990-03-04","start":"1990-03-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003557","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003557"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003770"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1990-03-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1990-03-04","start":"1990-03-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-03-10","start":"1991-03-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003560","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003560"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-03-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1991-03-10","start":"1991-03-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358.29}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1992-03-15","start":"1992-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003561","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003561"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1992-03-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1992-03-15","start":"1992-03-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-03-21","start":"1993-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003564","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003564"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003777"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1993-03-21","start":"1993-03-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1888.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1994-03-27","start":"1994-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003567","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003567"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1994-04-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1994-03-27","start":"1994-03-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1995-04-02","start":"1995-04-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003569","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003569"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003782"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-04-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1995-04-02","start":"1995-04-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-04-07","start":"1996-04-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003572","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003572"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003785"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-04-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1996-04-07","start":"1996-04-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1997-04-13","start":"1997-04-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003573","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003573"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003786"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1997-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"1997-04-13","start":"1997-04-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1998-04-19","start":"1998-04-19"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003574","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003574"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003787"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1998-04-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1998-04-19","start":"1998-04-19"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1215.84}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-04-25","start":"1999-04-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003575","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003575"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003788"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-04-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1999-04-25","start":"1999-04-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1236.89}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-04-30","start":"2000-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003587","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003587"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003800"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":814.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2000-04-30","start":"2000-04-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2001-05-06","start":"2001-05-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003592","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003592"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003805"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2001-05-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2001-05-06","start":"2001-05-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1387.58}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2002-05-12","start":"2002-05-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.84}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56}}],"id":"carrier--10000000003594","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003594"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003807"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-05-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":107.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":323.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2002-05-12","start":"2002-05-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1352.31}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-05-18","start":"2003-05-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003603","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003603"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003816"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-05-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2003-05-18","start":"2003-05-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-05-23","start":"2004-05-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003821"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2004-05-23","start":"2004-05-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-05-29","start":"2005-05-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003616","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003616"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003829"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-06-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2005-05-29","start":"2005-05-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.562-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-06-04","start":"2006-06-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003617","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003617"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003830"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-06-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2006-06-04","start":"2006-06-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2007-06-10","start":"2007-06-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003628","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003628"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003841"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-06-15"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2007-06-10","start":"2007-06-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2008-06-15","start":"2008-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003631","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003631"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003844"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-06-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2008-06-15","start":"2008-06-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1405.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-06-21","start":"2009-06-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003854"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-06-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2009-06-21","start":"2009-06-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-06-27","start":"2010-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003648","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003648"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003861"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-07-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"2010-06-27","start":"2010-06-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1465.95}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-07-03","start":"2011-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003652","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003652"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003865"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-07-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2011-07-03","start":"2011-07-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":993.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-07-08","start":"2012-07-08"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000003658","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003658"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003871"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-07-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2012-07-08","start":"2012-07-08"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1468.92}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-07-14","start":"2013-07-14"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000003664","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003664"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003877"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2013-07-14","start":"2013-07-14"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.23}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-07-20","start":"2014-07-20"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18}}],"id":"carrier--10000000003668","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003668"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003881"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-25"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":342.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1371.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":23},"sequence":1,"servicedPeriod":{"end":"2014-07-20","start":"2014-07-20"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1714.03}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-07-26","start":"2015-07-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000003675","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003675"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003888"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2015-07-26","start":"2015-07-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.71}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7}}],"id":"carrier--10000000003683","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003683"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003896"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-08-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":310.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1242.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":16},"sequence":1,"servicedPeriod":{"end":"2016-07-31","start":"2016-07-31"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1553.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45}}],"id":"carrier--10000000003690","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003690"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003903"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-08-11"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":331.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1325.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":20},"sequence":1,"servicedPeriod":{"end":"2017-08-06","start":"2017-08-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1656.86}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78}}],"id":"carrier--10000000003698","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003698"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003911"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-08-17"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1171.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2018-08-12","start":"2018-08-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1464.78}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81}}],"id":"carrier--10000000003708","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003708"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003921"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":226.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":906.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":18},"sequence":1,"servicedPeriod":{"end":"2019-08-18","start":"2019-08-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1133.56}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29}}],"id":"carrier--10000000003719","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003719"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003932"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-08-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":312.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1248.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2020-08-23","start":"2020-08-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.574-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.41}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1971-11-21","start":"1971-11-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999758359"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000003951","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000003951"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004190"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1971-11-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"1","display":"Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1971-11-21","start":"1971-11-21"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-29","start":"2019-08-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999298186"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J329","display":"\"CHRONIC SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"P292","display":"NEONATAL HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000004040","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000004040"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004281"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-30"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"R","display":"Rental of DME","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"3","display":"Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0570","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2019-08-29","start":"2019-08-29"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":3}]}],"billablePeriod":{"end":"2012-09-05","start":"2012-09-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999032094"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"I10","display":"ESSENTIAL (PRIMARY) HYPERTENSION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"8","display":"Ambulatory Surgery Center (ASC) or other special facility (e.g. hospice)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673143"}},"hospitalization":{"end":"2012-09-07","start":"2012-09-02"},"id":"hospice--10000000004049","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000004049"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004291"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-09-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd","display":"NCH Patient Status Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"A","display":"Discharged","system":"https://bluebutton.cms.gov/resources/variables/nch_ptnt_stus_ind_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1420.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":3},"revenue":{"coding":[{"code":"0650","display":"Hospice services-general classification","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:50.454-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886673143"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"221574"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":4262.36},"type":{"coding":[{"code":"50","display":"Hospice claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HOSPICE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-07-06","start":"2016-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999429"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221302"}},"id":"pde--10000000213","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000213"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003938"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000213"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":8}}],"value":8},"sequence":1,"service":{"coding":[{"code":"65862050130","display":"Amoxicillin and Clavulanate Potassium - AMOXICILLIN; CLAVULANATE POTASSIUM","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"221302"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000214","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000214"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003941"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000214"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00538081111","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000215","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000215"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003947"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000215"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"67296124906","display":"LISINOPRIL - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-31","start":"2016-07-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000216","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000216"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100003950"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000216"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58118210803","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2016-07-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000222","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000222"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004092"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000222"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"60429021890","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000224","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000224"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004099"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000224"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016096369","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-08-06","start":"2017-08-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000225","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000225"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004102"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000225"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00530022352","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-08-06"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2017-08-06"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000226","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000226"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004105"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000226"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Substitution Not Allowed by Prescriber","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"00105440198","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000227","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000227"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004108"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000227"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"61392069365","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-12","start":"2018-08-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000228","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000228"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004111"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000228"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016068430","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2018-08-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000229","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000229"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004112"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000229"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"60505263001","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000230","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000230"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004118"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000230"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"63187009860","display":"Lisinopril - LISINOPRIL","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-18","start":"2019-08-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000231","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000231"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004132"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000231"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0003"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":371},"sequence":1,"service":{"coding":[{"code":"58016068497","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2019-08-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000233","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000233"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004144"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000233"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"00552890136","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000235","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000235"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004154"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000235"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"51129110501","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-23","start":"2020-08-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999939019"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"id":"pde--10000000237","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000237"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100004181"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000237"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0010"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000012"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":357}}],"value":357},"sequence":1,"service":{"coding":[{"code":"00713351032","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.933-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP198892"}},"patient":{"reference":"Patient/-10000000000012"},"payment":{"date":"2020-08-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"1962-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1962-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":54.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"1962-04-12","start":"1962-04-12"},"id":"inpatient--10000000028431","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028431"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030874"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1962-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":204.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":134.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":134.09},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2002-04-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-04-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"packageCode":{"coding":[{"code":"393","system":"https://bluebutton.cms.gov/resources/variables/clm_drg_cd"}]}},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"2002-04-22","start":"2002-04-22"},"id":"inpatient--10000000028437","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028437"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030880"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":2}]}],"billablePeriod":{"end":"2002-04-25","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2002-04-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"packageCode":{"coding":[{"code":"395","system":"https://bluebutton.cms.gov/resources/variables/clm_drg_cd"}]}},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"hospitalization":{"end":"2002-04-25","start":"2002-04-22"},"id":"inpatient--10000000028438","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028438"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030881"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2002-04-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Urgent - The patient required immediate attention for the care and treatment of a physical or mental disorder. Generally, the patient was admitted to the first available and suitable accommodation.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.085-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13642.83},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-05-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-05-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028488","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028488"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030931"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-05-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-06-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-06-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028489","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028489"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030932"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-06-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1964-09-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1964-09-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13559.92}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028493","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028493"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030936"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-09-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4519.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4519.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":5419.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13559.92},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":5494.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":19054.89},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1964-09-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1964-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O020","display":"BLIGHTED OVUM AND NONHYDATIDIFORM MOLE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":815.59}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028494","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028494"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030937"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1964-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":815.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":346.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1983-04-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1983-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028495","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028495"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030938"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1983-05-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.23},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-10-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-10-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028500","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028500"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030943"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6043.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":24172.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":30255.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2011-10-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2011-10-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"J0190","display":"\"ACUTE SINUSITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028502","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028502"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030945"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-10-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-10-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028503","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028503"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030946"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-10-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3858.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15432.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":19331.02},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-05-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-05-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"id":"outpatient--10000000028507","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028507"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030950"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":121.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"2667"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-10-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-10-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B9789","display":"OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028540","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028540"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030983"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-10-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2011.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8044.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2051.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":10096.06},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-19","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028544","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028544"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030987"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":86.09},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999064998"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"id":"outpatient--10000000028546","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028546"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030989"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-09-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":183.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8888862215"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"2667"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":269.68},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999997494"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"id":"outpatient--10000000028549","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028549"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030992"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.37},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.148-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688232"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220065"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":287.96},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1963-09-13","start":"1963-09-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000028556","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028556"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100030999"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1963-09-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":3},"sequence":1,"servicedPeriod":{"end":"1963-09-13","start":"1963-09-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-08-09","start":"1991-08-09"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000028561","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028561"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031004"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-08-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1991-08-09","start":"1991-08-09"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1591.46}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-10-15","start":"2010-10-15"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":843.35}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12}}],"id":"carrier--10000000028565","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028565"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031008"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-10-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":843.35},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":46.71},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":140.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"2010-10-15","start":"2010-10-15"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-10-21","start":"2011-10-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"K635","display":"POLYP OF COLON","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4}}],"id":"carrier--10000000028568","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028568"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031011"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-10-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1086.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":4},"sequence":1,"servicedPeriod":{"end":"2011-10-21","start":"2011-10-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1358}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-10-26","start":"2012-10-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13}}],"id":"carrier--10000000028573","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028573"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031016"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-11-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":350.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1400.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2012-10-26","start":"2012-10-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1750.16}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-11-01","start":"2013-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000028576","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028576"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031019"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-11-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2013-11-01","start":"2013-11-01"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-11-07","start":"2014-11-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028581","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028581"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031024"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-11-14"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2014-11-07","start":"2014-11-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-11-13","start":"2015-11-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8}}],"id":"carrier--10000000028620","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028620"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031063"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-11-20"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1199.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2015-11-13","start":"2015-11-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1499.75}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-11-18","start":"2016-11-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000028627","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028627"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031070"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-11-25"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":19},"sequence":1,"servicedPeriod":{"end":"2016-11-18","start":"2016-11-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-11-24","start":"2017-11-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73}}],"id":"carrier--10000000028636","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028636"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031079"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-12-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.93},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":711.73},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2017-11-24","start":"2017-11-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-11-30","start":"2018-11-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031084"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-12-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2018-11-30","start":"2018-11-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-12-06","start":"2019-12-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302}}],"id":"carrier--10000000028648","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028648"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031091"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-12-13"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":325.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1302},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2019-12-06","start":"2019-12-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1627.5}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2020-12-11","start":"2020-12-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999271822"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06}}],"id":"carrier--10000000028656","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028656"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031099"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-12-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":157.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":629.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2020-12-11","start":"2020-12-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.831-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":786.33}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-05-30","start":"2015-05-30"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028726","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028726"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031170"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1724.61},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1724.61}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":2195.76},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":2}]}],"billablePeriod":{"end":"2015-05-30","start":"2015-05-30"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028727","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028727"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031171"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":608.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":608.54}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":800.67},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":3}]}],"billablePeriod":{"end":"2015-05-31","start":"2015-05-31"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028728","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028728"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031172"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":559.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":559.07}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":738.84},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":4}]}],"billablePeriod":{"end":"2015-06-01","start":"2015-06-01"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028729","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028729"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031173"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":5}]}],"billablePeriod":{"end":"2015-06-02","start":"2015-06-02"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028730","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028730"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031174"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":6}]}],"billablePeriod":{"end":"2015-06-03","start":"2015-06-03"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028731","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028731"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031175"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":644.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":644.47}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":845.59},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":7}]}],"billablePeriod":{"end":"2015-06-04","start":"2015-06-04"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028732","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028732"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031176"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":8}]}],"billablePeriod":{"end":"2015-06-05","start":"2015-06-05"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028733","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028733"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031177"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":571.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":571.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":754.5},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":9}]}],"billablePeriod":{"end":"2015-06-06","start":"2015-06-06"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028734","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028734"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031178"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":10}]}],"billablePeriod":{"end":"2015-06-07","start":"2015-06-07"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028735","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028735"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031179"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":11}]}],"billablePeriod":{"end":"2015-06-08","start":"2015-06-08"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028736","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028736"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031180"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":741.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":741.14}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":966.42},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":12}]}],"billablePeriod":{"end":"2015-06-09","start":"2015-06-09"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028737","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028737"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031181"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":13}]}],"billablePeriod":{"end":"2015-06-10","start":"2015-06-10"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028738","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028738"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031182"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":620.87},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":620.87}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":816.09},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":14}]}],"billablePeriod":{"end":"2015-06-11","start":"2015-06-11"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028743","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028743"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031187"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":673.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":673.02}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":881.28},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":15}]}],"billablePeriod":{"end":"2015-06-12","start":"2015-06-12"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028748","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028748"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031193"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":552.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":552.91}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":731.14},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":16}]}],"billablePeriod":{"end":"2015-06-13","start":"2015-06-13"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028786","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028786"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031232"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":17}]}],"billablePeriod":{"end":"2015-06-14","start":"2015-06-14"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028788","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028788"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031235"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":18}]}],"billablePeriod":{"end":"2015-06-15","start":"2015-06-15"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028795","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028795"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031243"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":19}]}],"billablePeriod":{"end":"2015-06-16","start":"2015-06-16"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028796","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028796"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031245"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":519.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":519.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":689.23},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":20}]}],"billablePeriod":{"end":"2015-06-17","start":"2015-06-17"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028805","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028805"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031255"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.960-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":21}]}],"billablePeriod":{"end":"2015-06-18","start":"2015-06-18"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028810","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028810"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031261"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":370.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":370.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":503.25},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":22}]}],"billablePeriod":{"end":"2015-06-19","start":"2015-06-19"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028812","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028812"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031264"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":23}]}],"billablePeriod":{"end":"2015-06-20","start":"2015-06-20"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028814","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028814"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031267"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":496.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":496.5}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":660.63},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":24}]}],"billablePeriod":{"end":"2015-06-21","start":"2015-06-21"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028817","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028817"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031271"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":403.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":403.22}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":544.02},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":25}]}],"billablePeriod":{"end":"2015-06-22","start":"2015-06-22"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028819","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028819"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031274"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":26}]}],"billablePeriod":{"end":"2015-06-23","start":"2015-06-23"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028820","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028820"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031276"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":297.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":297.6}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":412},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":27}]}],"billablePeriod":{"end":"2015-06-24","start":"2015-06-24"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028821","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028821"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031278"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":484.65}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":28}]}],"billablePeriod":{"end":"2015-06-25","start":"2015-06-25"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028822","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028822"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031280"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":603.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":603.63}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.54},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":29}]}],"billablePeriod":{"end":"2015-06-26","start":"2015-06-26"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028823","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028823"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031282"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":585.11},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":585.11}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":771.39},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"U","display":"Both Part A and B institutional home health agency (HHA) claim records","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_hha_tot_visit_cnt","display":"Claim HHA Total Visit Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":30}]}],"billablePeriod":{"end":"2015-06-27","start":"2015-06-27"},"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"K37","display":"UNSPECIFIED APPENDICITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"Z9049","display":"ACQUIRED ABSENCE OF OTHER SPECIFIED PARTS OF DIGESTIVE TRACT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M169","display":"\"OSTEOARTHRITIS OF HIP, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"3","display":"Home Health Agency (HHA)","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}]},"id":"hha--10000000028824","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000028824"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031284"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"9","display":"Final claim (for HH PPS = process as a debit/credit to RAP claim)","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"81","display":"Discharged to home or self-care with a planned acute care hospital inpatient readmission.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":4}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":897.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":1},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd","valueCoding":{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd"}}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:45.994-04:00"},"patient":{"reference":"Patient/-10000000000091"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":897.97}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"227288"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1162.46},"type":{"coding":[{"code":"10","display":"Home Health Agency (HHA) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"HHA","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-08-19","start":"2019-08-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999749"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220065"}},"id":"pde--10000002443","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000002443"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100031105"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000002443"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000091"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":4.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":13}}],"value":13},"sequence":1,"service":{"coding":[{"code":"00615059177","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-19"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.971-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220065"}},"patient":{"reference":"Patient/-10000000000091"},"payment":{"date":"2019-08-19"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2014-06-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3382.91}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":80}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":80}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2014-06-12","start":"2014-06-12"},"id":"inpatient--10000000008799","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008799"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009508"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13531.65},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":16968.67}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":16968.67},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-06-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-09"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-06-10","start":"2020-06-09"},"id":"inpatient--10000000008810","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008810"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009519"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"procedure":[{"date":"2020-06-09T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"0HBT0ZX","display":"\"EXCISION OF RIGHT BREAST, OPEN APPROACH, DIAGNOSTIC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-06-20","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-19"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":688.74}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-06-20","start":"2020-06-19"},"id":"inpatient--10000000008812","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008812"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009522"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2754.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":728.74},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3483.71}},"procedure":[{"date":"2020-06-19T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"0HBV3ZZ","display":"\"EXCISION OF BILATERAL BREAST, PERCUTANEOUS APPROACH\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":3483.71},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-07-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-07-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-07-02","start":"2020-07-01"},"id":"inpatient--10000000008813","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008813"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009524"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.32}},"procedure":[{"date":"2020-07-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0Q705","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN CRAN CAV/BRAIN, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.32},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-07-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-07-22","start":"2020-07-21"},"id":"inpatient--10000000008814","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008814"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009531"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.1}},"procedure":[{"date":"2020-07-21T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0H805","display":"\"INTRODUCTION OF OTHER ANTINEOPLASTIC INTO LOWER GI, ENDO\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.1},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-08-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-08-11","start":"2020-08-10"},"id":"inpatient--10000000008815","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008815"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009532"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-08-14"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24}},"procedure":[{"date":"2020-08-10T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0F305","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN RESP TRACT, PERC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-09-01","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-08-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-09-01","start":"2020-08-31"},"id":"inpatient--10000000008816","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008816"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009534"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-09-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24}},"procedure":[{"date":"2020-08-31T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0G805","display":"\"INTRODUCTION OF OTHER ANTINEOPLASTIC INTO UPPER GI, ENDO\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.24},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-09-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-09-23","start":"2020-09-22"},"id":"inpatient--10000000008817","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008817"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009536"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.38}},"procedure":[{"date":"2020-09-22T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0J305","display":"\"INTRODUCE OTH ANTINEOPLASTIC IN BIL/PANC TRACT, PERC\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.38},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-10-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-10-12","start":"2020-10-11"},"id":"inpatient--10000000008818","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008818"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009539"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-10-15"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.17}},"procedure":[{"date":"2020-10-11T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0N704","display":"\"INTRODUCTION OF LIQUID BRACHY INTO MALE REPROD, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.17},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-11-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-11-02","start":"2020-11-01"},"id":"inpatient--10000000008819","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008819"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009541"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-11-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.37}},"procedure":[{"date":"2020-11-01T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"3E0C70M","display":"\"INTRODUCTION OF MONOCLONAL ANTIBODY INTO EYE, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":596.37},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-11-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":110.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"hospitalization":{"end":"2020-11-23","start":"2020-11-22"},"id":"inpatient--10000000008820","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008820"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009543"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-11-27"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":443.31},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":190.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.039-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":595.99}},"procedure":[{"date":"2020-11-22T00:00:00-05:00","procedureCodeableConcept":{"coding":[{"code":"3E0P704","display":"\"INTRODUCTION OF LIQUID BRACHY INTO FEM REPROD, VIA OPENING\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":595.99},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1945-12-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1945-12-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008825","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008825"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009550"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1945-12-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1946-01-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1946-01-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008826","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008826"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009552"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1946-01-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008828","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008828"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009555"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008829","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008829"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009556"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":699.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":697.47},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1969-10-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1969-10-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12607.26}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008830","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008830"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009557"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1969-10-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":663.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12607.26},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":723.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13330.8},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-05-02","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-05-02"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59909.51}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008831","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008831"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009558"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-05-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3153.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59909.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3213.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":63122.64},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1974-08-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1974-08-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008832","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008832"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009559"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1974-08-23"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":218.01},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-10-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-10-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008836","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008836"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009564"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-11-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-02-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008838","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008838"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009567"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-02-07"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":52.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":208.78},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":132.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":340.98},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008839","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008839"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009575"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":251.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1005.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":331.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":1337.07},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-09-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-09-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008842","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008842"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009578"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-09-25"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-03-24","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-03-24"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008843","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008843"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009579"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2512.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10051.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12604.12},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-10","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R5081","display":"FEVER PRESENTING WITH CONDITIONS CLASSIFIED ELSEWHERE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"R509","display":"\"FEVER, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008849","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008849"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009585"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":196.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":285.48},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R0600","display":"\"DYSPNEA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008850","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008850"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009586"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2895.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11580.55},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2935.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14515.69},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-06-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008852","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008852"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009589"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-11-26","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008862","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008862"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009601"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-12-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":47.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":189.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":167.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":316.82},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008863","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008863"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009603"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-18"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-06-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-06-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999995696"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R062","display":"WHEEZING","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R110","display":"NAUSEA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R1110","display":"\"VOMITING, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"M7910","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10},{"diagnosisCodeableConcept":{"coding":[{"code":"M2550","display":"PAIN IN UNSPECIFIED JOINT","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":11},{"diagnosisCodeableConcept":{"coding":[{"code":"P819","display":"\"DISTURBANCE OF TEMPERATURE REGULATION OF NEWBORN, UNSP\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":12}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"id":"outpatient--10000000008865","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008865"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009606"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-06-24"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:04.989-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886687838"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220105"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1993-04-17","start":"1993-04-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000008874","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008874"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009618"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-04-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1993-04-17","start":"1993-04-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1757.42}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2011-06-25","start":"2011-06-25"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14}}],"id":"carrier--10000000008875","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008875"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009620"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2011-07-01"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":206.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":824.14},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2011-06-25","start":"2011-06-25"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1030.18}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2012-06-30","start":"2012-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000008876","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008876"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009622"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-07-06"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":16},"sequence":1,"servicedPeriod":{"end":"2012-06-30","start":"2012-06-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2013-07-06","start":"2013-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39}}],"id":"carrier--10000000008878","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008878"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009625"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":198.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":794.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":14},"sequence":1,"servicedPeriod":{"end":"2013-07-06","start":"2013-07-06"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":992.99}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-07-12","start":"2014-07-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008882","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008882"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009631"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2014-07-12","start":"2014-07-12"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2015-07-18","start":"2015-07-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008912","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008912"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009666"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-24"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":10},"sequence":1,"servicedPeriod":{"end":"2015-07-18","start":"2015-07-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2016-07-23","start":"2016-07-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6}}],"id":"carrier--10000000008932","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008932"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009686"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":271.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1085.6},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":13},"sequence":1,"servicedPeriod":{"end":"2016-07-23","start":"2016-07-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1397}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2017-07-29","start":"2017-07-29"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3}}],"id":"carrier--10000000008934","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008934"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009688"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-08-04"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1313.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":15},"sequence":1,"servicedPeriod":{"end":"2017-07-29","start":"2017-07-29"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1681.63}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2018-08-04","start":"2018-08-04"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52}}],"id":"carrier--10000000008935","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008935"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009689"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-08-10"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":222.63},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":890.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":12},"sequence":1,"servicedPeriod":{"end":"2018-08-04","start":"2018-08-04"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1153.15}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2019-08-10","start":"2019-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18}}],"id":"carrier--10000000008941","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008941"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009695"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-08-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":243.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":973.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":17},"sequence":1,"servicedPeriod":{"end":"2019-08-10","start":"2019-08-10"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1256.48}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2021-03-27","start":"2021-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999359450"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25}}],"id":"carrier--10000000008964","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000008964"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009718"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-04-02"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":349.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1399.25},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":11},"sequence":1,"servicedPeriod":{"end":"2021-03-27","start":"2021-03-27"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.683-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1789.06}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1965-07-03","start":"1965-07-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999686688"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000009092","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000009092"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009874"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1965-07-09"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"P","display":"Lump sum purchase of DME, prosthetics orthotics","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"6","display":"Institutional providers and independent laboratories for whom the carrier's own ID number is shown.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0607","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"1965-07-03","start":"1965-07-03"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-06-12","start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999686688"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"S8290X","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"D649","display":"\"ANEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"dme--10000000009110","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000009110"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009892"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt","display":"Line Primary Payer Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt","display":"Line DME Purchase Price Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3382.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"A","display":"Used durable medical equipment (DME)","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"diagnosisLinkId":[1],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt","valueQuantity":{"value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt","valueQuantity":{"code":"0","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd","unit":"Values reported as zero","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/prvdr_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd","valueCoding":{"code":"22","display":"Massachusetts","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd","valueCoding":{"code":"8","display":"Other entities for whom employer identification (EI) numbers are used in coding the ID field or proprietorship for whom EI numbers are used in coding the ID field.","system":"https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd"}}]},"quantity":{"value":1},"sequence":1,"service":{"coding":[{"code":"E0110","system":"https://bluebutton.cms.gov/resources/codesystem/hcpcs","version":"1"}]},"servicedPeriod":{"end":"2014-06-12","start":"2014-06-12"}}],"meta":{"lastUpdated":"2021-08-17T13:46:44.201-04:00"},"patient":{"reference":"Patient/-10000000000028"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"82","display":"DMERC; DMEPOS claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"DME","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"M","display":"Part B DMEPOS claim record (processed by DME Regional Carrier)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2014-02-03","start":"2014-02-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000754","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000754"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009729"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000754"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":159}}],"value":636},"sequence":1,"service":{"coding":[{"code":"00045049610","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-02-03"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-02-03"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-03-22","start":"2014-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000755","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000755"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009730"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000755"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":2702}}],"value":10808},"sequence":1,"service":{"coding":[{"code":"76519108104","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-03-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-03-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-06-12","start":"2014-06-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000756","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000756"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009733"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000756"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No Product Selection Indicated (may also have missing values)","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":124.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":35.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":98}}],"value":98},"sequence":1,"service":{"coding":[{"code":"12843014357","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-06-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-06-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2014-07-12","start":"2014-07-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000757","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000757"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009737"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000757"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0004"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":164.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800496","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2014-07-12"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2014-07-12"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2015-07-18","start":"2015-07-18"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000758","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000758"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009741"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000758"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0008"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00551541918","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2015-07-18"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2015-07-18"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2016-07-23","start":"2016-07-23"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000759","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000759"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009745"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Substitution Allowed - Generic Drug Not in Stock","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0006"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800600","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2016-07-23"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2016-07-23"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2017-07-29","start":"2017-07-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000761","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000761"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009747"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000761"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"07","display":"Managed care organization (MCO) pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00505800458","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2017-07-29"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2017-07-29"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2018-08-04","start":"2018-08-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000763","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000763"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009749"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000763"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":371}}],"value":1484},"sequence":1,"service":{"coding":[{"code":"00045049780","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2018-08-04"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2018-08-04"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2019-08-10","start":"2019-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000765","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000765"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009751"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000765"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0002"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":178.79},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.7},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":263.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":595}}],"value":2380},"sequence":1,"service":{"coding":[{"code":"50580049660","display":"TYLENOL - ACETAMINOPHEN","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2019-08-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2019-08-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-07-01","start":"2020-07-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000767","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000767"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009753"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000767"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"63323015100","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-07-01"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-07-01"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-07-21","start":"2020-07-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000772","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000772"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009852"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000772"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"03","display":"Home infusion therapy provider","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1.96},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":2}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-07-21"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-07-21"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-10","start":"2020-08-10"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000773","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000773"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009854"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"02","display":"Compounding pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":120},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":3}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-10"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-08-10"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-08-31","start":"2020-08-31"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000774","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000774"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009856"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000774"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":160},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.1},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00001439203","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-08-31"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-08-31"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-09-22","start":"2020-09-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000775","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000775"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009857"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000775"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"7","display":"Substitution Not Allowed - Brand Drug Mandated by Law","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":200},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":5}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"10518010411","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-09-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-09-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-10-11","start":"2020-10-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000776","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000776"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009860"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000776"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","display":"Substitution Allowed - Brand Drug Dispensed as Generic","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":240},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":6}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00674570358","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-10-11"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-10-11"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-01","start":"2020-11-01"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000777","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000777"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009862"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000777"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"6","display":"Override","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Electronic","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":280},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2.23},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":7}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"15210040429","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-01"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-01"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-22","start":"2020-11-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000778","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000778"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009864"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000778"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Substitution Allowed - Pharmacist Selected Product Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Community/retail pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":320},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1.85},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"25021020351","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-22"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-22"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-26","start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000779","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000779"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009865"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000779"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"05","display":"Long-term care pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":360},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0.21},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":3650}}],"value":3650},"sequence":1,"service":{"coding":[{"code":"54569038232","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-26"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-26"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2020-11-26","start":"2020-11-26"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999999569"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"id":"pde--10000000780","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000780"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009867"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000780"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","display":"Substitution Allowed - Patient Requested That Brand Product Be Dispensed","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","display":"Facsimile","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"G","display":"Generic Null/missing","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"06","display":"Mail order pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0001"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":159.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":439.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":79.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":239.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":1}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":0}}],"value":0},"sequence":1,"service":{"coding":[{"code":"00000024815","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2020-11-26"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"220105"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2020-11-26"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"billablePeriod":{"end":"2021-03-27","start":"2021-03-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999945539"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","valueCoding":{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"id":"pde--10000000781","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/pde_id","value":"-10000000781"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100009870"},{"system":"https://bluebutton.cms.gov/resources/variables/rx_srvc_rfrnc_num","value":"-10000000781"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd","display":"Dispense as Written (DAW) Product Selection Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"8","display":"Substitution Allowed - Generic Drug Not Available in Marketplace","system":"https://bluebutton.cms.gov/resources/variables/daw_prod_slctn_cd"}]},"sequence":1},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd","display":"Dispensing Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/dspnsng_stus_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd","display":"Drug Coverage Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd","display":"Adjustment Deletion Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/adjstmt_dltn_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd","display":"Non-Standard Format Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nstd_frmt_cd"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd","display":"Catastrophic Coverage Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/ctstrphc_cvrg_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd","display":"Prescription Origination Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"Not specified","system":"https://bluebutton.cms.gov/resources/variables/rx_orgn_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd","display":"Brand-Generic Code Reported by Submitting Plan","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"B","display":"Brand","system":"https://bluebutton.cms.gov/resources/variables/brnd_gnrc_cd"}]},"sequence":8},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd","display":"Pharmacy service type code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"04","display":"Institutional pharmacy","system":"https://bluebutton.cms.gov/resources/variables/phrmcy_srvc_type_cd"}]},"sequence":9},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd","display":"Patient Residence Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"01","display":"Home","system":"https://bluebutton.cms.gov/resources/variables/ptnt_rsdnc_cd"}]},"sequence":10}],"insurance":{"coverage":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_cntrct_rec_id","value":"Z0007"}},{"url":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/plan_pbp_rec_num","value":"999"}}],"reference":"Coverage/part-d--10000000000028"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/cvrd_d_plan_pd_amt","display":"Amount paid by Part D plan for the PDE (drug is covered by Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"C","display":"Covered","system":"https://bluebutton.cms.gov/resources/variables/drug_cvrg_stus_cd"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_blw_oopt_amt","display":"Gross Drug Cost Below Part D Out-of-Pocket Threshold (GDCB)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/gdc_abv_oopt_amt","display":"Gross Drug Cost Above Part D Out-of-Pocket Threshold (GDCA)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_pay_amt","display":"Amount Paid by Patient","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/othr_troop_amt","display":"Other True Out-of-Pocket (TrOOP) Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/lics_amt","display":"Amount paid for the PDE by Part D low income subsidy","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/plro_amt","display":"Reduction in patient liability due to payments by other payers (PLRO)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/tot_rx_cst_amt","display":"Total drug cost (Part D)","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rptd_gap_dscnt_num","display":"Gap Discount Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"careTeamLinkId":[2],"quantity":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/fill_num","valueQuantity":{"value":8}},{"url":"https://bluebutton.cms.gov/resources/variables/days_suply_num","valueQuantity":{"value":140}}],"value":560},"sequence":1,"service":{"coding":[{"code":"50580050150","system":"http://hl7.org/fhir/sid/ndc"}]},"servicedDate":"2021-03-27"}],"meta":{"lastUpdated":"2021-08-17T13:48:52.943-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","type":{"coding":[{"code":"NPI","display":"National Provider Identifier","system":"http://hl7.org/fhir/sid/us-npi"}]},"value":"PCP167881"}},"patient":{"reference":"Patient/-10000000000028"},"payment":{"date":"2021-03-27"},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"PDE","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"pharmacy","display":"Pharmacy","system":"http://hl7.org/fhir/ex-claimtype"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"1995-05-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1995-05-21"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"1995-05-22","start":"1995-05-21"},"id":"inpatient--10000000019206","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019206"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020704"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1995-05-26"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"30","display":"Still patient.","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2012-06-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":39.1}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2012-06-06","start":"2012-06-05"},"id":"inpatient--10000000019223","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019223"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020721"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":156.39},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":235.49}},"procedure":[{"date":"2012-06-05T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":235.49},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2013-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.63}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2013-06-28","start":"2013-06-27"},"id":"inpatient--10000000019229","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019229"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020727"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":230.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.15}},"procedure":[{"date":"2013-06-27T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":328.15},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2014-06-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2014-06-17","start":"2014-06-16"},"id":"inpatient--10000000019234","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019234"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020732"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":239.76},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":99.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":339.7}},"procedure":[{"date":"2014-06-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":339.7},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2015-06-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2015-06-08","start":"2015-06-07"},"id":"inpatient--10000000019239","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019239"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020737"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":182.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":268.18}},"procedure":[{"date":"2015-06-07T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":268.18},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2016-05-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":50.48}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2016-05-17","start":"2016-05-16"},"id":"inpatient--10000000019247","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019247"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020745"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":201.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.38}},"procedure":[{"date":"2016-05-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":292.38},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2017-04-13","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":45.13}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2017-04-13","start":"2017-04-12"},"id":"inpatient--10000000019255","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019255"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020753"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":180.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":265.64}},"procedure":[{"date":"2017-04-12T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":265.64},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2018-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":50.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2018-03-17","start":"2018-03-16"},"id":"inpatient--10000000019261","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019261"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020759"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":203.82},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":90.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":294.77}},"procedure":[{"date":"2018-03-16T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":294.77},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2019-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B085","display":"ENTEROVIRAL VESICULAR PHARYNGITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":41.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":40}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2019-03-23","start":"2019-03-22"},"id":"inpatient--10000000019268","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019268"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020766"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":165.72},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":247.15}},"procedure":[{"date":"2019-03-22T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH00ZZZ","display":"PLAIN RADIOGRAPHY OF RIGHT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":247.15},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J208","display":"ACUTE BRONCHITIS DUE TO OTHER SPECIFIED ORGANISMS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":44.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2020-03-16","start":"2020-03-15"},"id":"inpatient--10000000019275","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019275"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020773"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"5","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":177.54},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":84.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.92}},"procedure":[{"date":"2020-03-15T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH01ZZZ","display":"PLAIN RADIOGRAPHY OF LEFT BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":261.92},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0}]}],"billablePeriod":{"end":"2021-03-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3155.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2021-03-12","start":"2021-03-12"},"id":"inpatient--10000000019281","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019281"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020779"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Emergency - The patient required immediate medical intervention as a result of severe, life threatening, or potentially disabling conditions. Generally, the patient was admitted through the emergency room.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"2","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12620.8},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":3235.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":15856}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":15856},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"benefitBalance":[{"category":{"coding":[{"code":"medical","display":"Medical Health Coverage","system":"http://hl7.org/fhir/benefit-category"}]},"financial":[{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/bene_tot_coinsrnc_days_cnt","display":"Beneficiary Total Coinsurance Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_non_utlztn_days_cnt","display":"Claim Medicare Non Utilization Days Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":0},{"type":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_utlztn_day_cnt","display":"Claim Medicare Utilization Day Count","system":"https://bluebutton.cms.gov/resources/codesystem/benefit-balance"}]},"usedUnsignedInt":1}]}],"billablePeriod":{"end":"2021-03-18","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"admitting","display":"The diagnosis given as the reason why the patient was admitted to the hospital.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]},{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/dsh_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pass_thru_per_diem_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_tot_pps_cptl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/ime_op_clm_val_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ip_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_pta_coinsrnc_lblty_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":51.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_ncvrd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_ip_tot_ddctn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_dsprprtnt_shr_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_excptn_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_fsp_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_ime_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_cptl_outlier_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_pps_old_cptl_hld_hrmls_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_drg_outlier_aprvd_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"hospitalization":{"end":"2021-03-18","start":"2021-03-17"},"id":"inpatient--10000000019284","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019284"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020782"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd","display":"Claim Inpatient Admission Type Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"3","display":"Elective - The patient's condition permitted adequate time to schedule the availability of suitable accommodations.","system":"https://bluebutton.cms.gov/resources/variables/clm_ip_admsn_type_cd"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd","display":"Claim Source Inpatient Admission Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"4","system":"https://bluebutton.cms.gov/resources/variables/clm_src_ip_admsn_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_blood_pnts_frnshd_qty","display":"NCH Blood Pints Furnished Quantity","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":4,"valueQuantity":{"code":"[pt_us]","system":"http://unitsofmeasure.org","unit":"pint","value":0}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":5},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":6},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":7},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":8}],"insurance":{"coverage":{"reference":"Coverage/part-a--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":207.88},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":91.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:46:51.064-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.85}},"procedure":[{"date":"2021-03-17T00:00:00-04:00","procedureCodeableConcept":{"coding":[{"code":"BH02ZZZ","display":"PLAIN RADIOGRAPHY OF BILATERAL BREASTS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1}],"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":299.85},"type":{"coding":[{"code":"60","display":"Inpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"INPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"institutional","display":"Institutional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"V","display":"Part A institutional claim record (inpatient [IP], skilled nursing facility [SNF], hospice [HOS], or home health agency [HHA])","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-07-06","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-07-06"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"J209","display":"\"ACUTE BRONCHITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019292","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019292"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020790"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-07-10"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8091.66},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1970-08-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1970-08-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019294","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019294"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020792"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1970-09-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11772.38},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-02-11","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-02-11"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3480","display":"\"ENCOUNTER FOR SUPRVSN OF NORMAL PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019296","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019296"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020794"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-02-16"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":20360.36},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-07-08","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"1973-07-08"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"Z3400","display":"\"ENCNTR FOR SUPRVSN OF NORMAL FIRST PREGNANCY, UNSP TRIMESTER\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019306","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019306"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020804"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-07-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":64739.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2007-05-04","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2007-05-04"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019322","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019322"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020820"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2007-05-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13376.29},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2008-12-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2008-12-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019323","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019323"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020821"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2008-12-12"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-06-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019328","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019328"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020826"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2012-06-05","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2012-06-05"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019330","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019330"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020828"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2012-06-08"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2250.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":9001.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11291.41},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019332","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019332"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020830"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.51},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019333","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019333"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020831"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2013-06-27","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2013-06-27"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019339","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019339"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020837"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2013-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2197.22},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8788.86},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11026.08},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019342","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019342"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020840"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019344","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019344"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020842"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-06-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2642.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10568.94},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2682.24},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13251.18},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2014-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2014-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019346","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019346"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020844"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2014-07-04"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019361","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019361"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020859"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-07","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-07"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019389","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019389"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020887"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-06-11"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1663.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6654.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8358.34},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2015-06-30","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2015-06-30"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019397","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019397"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020895"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2015-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-05-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019403","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019403"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020901"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-05-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-05-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019408","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019408"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020906"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-05-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2233.62},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8934.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11208.12},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2016-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2016-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019412","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019412"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020910"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2016-07-01"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019417","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019417"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020915"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-04-12","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-04-12"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019425","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019425"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020923"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-04-13"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2906.59},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11626.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":14572.97},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2017-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2017-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019433","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019433"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020933"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2017-06-30"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019472","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019472"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020974"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019481","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019481"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020983"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-03-22"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1608.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":6432.12},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1648.03},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":8080.15},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2018-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2018-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019484","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019484"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020986"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2018-07-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-15","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019491","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019491"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020994"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-21"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":7.5},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":29.99},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":77.49},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-22","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J0390","display":"\"ACUTE TONSILLITIS, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019493","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019493"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100020997"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-28"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-03-23","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-03-22"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"B002","display":"HERPESVIRAL GINGIVOSTOMATITIS AND PHARYNGOTONSILLITIS","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019514","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019514"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021018"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-03-29"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2212.29},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":8849.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":40},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":11101.45},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2019-06-29","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2019-06-29"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019569","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019569"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021073"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2019-07-05"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":80},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-03","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-03"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"J069","display":"\"ACUTE UPPER RESPIRATORY INFECTION, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":20}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019577","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019577"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021081"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-06"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":49.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":197.53},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":89.38},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":286.91},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-15"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"U071","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R438","display":"OTHER DISTURBANCES OF SMELL AND TASTE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":10}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019580","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019580"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021084"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-03-16","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-03-16"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"J22","display":"UNSPECIFIED ACUTE LOWER RESPIRATORY INFECTION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019592","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019592"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021096"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-03-20"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2580.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10320.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2620.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":12940.64},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2020-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2020-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"R05","display":"COUGH","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019596","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019596"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021100"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2020-07-03"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":10}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019604","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019604"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021108"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":17.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":71.33},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":57.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-03-17","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-03-17"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"S51819","display":"LACERATION WITHOUT FOREIGN BODY OF UNSPECIFIED FOREARM","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":9}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019608","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019608"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021113"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-03-19"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2625.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":10501.13},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":2665.28},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":13166.41},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"2021-06-28","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/claim_query_cd","valueCoding":{"code":"3","display":"Final bill","system":"https://bluebutton.cms.gov/resources/variables/claim_query_cd"}}],"start":"2021-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"assist","display":"Assisting Provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2},{"provider":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"9999998393"}},"role":{"coding":[{"code":"primary","display":"Primary provider","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":3}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"E785","display":"\"HYPERLIPIDEMIA, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"M810","display":"AGE-RELATED OSTEOPOROSIS W/O CURRENT PATHOLOGICAL FRACTURE","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":5},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":6,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":7},{"diagnosisCodeableConcept":{"coding":[{"code":"R432","display":"PARAGEUSIA","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":8}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"facility":{"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd","valueCoding":{"code":"1","display":"Hospital","system":"https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd"}}],"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"id":"outpatient--10000000019610","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019610"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021116"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2021-07-02"},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw","display":"Claim MCO Paid Switch","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"0","display":"No managed care organization (MCO) payment","system":"https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw"}]},"sequence":2},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd","display":"Claim Frequency Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","display":"Admit thru discharge claim","system":"https://bluebutton.cms.gov/resources/variables/clm_freq_cd"}]},"sequence":3},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd","display":"Patient Discharge Status Code","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"code":"1","system":"https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd"}]},"sequence":4},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd","display":"NCH Primary Payer Code (if not Medicare)","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"code":{"coding":[{"system":"https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd"}]},"sequence":5}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt","display":"Revenue Center Blood Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt","display":"Revenue Center Cash Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c","display":"Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt","display":"Revenue Center Reduced Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt","display":"Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt","display":"Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt","display":"Revenue Center (Medicare) Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt","display":"Revenue Center Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":48.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt","display":"Revenue Center Patient Responsibility Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt","display":"Revenue Center (Medicare) Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt","display":"Revenue Center Rate Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":195.32},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt","display":"Revenue Center Total Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":128.83},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt","display":"Revenue Center Non-Covered Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}}],"locationAddress":{"state":"22"},"quantity":{"value":0},"revenue":{"coding":[{"code":"0001","display":"Total charge","system":"https://bluebutton.cms.gov/resources/variables/rev_cntr"}]},"sequence":1}],"meta":{"lastUpdated":"2021-08-17T13:47:05.069-04:00"},"organization":{"identifier":{"system":"http://hl7.org/fhir/sid/us-npi","value":"8886688539"}},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17}},"provider":{"identifier":{"system":"https://bluebutton.cms.gov/resources/variables/prvdr_num","value":"220035"}},"resourceType":"ExplanationOfBenefit","status":"active","totalCost":{"code":"USD","system":"urn:iso:std:iso:4217","value":284.17},"type":{"coding":[{"code":"40","display":"Hospital Outpatient claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"OUTPATIENT","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"W","display":"Part B institutional claim record (outpatient [HOP], HHA)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"},{"code":"3","system":"https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd"}]}} +{"billablePeriod":{"end":"1973-08-26","start":"1973-08-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019624","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019624"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021136"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1973-08-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1973-08-26","start":"1973-08-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.767-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1979-09-02","start":"1979-09-02"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019625","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019625"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021139"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1979-09-07"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1979-09-02","start":"1979-09-02"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1565.43}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1985-06-23","start":"1985-06-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":900}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9}}],"id":"carrier--10000000019626","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019626"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021140"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1985-06-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":900},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":146.3},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":438.9},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1985-06-23","start":"1985-06-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1560.2}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1987-06-28","start":"1987-06-28"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019627","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019627"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021142"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1987-07-03"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1987-06-28","start":"1987-06-28"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1355.53}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1991-07-07","start":"1991-07-07"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019628","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019628"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021145"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1991-07-12"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1991-07-07","start":"1991-07-07"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1559.44}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1993-07-11","start":"1993-07-11"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019629","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019629"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021147"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1993-07-16"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":2},"sequence":1,"servicedPeriod":{"end":"1993-07-11","start":"1993-07-11"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1642.04}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1996-03-03","start":"1996-03-03"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019631","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019631"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021150"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1996-03-08"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1996-03-03","start":"1996-03-03"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":889.66}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"1999-03-21","start":"1999-03-21"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019632","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019632"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021152"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"1999-03-26"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"1999-03-21","start":"1999-03-21"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1497.27}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2000-03-26","start":"2000-03-26"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019633","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019633"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021154"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2000-03-31"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":69.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2000-03-26","start":"2000-03-26"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1213.52}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2003-04-13","start":"2003-04-13"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00101","display":"RIGHT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019634","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019634"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021157"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2003-04-18"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":74.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2003-04-13","start":"2003-04-13"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1478.67}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2004-04-18","start":"2004-04-18"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00102","display":"LEFT TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019635","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019635"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021160"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2004-04-23"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2004-04-18","start":"2004-04-18"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1226.51}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2005-04-24","start":"2005-04-24"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019636","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019636"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021163"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2005-04-29"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":59.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2005-04-24","start":"2005-04-24"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1855.4}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2006-04-30","start":"2006-04-30"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50929","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED MALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019637","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019637"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021168"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2006-05-05"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2006-04-30","start":"2006-04-30"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1338.95}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2009-05-17","start":"2009-05-17"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00109","display":"UNSPECIFIED TUBAL PREGNANCY WITHOUT INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019640","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019640"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021173"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2009-05-22"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2009-05-17","start":"2009-05-17"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":1284.64}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} +{"billablePeriod":{"end":"2010-05-23","start":"2010-05-23"},"careTeam":[{"provider":{"identifier":{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","value":"999185261"}},"responsible":true,"role":{"coding":[{"code":"other","display":"Other","system":"http://hl7.org/fhir/claimcareteamrole"}]},"sequence":2}],"diagnosis":[{"diagnosisCodeableConcept":{"coding":[{"code":"O039","display":"COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":1,"type":[{"coding":[{"code":"principal","display":"The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.","system":"https://bluebutton.cms.gov/resources/codesystem/diagnosis-type"}]}]},{"diagnosisCodeableConcept":{"coding":[{"code":"E669","display":"\"OBESITY, UNSPECIFIED\"","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":2},{"diagnosisCodeableConcept":{"coding":[{"code":"O00119","display":"UNSPECIFIED TUBAL PREGNANCY WITH INTRAUTERINE PREGNANCY","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":3},{"diagnosisCodeableConcept":{"coding":[{"code":"C50919","display":"MALIGNANT NEOPLASM OF UNSP SITE OF UNSPECIFIED FEMALE BREAST","system":"http://hl7.org/fhir/sid/icd-10"}]},"sequence":4}],"disposition":"1","extension":[{"url":"https://bluebutton.cms.gov/resources/variables/prpayamt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_num","valueIdentifier":{"system":"https://bluebutton.cms.gov/resources/variables/carr_num","value":"31143"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd","valueCoding":{"code":"1","display":"Physician/supplier","system":"https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd"}},{"url":"https://bluebutton.cms.gov/resources/variables/asgmntcd","valueCoding":{"code":"A","display":"Assigned claim","system":"https://bluebutton.cms.gov/resources/variables/asgmntcd"}},{"url":"https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},{"url":"https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt","valueMoney":{"code":"USD","system":"urn:iso:std:iso:4217","value":0}}],"id":"carrier--10000000019641","identifier":[{"system":"https://bluebutton.cms.gov/resources/variables/clm_id","value":"-10000000019641"},{"system":"https://bluebutton.cms.gov/resources/identifier/claim-group","value":"-100021176"}],"information":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt","display":"NCH Weekly Claim Processing Date","system":"https://bluebutton.cms.gov/resources/codesystem/information"}]},"sequence":1,"timingDate":"2010-05-28"}],"insurance":{"coverage":{"reference":"Coverage/part-b--10000000000061"}},"item":[{"adjudication":[{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c","display":"Carrier Line Reduced Payment Physician Assistant Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"0","display":"N/A","system":"https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt","display":"Line NCH Medicare Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt","display":"Line Payment Amount to Beneficiary","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt","display":"Line Provider Payment Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":129.16},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt","display":"Line Beneficiary Part B Deductible Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt","display":"Line Primary Payer (if not Medicare) Paid Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt","display":"Line Beneficiary Coinsurance Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt","display":"Line Submitted Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":0},"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt","display":"Line Allowed Charge Amount","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]}},{"category":{"coding":[{"code":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd","display":"Line Processing Indicator Code","system":"https://bluebutton.cms.gov/resources/codesystem/adjudication"}]},"reason":{"coding":[{"code":"A","display":"Allowed","system":"https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd"}]}}],"careTeamLinkId":[2],"category":{"coding":[{"code":"1","display":"Medical care","system":"https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd"}]},"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt","valueQuantity":{"value":15}},{"url":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd","valueCoding":{"system":"https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd"}}],"locationCodeableConcept":{"coding":[{"code":"11","display":"Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis.","system":"https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd"}],"extension":[{"url":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd","valueCoding":{"code":"40","display":"REST OF MASSACHUSETTS","system":"https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd"}}]},"quantity":{"value":1},"sequence":1,"servicedPeriod":{"end":"2010-05-23","start":"2010-05-23"}}],"meta":{"lastUpdated":"2021-08-17T13:45:40.775-04:00"},"patient":{"reference":"Patient/-10000000000061"},"payment":{"amount":{"code":"USD","system":"urn:iso:std:iso:4217","value":645.81}},"resourceType":"ExplanationOfBenefit","status":"active","type":{"coding":[{"code":"71","display":"Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim","system":"https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd"},{"code":"CARRIER","system":"https://bluebutton.cms.gov/resources/codesystem/eob-type"},{"code":"professional","display":"Professional","system":"http://hl7.org/fhir/ex-claimtype"},{"code":"O","display":"Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)","system":"https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd"}]}} diff --git a/api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson.gz b/api/src/test/resources/efsTestDir/clientA/EOB-500.ndjson.gz new file mode 100644 index 0000000000000000000000000000000000000000..99f8664c09ddffbd4dfc204268c689de6f83e30d GIT binary patch literal 103412 zcmZ^~1yo#1(=Lod0>Le~LxQ_of@^@_?(S}b2G?N0ErAf+-9314cXtLGWab}o&i8)r zUH8AM)|zyeb@$V?dz0Q(*jOCQY+M~3U`|%;J(pxU&Y$<^ zODC_Ak_;G&+`|(dgs9M0jpIxo35$I#??$hv^7>A?yO6SSPHOks4b|a{Lmjc+m(ciI zj%6Iu#U+AOWz}yUe_li4Izp2!j;%lyqG!rTn^UX-;LbwvfVY6m@c@!%DzLWziDE~& zNDg{`F8OL$?^K?sh>tH93A4p^$9;8SeCb3ChH*e!8@p1`dapM`mjPgLXb zlvZm90D~-6Y!vp_0bn1_3`iUJY=&HK;$UkZFIm_Lyz_>mP+L5DKqw5w2JU& z^62Akv-E`&&nceB%3KIrMUi~98vWJ&`Cg6CfbXSdAF}6^q1?%Gv@TVn&kZlnLe{^rHB8T$jzt8o3x#{hQ7Gf(d-d5mKv{q*q7s>_q;$nf?ffa5IQA$GPqD|}$l z&BRY9ZlDly$SS>+JJJrk69oSOoS(QFw30-`LoRO*My!NVb^Wo%rKj^(o}H+`=R-X9 zzy-HBdtE!Z`$}^L@R=Jn-mZg)k{V9+^gP6$U|do>Y|9gH9^L6x!*WyfN2x%yGpd1~ zXNT@gKc2o5wC++#Faq{#u1`yKrLm#G7*t>AjJ1|%&yM!d|9voZUI8GRt z;TLXBct&pz+tG9!o=*7*0JgG@Sn&%bullT{$s=<)S+-aMHoxMZX0Dw4SU5RoEeL5x z=|7X2*VN5f2tWV*;1o%YRsd-d-)OH2s0AHp=*?madR0G+elxH4jT8FTs{&azdoM@e z|Gc-}*Npd@bHnUCz^%d0j}c;#3AiH6@@qLFJZG7hP!e&gY!TjmE{=0{cgQmIKhPs; zj~7ksVB&G4i{Hml9g9NKO?{D(onDWIvBpw90k%4%;--u&vt zkK4-!zI^NtsHX2ka>Ad#G=)C71F0Y8)0+w+KH5Lgg1v59d-AKZqyjuR^+%<)ET;K( zIBFMTwyjuq#)X~9B9@Qs_VHQnOep~_Bt*x8Pje2;jt}x5pCG4h)wr$P=$&`{ab=DE z?S>FrV>Ab;O-)m_cDznk8i0`iFJ1n^aODq%6Ay!G^YKkoUYS?w{yQwP9VeIAe|d9Ih^!P;_ezPnD8JI)geI+s4g2(5(-Jdag} zWXB4EC|LMbaSG>!A7_%%vPT;x6jg*KmRCD~o}|^rb2_ ziD%p)9&guwi73%;#+S$S7q2~@j)wg z{+h{w(;j=gJN9(ugFjvwUUr*ng)S>qsIrP4HAO-Rm3tcDQQu9apMZfhsq0U*iGOMr5 zIThLy*rM#RkM~)7GT;@f8nSNk=<0DHF%;22e7&~Yl;>xG<@ze#UpX1{y4b(NzQt$HA2OgVkxu-fxOEM1TUK?Jr?u=N{b4mC}k>2-emjGH1yD{5?uI zelG4bU;vuBKBSYc^!qtM#^TAA4X*FVg!}l(^zXWk&d&Btf!^tc{2HW*i)PJDV1ZmF zhp>4_`_ttH_LUMi*_j<%)Z*#ALqXveK2QwAcb*`v`(RLAPh#cf#tq1Q$2%fwIda_E zFG`la*P0oV8htpwT-Di>8GhwJ2ao|U(C11g?K()m1J>Snu(jvBsU!#xPA$vHA|`mA znml;s)C_-)(D#8}64@f)n@qDHgMn<_mvN7W2Qk+}tP9}uhv(0Jv7Js^~q@pXw(p3vO)w^B=jCwM@uWWT@ z@}GiWjTfpCIZ7GE4!bq05Q&zsI4nhpEHr1kJe1~K>fn}lxQ+ej6P@U--1NH%k!CM^ z@TMEU8hkF#55A9YjCz!w;)xnN#ef_uX;@4zo~=vS(cXN!ux}XjBLk$JSpb9yI^Bio zodYIWd(Ss_l-%Sbb+M(NRB!K>8pB&MB^3LN6X>su&8u|)BMw?|HAfO+r+{0~@auBx zrK7Kf=0Akoizh>5ALvKic(O^P$7EJ+XYu5@4ldnp&QCW#J!MOBja2Djz}fSkK+en8 zRy2q+D;w@2$zrVO&WlS6J6fhloTlPYK}PrQ?{;|fZg=-$9;0`Q(+S1D97n!6Ubv1g zpG(<&+Vbh-Di1qs9xQr{w*LLRe5P#Po#A1jH%FbdD!=n^`v?q?FMJ{{U0Y!d&lzqw z6)-3~l+2_o#tJJ4Z~v+|tkSWom%hh36)^9<_<&mZ`eFUqSO5abg`}StXEn514wygs z-#s;s-1di041g*JhQpQ4k6;dHFs>P~mJDjYu7?-6udORb>4OiM~ROz>*ZS{V7$vn?DUg+30-Gh(2 zYj;}=dAIgOA2__ReOnWL+WSgI`rtW>kf3?e)8{A!?Ura9yJ$!6-kh4yJ^HZD$UW^m z!{N7oQvLmyxttl_9-XVvzU?zRk%MNaEqa;sqkP?mNI@OTbN@7_Y%^1_)0$J81=Wjq z`170NqAEyYmWp4E$?%cPT3h|oC;ceAHyC@-i)L73F5?F87j4+w-m+Ls51Z5ttPA8? z{#xEY5?U^Hx6xzT&>lB0iQ!XQ85OgXEUcYlwWu|27}d$E5w1}y%*{ATcD`OTSjxqI%sY#?p>TsVgP&E)TQ zNIKqwss47Ec;OnC25{x?5zEoFZP>%j`*RFcs%=WQVAp>kucK=#zPU&8gYSS{C+lkL z8b$3uERwsQs|j@6^nffOLfL_iUA!B_7jN#1T+a~yDsnLsK)V`VTNwXz9diHG_{R^_ zpwWLL^PD7et@>1xxWoPy8#;onsjA^t+nBv$PQ~taI(!l&ROndY5g+@YIv5iR z1=Wh1UFEJd6GM&0{@^^XTwH{fedzmK^Q8-_!0i+ z<6-_a*TkTT50sNrwEF?tH4wxKo0{IM>pd{OzOu_l5e_B$pzO@pyT1v%0(v_)X;Wtt z@EY2Y@vw?!(x;{H#Z`EzH+Wwfm;kH1tC4L%W26|jn?T9^t2*B)|8>xUJv{I#$h(ku}D@-mFB7`?D z8Up)YBEG!P$FT4RAwW7M6+>SQvZZ@6=tlTNw0^=fcj_^Ywq~fG$ zCm3n9NPx>KvjG`83uFeC|C&QycQ1AI>;fhq3JFsHR!~Tn_=eHIjjr++O5}R}^Y;wM zv$r4KS0bx7s@zlfVT$~0N#8`i3;}_<75lWQ#hR?UP(C0S=LApI#AhF&_RJbkp07U2I&V4{Xr?+U6{> z&E80Mg&Oq;5m}V5Z~AZ$sobmT)+QU2Vt$GEAVFDxsq(F&Xep{E55Is-443LP)(hKs zS0cZml5I{C=fUa&7v(WlDmM0SUloxAwok8Kk>bcS1&5|KYqOEcpwJ*-!@UX$75hMu z-|*uXA(a{Phw^9?@=%N(Wc5iJa*>}C-kRbfL%K2b_PLYYN7LeSluRw@`A8}u{H5ZZ zVK$S}Zwip66&H%tLQ=JnxtkW{XDDnixg&@q-e^d_xuV;iS+(7vaKYr)65wALJyje~ z{Nc#q;g#gfgj_Cz-jEP7B>q<%K_Y>E1V$IXrtrZO{%PGj8FJ9wvxorg3}wb}I~M+h z8&f=jLIU$I`aSIk`Rb_RR+RtQ3YXwd%kIea{UL3AghD7}OtfUz=Ii_fLJS?Ulw@|z z8{OPwb<{!!LCD=98{!ufUYJm&8GcR#bU5Uokc?DRXmI%5a1lCv$^=#fJ0+MSLsy(9 z4vpnc?ws(@Q1;elXJtfsQ&d{gU^N-Xmn~HND+X!1{huiRN0Fas=FYtTr#KXXsw^9} zMp|V5AM)r8IzPMXiQK5T4+@~L{gu7|G{es&0mV+`Wo&4dDN8=@uQ+y@{$Bw9qwd7Y zeK7Okjlh3w%d&`O9?bi@y7g=jNf6NIkkNnt*@H*ceZQIK2!}lHG#R^*2M-mzEDaj$ z6i%P+8WDp3u3T{hkqiL?zk;p{3d5RunKv;aCL9WED9i^K%0Nsp6bb}r9HZ!aM^@AR z_{BjHbB7J(={fESPS+)+O^@$N7T@{a)%e>y%?Ur2KR$Y&A3YT|?dZGvNgxKkE6no+r?L;mYmSt> zIe$xgBFVWIhn%&|XPaCc6uwB5+~`|yRwK`5_-7CsoHHEDJ1UPF7al=Vwoj3t3x|&V{*Y6Jsw8FC{F9 z>(7U+_?AYc4m(LVQQK-4kWR%}4HDFuQb-dtTMc%7{zaN;HCXRqCuOU>WF=iky@Yid z;UOVdKwmULO6l?B-h){z$0(GXFp*dTSD zDf(o!HtN9wf&d(8P@I@_9`z*F!B4rtO%mrgKItq|Rr24DpGC%}G>%C8v$mJ`eG*;k zoL(f<<5>Fp*7k*CW8+_bMHvKOT5w0`*dwu*b94O9E|4eHt|IE~X znf~vDKCh1cXL>JZj=-P>bC&6g>OW?DgIn3ArJG2f28AC7M4(WhxHHkZU&mb)#O0_S z4V9Lf9vw)_3-IK}eUko3{Z}3;Kt{GLN&OKDbM=$t3(8Y*@4tn&?3PVJq3+L4@ClUu zqKJEe;)Nje%fTX0y32HYW2%zU>l!vbaL{e~_FZ?OA?n2eJQ=hv-9^2Db)hBXHRE9{ zje7R&TqRVnhm>)G^trIDsjxCx@Cxbpn;;UFr`u-S%jU0OouPP!3La&-YK#iB0D3(y z;#vr>ff3$)LaFjTMr7>qzs^zfq$f?u-qg+6=5Dle!H=c(0|nOed-iYZ<k zBmb|3^i1J6i1n|JnYP3i-<3J&ABAmP*Yct5wq>2(u*iSC)2ha|tq?&?KbMi219nMt zuSOWl$asDKk#noXr*@XUW*ryE70JmxC4t|5x@x@DZoIpsxE<>DIy2JC=&mSw@^c20 z*9d>F^nN|#ZS7-m#WN)Wa+_sm5p0h>Gk-jKx~jeGSZ>9J05Dfq0(vuwa!DwkmO$;U z)_M`lSo(!$i;e^2tECtN!=S~-GxfWtGRv&22H*DCw=4Xo?%?~$=9BO1dwbyJr|uX^q=S~+h3sKa%Ub37m=6Wpk5Nw2xOj={HQ@XOV)xX$v_;PJD=gkyG2nfb$* z^^e7@o#)M+r)fv>KaN4UdwQ-(iW`mNm*)F*{Eaix*+E+fh0()_m?#o)I8!03)IO=GnRO)el6o{IVvQ?9NjDx8WH4=axFQ%nP#;_3-+(yP=#a$MN z{MsuI`XdJt3py#-1B!{O9l|3rlQEz)7QMGm`d9i_k# z?Pt~d+lO?1{3F1_c8D;{YF9yl$;kpMrceAgzn$09nm4f|UkkP(h}X@#F8%v$R&@HXIMW zF=wEG8pN@(E}AU7NKogFSEVj@-7j{Tv>+J*)lh$JR2^A}$1jGn9V@T>H1{;)yxk_M z8$}c*s{6AyJh;;1iq`>LTfH>JS-z#U8?F9!OH)yOx;~4yI?U5?x|_d37~cS000biY z>BS?NC`^utxi|FTuTMX|az!uIo%=lnHmxV#nw}MAm9yr+e5IWkIkWOzRCy(%C4J@6 zBcQZxK`Zr`Bv7Hi@Li>V%M*99$!UGe_SW9u2Xr94DC?O;?d5^7ps*9?pYzWFm!}>z zeiq70!z3Cj-#Qe{uKhQJJ%R0SN#Z41*oiSXsSU>RjJ?CzD-XoX9kz5j=AE*78x?qQ z8~MLSvo?+xHxP0qW%Mu4lPg1hp9yi!Gsr*XJs~;!%V57}9E$!F>8L96(+>3mo`X+j zf#3njZt|vO=@&Cbt(#->9{NghPUrAed}`3JlB!RQKz6L!<#c8QYfkLS3V!TtVOY(y z`%jO>Y_7!BBd`g#=0(BD1E`ymeNkOCUnR$JNbes*)tO*CN zSRyel<4TB>pyEg^%*<(aM9uT+L`1Act+1SPKx<;gYTWU2LtU(=FHOH;uIh5ZIqcpv zZh^xG(R_$4CDZ`(TsXnE2A5TLE>5(6QE~KV`mfQ*6EnKJ7_pq~HRGbZo zm^$?1>3a2XN!C-h3<5l{?MK~mTqj&Db=`Tagq0?L;i%swXLk% zQ%1m#CdJYrjaTu~SA)9<(7QvcA!o?*Dh}v5AhI02FcNgLzJ~rM270yn?mgcc(@{-C z0MnDEVN6${zhPT@?qh)MHGOZne>#A>53JnBs%JkQuo|hK9fchUSpzf^kI469Y|9%y z%|2T`cxE0qiK0{%8#d~E9EcUy!=ziU7=#}#%Sqo}9oAwMY-a>D-4A+H&WnI9O6Hqe zd@jO9nHu)jRe%AZOj@ne^wCaW{jAR3_TDy4wU9m5ibbpXjJugUG1RK`QU&rc(YHSv zzY>H^A3ki6jZG^QC2i*)&;S;H5BE6}j_m;2Q(|o>GuB+Vw1)Ot+R`h)Dh>JWb=7QZ zZIFd#zVqkr9BHD~h6WyjX+K`?PLQMST4EIBXPW^Uj!GjKuhPhmOZOj)n8A(r#gR=? zZw5SjC$-d9wHlMZ{JH@5JGJAD*)0v<5(daLDg8?Zk4~%8+OA$3;0f54c+w#FHR@JMF=SB&&o>j8_Z)L$>5qkEzQSbqWjqqC;jQ zN4Qm%s>cA2sWaH7Y}l#@0;cEBC9Lp5le!`Qdpr<%2X)Lqks>%0j)B4Z?~0 zn}vB&H>kpY(@omd4Z&8M%ieM3u-umW*3H-cV~3gRCo|s|Q5pk!D6QWylN(H0A(@?+ zourH`zyl|Tw8p4U;+##Vc(~m9 zSK^1BhMu-$i>k}4m>0)4=|>M}tTwG;5Orj5H47yAu9(uhPCz~=UHmT@jBh-H@+z~s zAD>C+h6RUxhrfC{3NNNxC0vHnoWGFJg3^J(%HzDG8Ym0)f9WwA z_7S=p+VHnt4POJZ1KSl~TbYSM?0lzA=^YYu$+4?&{-t>lBTp!xy3iAqzCnLSVBeB?Z8uJH?m%EGyZ;FkcI-~3EvQ0dv$ah97@@qdzNZbc{I z-f4Qp2tkW&LWSer`&aX?=H>A#q$};J{@D&a`v1^8G!irDD$QAotor+onRzR{^!<{0 zyxRMH7q`9qZ`Ro6qUjA-0a4jr*1#6U<{Ln*zAe&Kj`?L!g~m>53RXmh4mL6BjT3lISDtWRW~Mg#H===%=ao9 zs<|PN_PF=l^z1`t{%T%rVlPcpZy)g_12@{Jy`lS|#Z{^5|0J+U71%FM^N*1~r90){&vikC+Q6bIKe2}NWa+V`LsiN!!fSi7ePrxFDKVsImY1bB#94q)xct~r((7m zhCh%*4E+m5cu_?uO5KjDBg;7DT?Sq+$e!CeZ=)OjmgxKrysc^8Qh`j=u-Hso&~ zkL-Rtjph#%!9kzPPvJgl;qDNU!$3DN0SeLtbQ$FD@P9TX4=?*9ezm9`{zD){}x7sIvMC^|Y=@B!|V~bKDOf6^Z z#Uw>WjpY3h3)mho_ z#k2^-xFeH>2laLtZ?HKL@}ZGPDUycOhWC1j+%XsTE+}YhLD{sfgylaE>%X3|gE67H z4DL_yy^}j)|6`FqVtjAVyID^TnlGaW-`v|{)BAy5_@x)6ae%hr3)D3(S^tY}NeDR! z5;{E8!;q11jQamI?tsX#u~6<~>a?*P9iuZLU(8p2G|`Nux}^WVabpDd(AF`Ca#GQ$ zOPNcPdWXJSAo8QJ@`i7|b0>sFe_6NJ%W^hV(4a#m3f#Zz?A7u_b0XB?;wF*OCk^ZI zi1^=CBcT_Xpl^d#8ne(%Ikh99g5(k7p*vXZtJsm{Q)eJ0)Q8H^J$ZQkaL_+cxjPX) zR6v*VGo=@$tc^s3!1Mxo?bQ#Yq7%x;VNxqcY)ZIhI@Aacki)SD68;#61QBMCpg=|N5wLv>*d`YyUxRHlF#DWbLI~qj zBQ{~#drqArG5TOkaC7=$pe7|rdG4?#dPcdjqn=RpS{aq$T>{WzXXiP}>g%$X{tGy;dxzDN7CMy$~!R%dxw7rC5 zKTo}fk=_QN48WKsFTn(|bMa#up|K$m!pEr43}6b!NMRbWyHsjZ;`VX^eS{;Q=u&V) z=9Btxsfp6~=%9nDcoD+)2bz4313`nRdXU0s95Sw|y6JiXfM~m$wdr2@JbjHU$1<@PBbqq3PSWp+TH2qlieHKbGC$ zEeR!LrjTk9X0d+Rk}sC*P(`Vu9b~947^u0Iuq^+?|6u;Y;0h*uY|GgJZ8T`0MkjiEFi)jfkfFg_z8SY>Es8GVxQ|&ivN?!xUqJjvO5(xS**S}+$3>~v# zZUgj8s;Q7L3-6hbpz1Q&PcK{i;spPc?I;iapUywQ@$+4u)#)Z%&V>KSAsbIp%1h)A zlZ25g+W-CI;w93P1;B&GRxT8OpK@rte+r+vE|)?LPxKv&awc?eaHMli=}7Oh-(q_S zs__2~;r~3gd88Er2Tfy0CDlZ zWQ|mmy#T_FDQT> z5-g@2ea2pc67+hlzROH$42HpX!EV4f1v2seQo^PvRUE;G{dNa}T<|DZKnxrzPcM=? z8VYxlp2L^@*H;Xd^G!!HO$Z~?!^O2y=I$%}>)#ga;RaIUQmlk4KPsrfS z*Wn*crgwuJeR!*;+*-z*(rt?}jF~eU*AM$4>KiqLqxAF9=j-^(oY0$yFn9~zhK^Hy z_UhfD>A9|wa58K)RJWbbA(C8`rDeU9(kz=u$p)=i)uSZRAUsNIP4Zm$m zGT(==Zvm?cj0>4l$&t{K;rEyH%cO!^C-?d-5 z}jWh3zx@5+D33O zF*xWqew!oY;IgA|Vt#M$uB$5wqlw#5U1mBW;_;Qx0ch;w2kc^8VUDA(RZ(3Yf@X?U zZSg2CWh~l=m`Q7v@5%5GC%>wT6r@oJ;%L%dA9X|))zA-2bAZK?Skn1m=0hA6eLgSP zjCi#qcs`M{whZ5BP0CUvn5E2nT^sGdVHnLqyp_DJknXS;s~M4YqbY^VA`)rmTqD3( ziT9(hcGF+L#=9s}pX)sUxIJZc&HX+%QVFCu&{F z*A#*g@;9@ct7Y0+0`E0IdJp0W)V7Nt!noTdvs?;(Ani?_`d2!!Vh3rXi%Tp~#q-|2D!Yu=}iN=enAcRJ&+)3hUOyF7)_!@S4wVX z_`GZ8Eo_KJk1_sugOJX*NZ|6FduZQ=WPZix6Y%5v%!T3AxK0og_LvF&M?C_wC0=r- zc~|*M6pl=3)*SHjmgjRZVRi%hx9E5P=wyWHVJuyg`)bC~aLl26Pd&$?rPqa1f6AHA z0Hacq+e;>W&cKPT`cGQ@qmScIu7Pl>I}Q=Sx!?dXzh6SU*BcG^#K+v#fVQk9#vKlt z-!Q{m3WCRl_x5~EU=HxHk3hCCLR{xqarBpJvMQF;fmSD>XGW3aeb15Y!};y#!;Rd{ zKTR!IozE5mWJHbt-+(KY>5yVd*01Kr0U&ToO?_ts=MlHL?Xda0}5iG+R#xjik61`9`b1OB2}Yw4dee$}K9|d0)a3=UC-+yH?}R+1xoX zbUb6lk&wOGze+HLSSFyJ8@oS^?B1gH?zqHnM--s9L>S#!ZNmG}*@n4zK!D9)=&F2Y zQsMXZm&?7a>#H`TwC}s0uZ1A)!dgOY$%cxw7%>kF@ZRqN3iBKbHW#^anfnP_L|e&N zBqsb;>sMR4Z!8BMr%W*GKOm;%7n|)jycsq!1G;mOIeIRW>w*qpkY*s&34P{I+h5L| z+AQiubRjMAo|k^L=8+Jearm1nttf%F=wCC;feV}dM-ZKgEy$lb;vma4SG-I0=i!5Z zxscRr8L`aIAc_D^KP?@+0;!dUnpEc6o4VOTS8di5?&hqqXt@43n4*Il#+UE<80Z}0Gxt;D zVsB`@>mqnnD{?y5j=Vb2Glt=EV3Y&tyKpvMT_AWB+>)&)@?L=4IEeC;aB&}3dlf^| z&7{bp2!(s(H)xT8Uq8;>ho*Hw+ZWhgku3BiZ3qT%tU+m3ZnD8pc1|971Gug4>ZHh? zXROzInC?$_n%S6qLmfh!S$G;3`8KVhm+V?wpZv-CAlS-IVZTP)SpK$-)@dl z4@YLIV{?NgUE0>EyC`_=OuxRe#d4s!`oL|lgG$bKhMclkQkr*iPn5Wb zQ3W@MTkKJPeuo#-C95WLb^1F-{Ru7*5}9bjnYs$jrha+_MhFNNeb?f0kMnQ4J9k4_ z?o?Ut-|p1G&LEU?L4S{9e-tYEBIUTFuKmx zgSlp>$_;#oV6(y8Ix-+V^ONivn1;XJouj?IJu^ZPtJCY!medG^cK?kCQg zk~5-J`M%dBSH}mk?UmyY-87r@klS3^QUd=Ef^{&Lcm{=H0-a3KsOwg?M-^A!vpvP5MYtYeH=PmAo2pmQIbuq` z<&^A(UhN>b!0}J*&4g!(DN)cT;3yt_rgrHGrcX#}851g$;zaE#i`81b6{090$$kGA@;>f?_lZ8$e zi5`DrXUc!)nNMK%JM_b3M296k^fM+L**pArnl$pqdQq(y2kGsP4hvma8xcrO-xGo; z?GSie*odo*sH?CRBB;QDMB=eK$qpe>V$^w9lM!@ZKE_Z;gVa&KzP*3tc_H^XwiyT4gkD|{u$ir@PFM2B=XC9&mE%d_Su#1DDpR>LY#4HTzuP<4AbqGFZo zCWi|jzhwcG%3P?(!{ams5<`mAcW!q#htXt%zKf|+yi359c}?@>M#1P^6)xg_1DUC8 z)@voi;$XGz603Ci&CgEn`S7x$QW1MfHeT8(8GLwyH@B|ugWlFDjHIxN$mmfjulu(g zLGPl7+Lent8!80`sxLP<|Meof|Jfyg-P2q)DhWf@Ir;0~$NKA*m@3(-G{pL=3uG&s z&o%CFRRy4B4;!@HM>a9RcF?+6( z6#Vz7V3SVYrpU?UQ74JBUTNIduMxile-O{NN*Bog^ofB17Z*C~5BYg7?c@xGWPeS0 zYou}wqn3{4IviwKJtF!6A(Hr>%0IbTZWT-9t(N-)vG_1!y!)pa z=}w4TjWjJWwTjy3nx$IL=Sv%pt^S>Rp5(MpXA^jl3K33`(C5o53(ha#KeuI_k6yqp zQ{7;Jj0nZIk(CMS4{q*v*|xZb9?a(qA%|8q2|+$?l!OXjc~fT-@eM^G#$^s1^wVQI zv6lu}I^B?HXb30<2#!GJ--rSok6aoaTJ%j%{s(egGXO}*K;LIOl{ zr=-{lg!wHC9>^t$wVcS}j|2HYI$UQ(k`eN40A%hrs5!-=uEg?WhE~ zB$m8~#A*5Kpm`g_RCKtBL}XXKqkv2W$-{!m^{33N^)$<_;m=P8cA$HW94)|~Q$M?0 zj{rg2T>ZC}*}&*&kMlxjaH%uc7n&C5?>r^^ICkJ(DIg5m90nbNN@32e*l_6=L((7a z4Z!<_#e+_yjkJT5CSI+J;@g=ASPI{RzZR~|`W0QykHsGtZnLi$ZpCYMGLrnJ%z3KK zJT&3KzRMV()Jz|5ZFmkT7Q>w4?`G2~T%&EWg=zY$3FsWa+h^#iqyS zD%{r6tDR!>KrTD|SGLqbQuP+ZIXv(zyR~&4M#3iuvPVkCwJUvx z)cY0HNZ5yD^@_~ZIhuO7@77a0`8^UAQaj1B{hEYCk8>i9&lc&OPfu^xphYA;1ldVv zm8;{Ao#a2(MI0fgzUR%Y%kv_~ekTo_%RlG9#Iu)etFZzB^H}u{S&JH=cMZRGc|9B6 z3-l|u60F{(r!pn92ckXvEL^_u5ok?a^_*JOR)&)z&5fUyy*Dk*Y}v2Vdl)Y4kG0UH z;WejwsF)wg1g+jMWf@{fZ`xbvT98&*Cw0fVO&HQ|A9tVHQH8DX0v*%s(|xtZc0PC6 z(IIvJSK-K<8CNSAI`RmskNvFOVrTBi+km&M0cH)}9rhWqd$6vfF4U5 zE;?Lw5qe!OP+qjXX|wFmC%Q7~IEYHxpk%-lwslnhZov-h?Jb~VW4>OjKw!Fpz}a|0%tKlkRPY@{}TQ1h(z9(s00w2t^{ zPTL}nY14P!=j}Uem*}qF2~XVF2XMO+Pry0!*TpM5i;Ad`35yG6ln)7`GqC>s#9C*XTla|EEoDBr6U+~$9ApkTHs(O*69gGOVTEnQ$EusTQ34oZ z*524kSo^1X3G=fGx8NDpV8I?!uM7MJ^S|@dV6Yo?Xhy$ zm(c9pZ95*<5k64uoRWo^trS+sFoI*ceN*Qfz!1gw+ajVxYTSms=~cMrHd}_mX=M(K zfq2=!^&Wl{O`?Pfj*i8>RzUnm<${h+7Q4y~za8~Qk?+=@4ysQj1J0*DW^GT^qnDkX z0p17v;y#L%_tKfb2JiOw%l zGwytKA&qOcyBO0_lYpiOx-c?bGYSCD8MKPy%Ft>f0rkT4vG_@RY1R(-PXPzH5GiX# zE4xQiLa5J;*lFgJrYVQM!^wm=KwQ#z9<{#-}v+{bDjuRKW4NwUm)8dg}wm*~@$8w#iqvpsKW**ehr=@q4| zo=-M9FRJ~%d1>H*UE&KOj=hhN{|N2(=%V4 zb>UVkLw7+-&2X;G!O@N;=0Vi>)4>E`<#9xexs z1w%L59jlEA4Duz&Lg!<$5Jys#XeU`b-KI}=kWqL2_ zHKKu&ozGyy3};HpysmEvpnFo&$(*kNout*4wz4nVKv|En^;B(ptl#|3^zjO){FZ-s z|Hgf`%Z^7xN!O_Ui(AKmb$G|ha{k|n2j(1T#Y1)j6VM%6@vs;4S;=nUm(33Ng|som z3r_$(jecBhp5<*lzVoVY*92iV{hLZ7auah>S!&K==P&=s6v|5sKKl~_Z z;FBMkf5+R%OYTb`TJAG=^D9^QZAT4Yi(X#0^M>o&FRHWgWnt}J-b}#sbBh&0>1AB1 zyV?RoW}HDpyV}fs=jnM4Ti^ZNoX;1~f9f49te+R%Y6#2UwT|znAKf+!Ox#*$6A_?F zrMYUqhd;pO<$Thc0#w{YFP25;E=y!`|8dPkdaBEIO~N^IMxoREH6cEg9nhlMcR=HY zQn)|qfjcC5g`rB>B1%Tp;yFRp^4O--!Z&;%;wN(%9O3`G9P;D4>$RiCCuE2P;yv$^ zZd*z~?HKaNNcR6$k(#wU=(i)Rtc}d?N@E?@d(h*uKW}+?^uF1Mcogd1711CUdyrw(7b?Xy6=5a8MMZ@5S5B5wR~{A?At7M`ijI(xprOL9H5g&Y zcm+@Mk~oh^^XoM9GZ`(kUhSKN0u`N#Gh+zN2W%j9q;s1#bs{0J;Y$euZ^8mc{MerJ zHP!m-kiIbkIBeL+K#5hcf+Jq(Ud-t|J8sj6vWTIm2to-o6GgNF-{drLw-h1?;t)cI zcvmJgDrm0$-@JWH_6ULS`1_AflwfEI|0c#|_!m}0L@@-48mfYUQyl*Y5ef1dDypX{ zfu{sKEZ7K`zBZTwLl7PoukS0URz>5LKD6Q+?(*p<Ne*;`F=fdSb^ zwMx@0h)vu1t-z^4@jpp~cT)RxcZ1<0*KFu%Lmwhh`Z-?prw$y`=m=2t&l%(OGMM19 zMIA~L)A1zY%0YJKmvaPb;BzELT#ixv@vXL74XIRg>j1>*ugMk!83#h?D7 zhE_a^M^Q*7P|09@M^R;Z-8gIcR&uJ)ehEb~l|q7wVE<_rv59I>d&M ztnI{nl3<{M7L7o43g$Lxgs^f@lxOPnE+o9RY%RMtBA2o}@OC1Z3VzxG`{+z?sw1Ox z-|}E(ek)asF&Xn&?E49NVR|o1fOcmaBhjIvrs~L|bU*ux@Rtni#-7Md_X)r;7_inV z0AXP9)?Ce*67hA^^RqGph&-M?9X*xJ3k#>@7T-B_Nvs{ANzdd`AGKK&6j3D7;<$<= z1WJgRXi%uExdUM%8{`rexL_lfDW*JLLIfH-SP3XH2sAbwdRTN=NfENpi9-X;WJ+Gr z7@IwkDgCEA>KED`Y-4B>MZOGM-fUPxi;78wUH&?Aut*bhC*XLCor)qKN}C!)TVqf_ zhg`7jJ)9y50l0xHrjHH$0k(bu$NFwcEu9{M=MX?L7=^D&R>OJpjbcrdX`C){27;nR z1YP^ei)YyHT$|=3+hjJ{r2}vc50ZR3 z`=2rw%cAbU#IpIHj-bs1A6J=d&BQu4yhMB|Y^=x#rosrj-CKj>)IWDRzHRe9%vAG* ztf`3-5>!-JiGLqa)jQfOvBW%?Pv47n;Ut5p35uhVhCtwGzQL zn7cc}NU@4ei!%iC&j;HhCxd+MsSK+zm)S}(9anCgu(_AX<;{IwepMng|9M4XGs8)- zsc1_BX+G3;Z;*T2t5!;n)1d>(v;gQ$m-lm|vW#f;aBB~!%JU9AwsZ4i9>Ka2b(R>U z!10#8=B@X;Y&vayQ;N76>hOVAUY2*Yu(U1mbl1)k^twU{@WxtiZid8;#ETqQGtVdUe)ns#$V;|u*vQzt z{W%$8+r#~L$N$Rv3)rVNFl!?hq193BncoygErt~cEpTc}T8QCR5FGaYz`{Cc5IG1a z{z!YbLFa_i^a{#-DTHyFu0&k94$ACO+$c(Q!TiflMRl-g?W2R5M=ti+S=jLS^Pi3P z+dUMi)*hPj^q#^R|06Ns`8!n6xHvO(j<4pS$IQ#3FR{^}9kWP9XxV`(4s>bIvV(+| zMbklh=@mr+@`{EXcokQw(}wMj=umk~!xc1#DZ2Z=a+uUAeP>UDpicldLx6wv-pkW- z?m#8W$RJzqr`>wa?S~4zs6zajiv9I>hnh&jjK(WjS~bM4Yw?=)|488exzQ>a=jZr) zsWn@t2fg4rgr40_-=SwWpDKy9!x)a#Yw9nF?;Xq;RB^2VQCxA{wxKfHd(o8tA8T&` zRoBwA4dMg{5;Va{@ZiCn5E5Jt?(XjHmH>gE!AXDv!QI{6-5r9v+rJOF@4feXXTDi8 zYt8Dl61u8dcI~QaIo;3h__k>*>aUi6@v3;1Dkx@xzXCf<^R27;?wQ*v@t9>AzBL0w z9m(AHG;hDCOLbZ)HF(PpCxLlvasdVxa4Qes(lOd zu@w^~3S_~*MsI$BW^x8T#j?ldf)Ew)t6+>u6V$;Rtz`;~mBi$G($aM6; z-8yhHNXN8i8NV1?CASjGkG>;rbM(GBPH8^wWYFD$rV?8{1fVr8#;M8KP!zc;R)T?> zhY}@VX5_ZG9U*+z6+WP^A=Cw-)D@)Q+x|O2aWe3?Q9Q96I!pe{a&SxxI~jQ8B7Pz` z<~@W15~az+2Ibal`aI=8hXOfr(&RnBx-<*OcVHzumdB=Y|1ZY_NkvDsA)Byk)_Z-Eg{oPXxRU$9Ee>&SzI(zQb;#)7N!2HC2UYF z9*v`!kT}twK7vj6)OzOBvZt^vaV?x!2??y#z{HINzLzbifeKD#{Xx#`mk zUIy80OH{LdtBXNlh=qj?tY(G!9yFJsjQ%9(C(#0t$k{A}eaZu4pbbrRxeW*wsKrm> z+$tU5()?BHlkjMRO^!N>#?GIT^ipqjW1qA)N+)KDiy7G=ew^t7;x$F$%^{TCSQ8_P zO;re|JIYjtouo{~mIT|rk7j|Ccb3K5_E+-!-*&{V{)c~d)bGH?-X5nX(Wm|4 z$)40$>Vg21qCE&)mN*92oCzF(aW2963L%Ug-&X<3)#%hMs0g=lyzMEgR{GH+2RM(U z9l}_U%vb@O;b()+x()x};X~7mt)nKcLo1Pl&SXggpC#o3ynU|<=qxDtCmu2re7q4x zVj)8CGx-2hU~0}J0!$ngi}4-%D#?IpW^WzYIcXL$0Zlu$9y0TNhbe7?q>v<878jO$ zQ&9VOaQu78F{y=Y@~i?ij4|9Np$QPX*0gVmWG?rX@qXR~ux}2y5qw`1xS~#9C_{1W3WLl;Du0SARRi*o1;H$c#k&KyE|KwER0@!>0MIq+qxB zk5BfBOfwJ_V?_4Cyj(J8gQFidoczfY=zF6PR=vaRjx$F%a?UdOQ_mKoL!iyE{$(Y+ zIfFthfMFn00&z(P#I&84-O>z%O=q0;%$*QLPqEx;&(~srEr2Elo&$C=AQ#m+Vw6H| zI`0E9kUR1m?a&S}Ph2X90aav%0oDaEs6;S%g-QzRfWHMjD@`J{l$y8{?XB#!2}u1X zrDbmpJ?r-5kBUG_k?3@>kxWPwO*}iw9M^LN5e>fmKm&<@g*Ou)VhXcbF~E?{V1v!v z$tIM+A#>DE!AxHC^Bx5^KUjhMcKqeM}rIv*vGN+XG>m?>Y`KtReR{?!; zx+1EoLb{0RfO+8}2l$=3^tJ@J_(IkuXbs~YXnyGV3; z$JkL2ff~NmR}Ix)*lNi1fpPC8eu9TV4Okl?C7>zmE3|Tj%lEAkE8wG1y99g}ntFwE zPiQS<#(@moxWw;jLS-w{FUP*`tmpA~AAzqxPpu^uX4T$+`tto57xpNC*74hzJaUNh zUuZ-8>&fCPF2VeNx&>xD4?j5pr-HP1RwddBBJ(z$9OO?$A&e7Trd>}Z5;-8Gvxza? zE0E3Zpkx-STp{`t4G=Kg2B8vAmX{-x$ABet!4tY*I!%Z- zUy}_}ww5p~KSOKwC2>IsiDF1jdO}@eysO8C{ z2MB2Lv6a+#RsEk_+^tFusO+qHw)v00KQTWk&0>F#$>=Q`HDQEQuM*TEes1%%c=UbW zqc<!ZAYn{qgu1J-? zz3r}u=~hIeJQXS|1g)F-YaB+J+n>*(0}PyXWIOm8KMkS6*|=Q2?h3<7HPo@-njLNN zA8&_oeka=Avq$U6Dq9ZLBZHJDE`xgYmCyIF57ayl%x=TCImQ!CdtH?A4nv#^{G1n% z`OL|+st)4fmHW-THYW-?K)DPOIeJ>mMQZ7Ng|YPoj&6Lm5!;nAUper;FGTG34GH|z z9x3{*eD?N6@vGOwi>A^>bLdZ)H^`m?A&tF_ANbEIa$*{}ho@}Zu~9t(8{cdHEE-n+ z{q{_8_ji-tS?sx{gq-N~+dZ5MwbF_=LPbB6C!HtizQSnbp=+rwoyR(s#%kp;6~!x0 zx)^>{t~aku+}YFg*H=#s#c&tjV_?)E_nk9 z$|5d#SBtWqZh7@7e%9tb)}8{g&d7?Li?#GJ+Y`thD2)RzmKL{C9apO^IV7PNpg3fF z-eS=My9fx?c@1#OFg8=_uCLv`f04SI=HGvCn&huz8RXu=%idr7WcoPh4Pb#)GBVT} zH@#{&P|W@g{p`a!?rS?oEfl<>5M{+x#mlAKd1A?1aazU7S|(OqcMDzbt-Oej;|@+T&)C`#r;l>&}`c>%&_rBfCd6X?2ug=pp7aY2KgyCS zC6`%k@HtVF2Mt)oLHZCr8`vzV?<7g^fOqoV0{sQDUCH4S zv5qajm~=HGo=aZE8u}r%1(az!a8+%oz&w8!#6{B9f6|Fz^vvEBsmwVBPxm4Q(+IEC zLneOVmkg9{5R-5`SwFyj7ofTXQVe4%t1r1Q3}9^gzS6g$#)s1ore)-+|CNB+q2|UR zVdJaz_dT-jk$sBa`sl2})H~_7mg5@K=&bfis+p}4I=)tvmryyKR9eGVbhnPg@VA@gk()FCYnVFP)R7xQmv!c#EqzBFI>*wQ@F)ts+?SIb=z z&WvA;iSH6^KlvHf+A79Hhu5Z%c$&Y`eAzdnp&fS37txhPfzIZ|bDX<8q#CIe-`L1G z>^lx+yCgrjJgO=hLL0Poc2u~*{bTedB|MTn`}4iB@Uw)Ch{&PttVf$Y$qR$*2qFtvl=_FeP-3dwvtwf!4lf?8~|K-W~r*F zvdbP)QP5an=(wUh*#pcd{N~JBE&aJ|=A{Be` z+7Lu@k13L@dYWmZq@CAhXD1-@JY#@UuFDm+A*)u! znr}+r*{!B3D!?O|{hl`D6%CeXQZJCP;$)yrftS7?Py40PBNp?6yZLH1{78_Aa5>p5hUI7W59-GGAhz^N98Ob)0Tuk)2a^hVd;I zn&o=EFEy`91#YNOZY|fHy=Jy-!rgs+n;-go%t+IK-j#{E?sKklfq`-Q*zOk|cjfW> zzke(`+7rcZE30rA&i|$%;$?2WZLLc7$_u55p0O!5B5kA1+A{V|X;tfL|K4Y@bh+wC z{fhn$7vKjj?O0&sb^_8h&jaC>{H$B5DAYZ1+(R1-0}X&F&PgT0NgPg;Z&mXgev7)& zr=SJm7At$*syIiBnoo+xRe24NK}r7=Lfr(c4`g&IR-fKq++!b58$cJwDF|+=5VsHN zd(-Bp+j3p3(`OxzNGPVlME4R`gB0Z={6w!M6@c>H+BF)LF+fuCa#C(nt1i$;7 zoVL?1#i&gf-dyXGEEDxh>|{1h4XGesKL|?CXTR7*++1rv91b~28&t_+a}Es@tUJ9F z3qZ0OlbTbSYd64ejfVnKi~~82O6gp#7zr5x9`AL#O-r@Tey*1;q7%!Tz2vkC!-bLN zPbSOArpwNogRrFOSaUVJkH9b>eX-QBnc~51scofwJ!YMnmTpqRmxejM6Y{yYFtxYR zL1CsqsSQ6OCLYu(j8F5u0v-9z$d$bL9e1*{KO)Po*S3O-^* z7dXEnoB3uT>NJVUo`@uDU=Be)GRUi^Q6M&WYxTorZ^zw&#{_Oi`e(0=1>V=MorQj# z;bQ~%x_eg)UphMVwv0<)ul?lYQ-c&Mr-9v)l9K5fSWZ%Q4E4I)GQoG`b?f8=W+)W{ z#?b3mo`Sg>O9+OIop(iDkz993t*4ZF+*qh%gW&i`%JhY-?R?o7e5;BdORN6P6 zGtab~z{Ruph*3e=K}>etOVhxwVpZB{J(J> z)ZrcKdbrFptvEQur|I|DIh@Rs9CfOa{-F$7B7r!W z#WFn!nXy4t`KUM317RTv*cbFy|74^Ri&!;Cn*%!!i5=V{LrpVc*ENcc8IY-gesb#L zNDb@15H5gYJQenKj^Ccauk)kZd79(NG#*|Q@@qDlr=>V#`Zer$U=M)l`FB3+pU!2E zRq~Ra$P99O*Yh;-s1e>bF>%^aFu4MHx)!<=C5XNX$i~%v195?xXJB<_9Jz#&axiVQFYY3q~vk%~ECDaXPnwptakcvk{ofD4V)e?Oorq*bE z&1%Eg1cr4*>`n1Q6gG@avpMS4dbHO138tiHr+AEtbX#EzML`VO0FK1y#x4OxEum&= z8beh&PE>t{+3tx8yNRg6i~i|^TmTJyc<<~tKn!vA+9xe z*t+F&;^2yfv|eDSI+aE!UWm@xqxp75ho>Rcgzw)=_UtehqXx+n0i`-Je$9oO^kPcb z_-||}q6N}7r|m?!Nj+b!FROaZ!wqW&p(n|2Voz4z1nUYTO=;zEF<5!gt($nCoUU52 z6GRZRPr-7$xtBi2Te70+Grq`73DfVm-=6zGxs15z#<7&tax5A^Sa!_xZhPa4bcl2O zMF^V0CTk%@T2-G;pF^2#l5p*nT^*s3`TKV{s`Z}t$7e-*gYWDu%i7U}g)&<Q4$cTux|2L2kk^p2xrVu~#|3}D(!Lh#~BPRcUhm6Q6 zfIvokQG-B6)Yx_W3o>HIkcDM&Ce{1Xz~hUW;rSGP)qvB()jOhtlK|kz5+Km?z;v%To0*YkMG28PfF)%=oHz#A5_={+%Zu1;m*nwwM8@{ zo9LO!I&*hAYr%91hF6S6dlw}%1agpTyHO?4CFb!Z=2b9? z4Y*MLoPva;Xn`2Pxb4uZKcH=o^6NkQ1A|ICnGa{coaX~2K$dmshqm?M%tTY{l_6Ba zKqQi;_zVlsp#UPJGzQ{lVb3rAWr(&e{Gh-mk}D?SC-w&FkR`K-<6wXf`-l|=*H%ubzP^zLlj*@!GL z9~teQ-c2kiy4`{Z{FB%QruX?+F1Fq^@V#@Ai3sz2r!3Yf-KkX?w(vDk>)j0T8hX$4 zKgn@uI!UTbmxM_n->^GXYy??+W?>%Wq-@%26T#l;8w%0$q%s-em6m zNx|8ByJ+0ZJpW4WQu-I3#D?DdlW$G?8xso1jj4o-nEjwYT(r<#ZAM;*Vnctjhh4{YlxqPs$!t0Fi?;GX0?@6L`ZtFRNE|MXdUl-P3LRR@pKTZCxoq-jDmvm-`dr zy*w{st~y-$ugMLST(`CU(u4mqJ?ITSc;qXOCVRe97Xx@&rO6Ex>anI&5IhDh9;2UN{8RgC46A?U4f8fHs9dO~kgEZJgAqvILL{&Ue7|QNh)$JWxH}tx! z%OJEJ6j!FSVs8W??>B$6Y|QSTi`}{l0$q?1@1N1oWrUNLBqwf+(_)jB3=JbV>II^J znH$e0^#cZAk;6>-!GDZ0_~r$or?Oo!Z}y9$$^e)UB@8(He7NIIl1O zc!{AyA&8fE5kg#bM-~hNac>hFS|P$6DMA-@n14C*IVGBVJ^f0cXhm|nZxw|gVXru$ z#mq0lCr<+Ojfncr=`Zj9MPfUAX^B*6$nHU~_RV_)`8`@q1AU9~O(k4f6-9fu?!<1D zAfV&cf9rS-vz#+l5bgXUnk^#HhR?sXydtu35*OVQ;e8Nth^};16pL_|kp;29!ND z|29Mzv_-pNjK*Nj_1lKFh0tt}aFWOYs1EwCx^&Rk41s4ZS`AdF$n4jB_n)?_OZP>p z(h4Ae13;VK%A%i=d1~3M*YFXH-UWcFBHC-kO9^W*c;)`i%&p)F;6|TH ze~L-pm9|l=Xbf2O}H(3!FZk>bX0~(qH(v!L`h5k$3!*Gy?_9fi; zO1O%~-3$GX!h;iOgFP4H|6AcMrTa5Zr9zz~5EIAW+yep^L{qW?o6DwsgdRL5(}>R} z%zFq~Xw;bdTPjZV&tBvc_3kKMGO%r@QquUM!^0^2Mxe5VG2%s7YrbV z{H^b&N>@ZSA&rAJixUbU4kX@5s3tde3c*&v03=C)XbMT%Lrt}bn|t(2=A5rAR8#aW zB+Zm$djT|`(pzzPr-&E;%*Fu$5~BlU${~8rPMs_g>^+DoHMgOSES=&p)V}=R-0D>+ z0AmAjD~Y(0P+Y^1k1-a&XayNs@QwE9DE@peB}Jr9#0TOT6cEfH&@ZHjKzv#G)+wvBzI@P`h<7LaC=jI_wy#}x2O zZv&o!$ZG>C14fTjh#~Qv=X+fXUr_d)?*floGR310JnlcE9po?b#FE3ZZ_TF(T3qig z1~e!jalVGdX(c+Ms z0X`o8kTft{q`E0J-Mw-T?YME|j0J|}l#)}zKjZs<{=I$s?gEdc!Om!pw+k3vCc_q@ zq<~Qoz-0Lb7`bL!SW3qYB$#{_zW?l>{noa4K5OooMwl=FlZ3$K;-u9r1T2QumlH^V z;5B9K4}s7@B!Z}IM+JP>-2(f+Sv6uzTWIgfwL(R5?}}F?CSXU@uk4F6DyPKRyPsl+ zZ!+J4W(%`A`9Ar6ti&t;7qzS+HF$8vV2*?hVrAoUcewZ9H$}GtSYR>t&`iL*Ty7x3 z?pn0n0QzYKw`=aV%DzToRbYfHs8y{qoCO9}8*fFKlxDuIKF&y(^#_ku z<ceY~d((78K-3wfmAKFTvAcVS8AnDT_(mc}qR4BD-Tr$ZRlfCivgBtzPQm^Ip zL)_@btvcNj$<}_JR<`h>^rDu_pvbJ2e|ZYkoc8a{7ggpXeW%GoVAwJ5J@_bP9o*1P5(W5)d3F?(s8=6EU@-I{Iqq* z-Ec6mRn?hYwkWcdd23#E`T%^$B*F)_!ADDwG2|y6ev=|#mj}=&VdIfn1^~X;USQgs zI=lzi8t2G0Ptbxd73+BJGck9Jq#G91Wj&eov$9!C%0* z`!+Od=`fm^G0yYtb)2eNbM1HBTTooVc*wDMi~#c|yQf)<2XrIpy?06z={*&Y7^&~k z9i$%BQ)h}jMjwHQFME?V*Nf6P8jI(lr1g31QPFss0wTu?1t}my#GycXk1qPi#u+R6 zXrB52083>){yVWrJzl!Dw4Cbdi;X=FSWs*WY05Z4o*J%YI#A=Y}%VWzQUG zeCW)p-TNGNSF~RITm^v+HV(Sa$MAO>%Y`dh&nbG z_f>HiZ8a1iE{qb_lKAp-*v^;dGIMOqymb>k2J6~oeoE~}_H8d4L18Pt0Mb#UC`uS~ zCpGUwyY6_iZt?5R(*|CQAc*Te^T%PyF%7A|$se}A6Pg%h{{;tZSXvLt|&{6yW*mfZ6 zY0^*RqIi^M-IV)&cT4`b;-oxHc1?B7=y8#@p0+OFI4S$E?mf}>=6Wg}9CYvCLZBT03dmii zP!Y*k)u2FqE;pp8ky0aGMySz&TpzTiuf+5=_T5`wSLznoH%b;==2!IX;twM7Zgq4F}%Ub}OSq=y*dXx7y`SnnNSCoN1?;o6?IshfX z$U;#gN6?jEu@z(G-yVAipmY8dk;r36)>(*{avT-{h`#@UNkFP^57mO`C|~P!Y5_zg z;+qs6GZz+bAr5>D;3&|#AWh!?;#AgMhyXTt$#=b)6_;rz)@bRKl?zvSl->YK#aN}D zbR&4(*m*6`8nvg`S93qb*8P$sRNx9ScB-;3a0@wStmH&LR*?}sKV3uuHg6m^FaKss z1t%X_2|mwHu_aeWv6z-oEp{v8I7%%RaOPYXMVeQNNaO?2ic`~z7zf+uyU}c?!&R>B)_&<9gr~y=K#MWQwN;#!60RmGsG;HYy|6;J@}NVE z%Q)gi1f)e%h+~)RijO|yW@E->EXL^rYgeFxVnP)(KnPNw%ZMFs8qxPLJ7DcvLZ}kX zqKc+o9;h#08&YsleNG0*$ierul)gFt$x1UG;wB!AQ1C08RVsz%D-Gx2cHS}bre4yK{A@V@vT6Xsh=re%gwCk zovgreOUge>XzYjSFslhZtCSSm*HbmAQ$06rX(@YP!3F%<9uqdEA~$DF0a?fcKd1X| z>6l{2eQdE`<~kyD3D@>(HjQUbegnW4W^&cfvj%4?*k751+qm1bjZ&M0ufh_sA|}3Z z^a$7#wEw|1Oo%vTydZ%1v|IzW0{*NcTwd5i6o6&_mja?x(Z0|EcmNPLhA4zq1ugDl z4mwyD(lF$Sf3PZMvc^rF;WNZg0u6sKy_={0S`;|D`p*aCM$ak$F=3^?3q(NnLq5Wk9FNe>=A+G-x%nB%Ao><)t($f`Ne4zDc?)tX^VB4Rp5SYkBH+g)m zBe*9kdFqT*1I^b4M6fG=Eh80p1zturu@scJX$v>=1jq={h~I|KlY;;1?rBKbtUVhT zqHF@_zEN!1azCc8Nd#H8v3mIEl2}#|3`9(*@mWWLsFJW*Vnj=^BxCtEt~&ViYWVS4 zh4GXJKQjJU7HT2_U}!lxSu@7EiCbg0c4mnHcr0)PB+DSVGjujJ%>n>Qg&guo)z?s9nO3hG38`ACBLZO#M{FUMM>kSjZ19Y4BB3mZb&hV9{@G;w&>-5S7 z0uL{^xDC-MU~VlLY8rZP`q9kyK+yTO(}RMaOTL@uOLY2Kb;qy4CV}+vh(#o$r{ZYm zK5l}1KZs?~e+Bc8>!$_Er^>|jiSfB0z8KBOAI+dhO5LD@z^jeIZp*=Mx3ton`?Av| zx3<#ICHnz~K?vWISZHd$H>fenTe%@k0w$lpcYB1anki+GEO=3Lu&mG-lb{HEq*h$n zE3*(PgJR{ie*bPU1JE)j4B6;XPHKs{e+7Z%k62ysc~MglWc;&TN5**5mcEaT&C4jm zm_e~oz_NLbU-&@=5x8+EGYlfSl-5z2&uAYI(_u%*+;79Dj?_Mf0}Y4$2DWHF1he8H ziv;`s2GBA&D!=>|bihvCCgsK;%E2OkD&hOP`@KWH+wZ?B@C76wY{roAE!g$akZ_k; z%n{$;)Cs?zrS}XNL8iN}0rtP7*QvPCCXni3K4JC!Jbr5fEP+k97+uk*IEGfJ&k3b? zKUMS99z&u6Fh2c2lMRN9PX@ugWr*X)k7dqHL#A)OJRCmaD5fS$PN?K930#a{LfeY= zYjs_)4fdy`l*IxcDxKH&N1slJE~tIHRg`#!(WxUyuQuvFG@eSd`Z5P><#@RTwvrA0 zjeONe+?(Tj9!a$4ZC`FgxBz+CKX`_Teutawgb(Q2u{k2%F8T1#hVV!VEAY+rPjp=e zFQeIfBC-MKtX-4EkEpjxI_AY}(}}e+_+uBI3kXw$KZn@R}L2X9RDXSQ#Tbdx^3iTUDoHp=u3K)2SZ}%Cs z9YGJa#CKZIf>z9;^25ypIeVz7WEg5^mR@J4WEM|@M_@mHJ8+n2$A=eko(SOlIbNhN zF1v^!AECI{jsGx%dW0Ahm0!A-}p8j>b%H5a+-57LkzRadboquzJKUt)Ej~|<4 zYlB*ipaEM5J>_FQ-okc(R&8V-r!A$?b^|nm@mWRQnHn zapLD>r-E_z;b|t4C~GUk`i)ziamEr|?h#^$Si5U6Mx<+6`z9ub#{+BO1wFboodaU6 ze#9osBJ`o`0YakP`psYQ0P9v+|6yzoiT`$ zur|z)Bd+NvTVYq^m{)YE6o-bUy7q(v5CMYkk)R7HF9z|mh#-^*rgBF>#4ABet?`XR zln5gSOoYLmBJvRiobcYc3VkBF|&CJsnk5bI$VOFR?#pF5y0948)d z*Jj))5za#&Ks`OxGFqU`r()QHX+lb6Ea!eIrWT^*@Q@X>PYQf}gOEPhAXaCfRr?p% zhO6B@emC9{>YUiPCQ(iwvvYIx60JEDQWAIMcVEW29yCrvwO!{Skuls_Tl28t=Ojr+ zpF1P0>kqG%l98Qd=kp!6bc3nf?n##69(IKA*(SHTu33R&8dB(k*)V~M`de-6d_@4T zqvv!M;&0e9=o=_cAO5dF{DWx2#_#BUQJ(3h5&w`;{27s?(7>ckQikr!FPO$H8ZH0s z*~!BCr0dq2$nNS#;6}DqN>y!I`%)g^C5HIfI$>9GUTz(S5!no9dW2FKbH75OzhAgUN6YDxKOf*ce|BN>MMF<0+nFAwvF^FHP7 zJz*e^{Kel}50!jU&}t%^wu2@_5%%j|H8U>^Inngo6fZg$3>hxI+eU73U=SzK2v@en*^0fsXMRh#NbC}siqN)Is^m} zjs=*uvg#%>NySqJN{%ty)>%?w^|# zal@j_azx9h&io4G zi!sb!wT?2$_dwCdp_gHdfB7~n7XNlzFdttqe_9D$S23_Px2RZ8yg+s15)CVzA7o2+WmT@92#Ym8G549s5mc++> z4;#8yfrhOtx(SJ<33QC(o>+YfZV5dll5yKRjb$Ay*H)@=G!K*saWw5LB7OR5;ue&KWo};A>~KC}0C^CTZLkvX7JmZbCOA*ELQ10vP>)qfE)=&YZr~*nY8lQp zW?Qc*{*=Ql!h{lkU1YbcIC26f3{~W(3|M({-m)TKwf5$3xM7>ur7HzurVUJ5tl&Nzn+wJFgM2}FN<%4Os+>MAEwzN zDWUH=83OZee?-kEp;;2>kPamiR{SsWphnh|Z&E5vucfWQ-1jI7__ zz$bxy?u(gT*7bABIHW!Wiavv&pPqVZRAPf^6J22R62J)H<(=WdpTU{fGqCqDR3e0D zaBeVszNyqFKN8`nLb%KI1_DZ!G5v3;KT*^-Gkg*MY#sH9f-cmu0+Tip6~`ijj`pV> zZQS6!Wm3{mupYR7JWoZ%Hi?un&MN!Zy9;*d+z?zlv`-bT*GN0OP7lD zk6m(Dm$&BLKetZH8d+N-E12)C!W)gxG}=@#K0EQnwzCs!f0qCo@m-oBjl}8WST&oc zo22!vB!*;k9haBjNAwX<$vQLVhN87E)u!;`FRqWZtJd7|b0o1N&(1k* zeXrhJ@|N;a)EG()sCgM)UJhK{(cEgduzb0IidJ*4&42ryYa9iCC$N6v==tNf#X-wQ zGS|t+&l0aC}_ToHt9 zg3>0xWNo}tEsAe9*mFGND`+ZHMu_N)^;^F{IdQhS(5=zvskE4SX5Jnvu6YPw;xL{v zsS>o^tz$uwNI?>|UxF;}s?!e-Y?VRj`!F}F$TzF}j)CuNSJFCZjvtuie)UoU!8{HL zK-&IGB0huy78f?u7l7?H!$k#9yDQx+rfT%-!bzqY>Jl*g{e)V6=scZ2%vV5;(|%lM z&3SjcpClO_G6!Jubn(s4+|zGfejG7y%XRtCQK(jvohGAHQ?Ku9A1|scQ77+Iu0&$G3QYYkOume9N`#%up4# zn%=)Bc_IZY|+hraie}-o8`Kcf25%1E4-}sHem{-~0QDWn-M?Gy;Iis@EezA8; z^yYXR$5NPJ)!%Oh((eXjU6f*dlDb@mxpB&_%vWjU5Xw{|3~;Ya)pYdE^D#!Fr-_vt zNThGYh+RbWDlX=y=!4YvvYgU26FxkasSR%vUFb%6oe#0}u`jt_F=3y++2-w4ABp4- zJ@m;dyznlcu?TtQ;5JKo!|idW?v3fZ5FLK)xJ!F4fyhx?)~Y&HMt>$wKIO$EmAJ|+0e*7_^JBI zvS7FaMRgdNbP~N@>(Z8G%})a9Bl4_=9rR*3A6x5PBO88kD~sp9ZyZD86-GzVzOvFX zz>0jZq$xCip_AuAH50VE-T0=!hPW$Ymw7@QdLb+@M@}UvA+BDWW9KoxUT07#WLuAy zTWr>>!ZdZS&TLX}e>A_(eBe8^v^mq~$3fOtVFH66B_@-;ukDGs)$gKo9nIgd?yGXw zrXE_@pYU1PQJHRW62lw4ttK26=|jGn!LSMbJ@`zpnX&I#UUveI13@>x-)m%yiG_-VS zoTXD@1!i1Gn#x~HS`V!VO7wYdg^;`qH>#?;Fy7kHCU96xTL?uzP8-@>D;HQhxmJep zw(7dHr^UOx?C5?NDl408GHCJd=pkltkX)RVQkY*jQ-8EAuZCx5G}nJ+G|$=bNXOV+ ze)edo`!Zvc$Q7NE~ay7k`)5aamV(u z%(1W7o$r#ShDxZk-&p%CNYbu9bn#s;o$1Lme&O&24x--Cbfdgtc^jsNO_nkG_h-Q9!UDa-Yc_!&&kD(q$pL=(KD2F6Ddl z_4sXtiAvV{v889Pj;&r#J2+h(zNY8t65eb}`@UMHWjaz8=)c`&!mTE7&&@+|98Yh% z=y=$w&V{wj)v9xHb}zvj?)md*RUk#a?plre zVrKa&^ERue{)*?kQ_Q5pp1Mcg)@uQT&xr4|8>J3N(nO%vM#MaL!Vwy(z3<7mbion~ z&aZc&8JD6e|WlA*4RA{D(;55zr~>M=RmxHTEoreDnD zu{)9L52vWwBn{!AE30~JeCS`a!j(D6t6MxcHN1_ztlJ895#-t$yniM5mN!w0XH;Fw zje)4pP(C{GimX6;bs)d)$J|R%b6>$OKY!f za^>4QU{ziBS@mnRm?&k-ZA4j3z6GIbe_|x#Nw=D7M3N{5Qe_%Ccv+t>-~%^Dq}NW1a2kB-+L37Dj&|xsx#YR zSYw_U(=6T@qk|~x3MyoKO@1F?kI>xVdy$+qc{JSa_PN|0@$%krzLLqFwaDbg8GGrx z)>Mk(dVS`?^5A60cJSzY_G@9jv+3T+gJXEn%ftJoa9ASy2il8{$=jPX$BxMx{3V$p zn#wr64yC*OINly&Hvw%ky28z`B8j@RiiCmRJFkwNPAG^O!%0$OKb1;0IlXfYQ96jP z;)w3+%hQhefQC6qvLnO6uN+509%>wB0uIV(e0Gr~qrG;JruUG0W#-87s^}+4&yI~P zo;PRjV)xj=YEvXay8qRr8=-mGo;Pg>qo@9wQ1wvG#l_Cu4X6a6XBai_cPSR}TjGq% z>>+}a7#)iH=th(7CGp?isa-gvfUitOIvffOuUFSd*HuVFR4od>E{s;A{)Aqj8EK~a z9EU0Qn!UbG{h+i+^>+`i&UMt{P>u@l1@W!8!(u)Tt_`sFf}tGxRMq<>o4e*>t>}z! zg!{WFqEHT%O_=41Vw$Tu^X;FzIOs_+J+bKN3jSLnZ}n%sU5zNSo~R~1cjM2fAlP^P z`q5T8EEb2T6di1iJ#;=y-4me5zsFCsB+!oPUfMu(Vo(uS&E0UKF@~g7PG!Y)(H?6m z)9-1}H+a$Bk($rC=WUm?w8cUsr?5;t?Q!IN=z z_O2tLMDY<6L$0gpBOz%0_yi~W%p&u10JYE8U$(n#e<+_{Z;X?&gRZm!0JPa|=9$md zo7110=CqiOf3={6T|L6w+OS7`JeM+lQzKi=$r;7tI@zx5h+&y|y%LEP^$T zv;*hp$1RjX*mNXI^$TlUY=8U)0G}yOk>w1FJ>M$ z&j;HX+Y(ebqbs&v)^{ct980mxeY2=N&ESxnRU6rT98YT3@4VtTLr?JP{Jt!4L~(`b zfz$}6?Z=o?%BY)>g82e&Hxa-zq5=So#0)!-2==M%cHjKTe}O2@w)G>==V-Mr(QR>T z$5L}nQjEkO*Mlz&Ez93kK}$K)vfv7<`r(PQPq~~d;1K;dGDX77-dX#8 z8NRJd@%JDjHIe7vN9*@@Pv>4m_mO(c!#bU6xFJ&ov@kp9L=0oiJxV>uN`=H@(ZNaseb zuMlg86AFcse){&N`^EY*yAOKN-QtwRk#41tqn`r5z3A?4F=+P>6Z}Z}W-lqDzaZkJ z5P-6c@g^h&OAn6O?EMH;cSFCE7(Rw9aTtFQSQbfje{tD< zmg*Y0F0Ay1W+0Ta=5#k~Q-Y*D7KNqsRF7PX%cMOzv*7U*c@#!Q+lyoWsv#sH>Q$=$U!c=B-o} zC5sZ3YAcorR{58x*><&8kBb8B1GQIV`8@}d?TlTCSD=C({wPCZ^HqJR$<#LlOFrU) z6hAO!k$$bC{>oha6|f!_`8x_(ST@q~3p7?jVj z0>t(Md*nJJ|MEB(78_2$A0RqJx`y)%5ae}PH&W1i1Mj8m>D8q#5FO`zj{59gKL?8U%?i{%-u3&#Q{drv z{nM&sk^lUW{L{nWpN2oQ)-(4xJiY_XtGnL2nqnDP$MhG<)YG6(`aHnJM&W(FEP>4gmCV2G=LMrxh8U&4RBVdrS;(^!bA(DAl9ZJPFB$illO!Xjt?*&@d)DSHLilZh^cHQH0GTck%g9~fc(%;~_)DrV{MR*iz?1+6<*=&d1eJVSPE;fYb zh*!LLcd1kAIn}hMYeBm(*-nC}yp0GIt;`{*b&lf~zeC5E%bQY>&LxQBXvB za^VkcUvHiI($Cv#swk1mZkpE6?_&)=-)`++4m!%wy2TX0ZH>o^(978mWxavs2*y$R zi=O}=3nOI-BW3i16j!1cU5s}d9}{S!|8t8as1%@yCBEvA{Y}AsQ~1Ijn`_TMH@;UX zfQ=`@b{qJ2+`t!M8JcL6RA5DlCO2uRp4p-{<- z?u^Cf@TJz1iL0qGQ9d2kVswe@BW8T~=PX%>29<9slI+8j&*;4Ez6Bloh+9ComS6`Mqj5HhUwBjFXUEt$AZdOoIZiD0YHiz5yB(a~U- z9`QD@h{e~-q?;77V(hTW=mS2v;<*8bJP@~B4u@T^fKwjLle|RC;4Aqxx`b^yT;Q9+ zd@y<-F}3mLKqiF$8t@)y3}6&vb4aff_Nw?kkj$ciI=EWi5^Rx?%i+%ZOyx_h6CE(t zBBc#Dnr~!ij-^YTQDinv<`4AJNXDL4up$~>gdG=>1f5|=vXAQ#zo$4poL1P#PNO>=TRb0WZ18zKNfd=#6kAwOl87uh4F*;ilFt4#U2x#vC}d>y1Ti_2)0n=BQv|^)pmtxwF0#vR zb}%{PR{KnahX?h_CXT=X7H19>n~_Yq7-59-a1T>xa-(vx)Ek}sMqon*X&BB7=I;*7 z%a1f=0ANb-Hx46LlE2cXxQY{qs2zJ(Aw9SCS#Qc|jzQX;Y@j_>CpLumx!a)=08??U zmhvz=@o?Q^?46;z6Tdgl3`s3hB6ty8n@XLUr z?P_as*?EKYsfJ}Ed6EqMgGx*lt=v1`c;C7_4Zf%Q0R<-S;k2loIG%-v+sYm?;<*~L z9gws7?trDRTyE!1JqWG2Pm)?v32W3w*xHlUW@LPX^vWj*1yR55p`1G%t&o8-m2>VQoJ~e(aSgm7eN*{`xb)pFYy;~x4<9e4V*aY^_D+RR6ic0TUOV54I3NVMf9?XBxE_^QBp;%V9vRN~#Xt6#6cPsVq2 z1HLi?qZl6fC>B<{(!T4ypXNL9YO&B;vcNkUD!ov@iF3K5;1w@l{Ap%JDWivUq-)iHKqs*-bYKB6KoUzKXMD za>0hhTVG&J_oRTHINgHgg?%I^OI7H=x6bdO4=6sb6L3qUEUue)}9cJ zY;vXx!AhS2n?j?RhS2hh7EL7D3frY{{H4CH1AO4r3^&^5sk)gpA0D}DEbKSqF?b5Z zPhoXfM>N9j9HcKp28NvkFmds9t$PH+P`H`7n3!jS&}1KeOswrOOVea{?4j5cGvWJA z6)4!3W1lo%-Gk0RAh&4Z6{j1dLZ)6uP%qP2`IMCJ*@#u;XYM;sD;E23jhp!ZScHti z%kK@bE0UA1-0=nF+r3i16#NKe0bkr+XknepKgPRoVykY6Jz|i^Z>B1wBJ4X5zA~4y z5$2x|CL?VZkOSA7IVg18@7*qXPp1mWy*}fJ^p*6YEAR}>?fV_2yzYA7?aL@~d|Bzd zH??OPaoFVhlI-CJ_44=9lSzx4R;3e9FHkJGb@EFK+fB+xY85GjmC?w6XfRFE?!Ige zSZkHfD=E(aRD1Z#@D8WHkzlsxPXVs)T>Ft++XwAQ2wnp>zt!GJ1htFPTRED*nO3pX z*0VDoACIl}4^}%Tm&co@$IPB(r02UjuE&$BWHLMHC$#qM$2))KBeU&O(|SELL{SS) zVp>UjrrvM%xet0rC&b<7?CuW;dP-SOS#h$oPfrZBPaA3f_9*^{36fmty<-daJs?!R zrz8~YC7HQ(iK@J<-+jpi^Li|jIz}*ZZx=7p%*i{(c!dykqn%xjhLqHNQ&eUc?s3d9$&yN)g?9yykMq}{mCqihLZ%=>-IdlmA%oG) zdbX*DW~==W5?mH`gQTE&38|Esh**J3A>8&O=W)|QtyZ$Yfk6iEMAL=6p|A%^dHcw) z?*VAV4J@9VEUO^RFYnQhcEbxzW3SC}kKu8Sbam@(_>LmYN7oet35C6C6P(rEWX-n} zT*iwc4Zw@iJNB60=IfVS3-Sx(a-Q7S!aTVyCLe1ZuPP1d_k8=(n;W+X1?6G~%B*M9 zA8I|%D4s4%%xcIieKYi2HhoDHHWZF2kGOhE?L*&vL3k42w*pz+$SXe$e#u$+Gqh}n zJ+hMd_5C*nyuH(Ke=^YRizFYc;+@H9lsdcxl%sOgBTl9>(ttPmIK`|->FN2fN1v&V zaNMQ@5N&-d@VdCUhgMe%8~R66)$W?J+EzF9Hzmt_=`a(Wpka?H7c++@H69qAHZNU! zyuj`l;GrE*M0|8bY&3AA`JeCDwQSrpiHjTu zHSPKLy9&__H8}TaD8`a`7}`1T@TL*VqtS-Obq_eEd0C!2fpj-%SB{my@-j2pI z`sOot#n*Id!lZ8U%0{f31greqA!j##GPQ~sLBSeIey-*rXJfuk?5jU`Y@M0w4rU%k zxB3ode$SJ=2DKl12{iK(lZ2Np6Qc{;#)+I|xhV?Jkz%7qtiI}9Jc|QSX`K`TunoL2 zlyJR)8}A_bUg?o!0D;DOn8?{f0s-Aq7@hu^+HVpaS6Lh-FU5X;9NP_a0cJ@7DpE}J z@X#K>>-m{GW_uE!p72y-c+X-Ehcv|*@XAzYQLy3P5^WJs0J6$A;pV|t#ze3Ft5~S+ z_D1WEy~QT;%?$(YcGO4(xwnjMlZ-1@&fW7p8|JnA@KtUXYK%`UAZVQSRWvW=-)4yCiNYG=q{sqhH;X#7>< z@A_sX`aTY`ZsT8kT0MBlwVi0wOi$>zbGo$_iLf0?j19P0iDLfnJ$DG=TBU{AK=xfl zX7ysxP%q!n)~i zGfR|IXifn2&%NQFs>TO~H`xB|2qD^3uCltG7^wQ-#1A}8~| z-~Ch0!Ni@QX6eQmMf0g-9(V)kPuW`u1zQ=#&8a598z5*^v@t3$Q~$3^2K?O)whdtG zRwH+hM92jOAd6XptJdM?YdjcZG}h20v0;jBmKAOP;|HLp)tURgZw{Sp)evcV@wO2g z_?Q^9B?agTfBZ4={dC>G&A zY%-@?*`-869cc+e>suphTmIz;qcjFWsS9s9zNc26Z|xkRbBAuGhYXxw(u)pdZ;d-x z@YWG)x3M$b#D#lR_uHgf0_~-#YpJeV5(rE5wFn&Q+$z)758q%3j6d;GjA&We@LTUZ zHN1@g_~h4V!7&28@oiQ#Y+TjGy-^?hU#5?C1DIJzVFOR4@W7mqJI3ut9rdhUu}p<0 zV^rWmSv<*T(| z?Pk|Y^^TdjDxT4o-d@t@{LAm8IPJ9&=&{Rc`xOAYi}!MC^fHhuvz~nwnP+UQ=nqy@ z?_)R%K@%b+`}VE!zI8>H?8KwVvSfEti;AM z3>J*fDyDlk1aTwBlrJs^DL0=<1lay5@*KV0A8;FTaO!*it5#EhvF#P(N(1Wha--%W zgr#w9TOxW5T!k{$H*T80G`i^uFq7hai|p$?Ioy!&-RU`BnO^KIG~e6Uus?gwZ9~F? z0SGiU!|Wi!1)v6Rl$-9M{Vlfn51rQ?vk$9xlTU+vT%V*{XbaA%(r+!jAgMb^ZR>d2;v&v-MU%iEN_;?1Uc(y+iZLFQn zYKzlhbX%_I@xT?1D@~RLKSs^neQ%(ArWuKan-kaE>;!m7iP57F`c5J?%WuzYBFPJ9 zczj$E(RkXbdGwK@k-ymn4Yt*YG6=)ZwY69*_fQfmdLi|K(HFHP&I-+EzvHD(HQE?> zMIE>nddiZqkR9=RVy7gun|{}6pV`}KloDuvZ1pbJ`_ZhCelRn#bw#GVvmy3yxt*mm zzYLPBd^z@3eeeWCwp<$NVh_K28 zwoeh5v02F6;3~rLosMGJ?i<@-vWM@@)UEUNb#?cS!QG(9$2(N=h$8tD^>Dt;*tVD$ z)yjZY{ZQ=fQ&G>nV#R$H*w_lD2x%egDy3*4R6g@;?W_z*YFa=4gjgAJ`rm)zL7)1S z-Ku;lyf;fJHcH|zK83Md{EqHe`yFj@H~8?kj^~R0&mZMZ4KdLoIPH@ODTXsdze(Us`e)zLmzqlfBwwh)hFxmXT2S>VA4ElgHwr=bv?d zud7t2!aDU{=0q2&s2d(f*@eFpo#@^ZC;yU3I*SEY$Put6NsTB3N1=VJAL@Vz^K-Rf zNg)c2{3h-bTt8@1Be@?GF$h``bZoEW8~{0_?=TI>?c1z;2rPWsRCHs;VXts9p(|~? zZ{0g$kU8LZQu>V|v*OK3rV73iyvHPSdjuKW6Gd88WA?B5oP;aB6k<^JSB&^}>bs6#6 z!PGynV!vS0OodKxBp-Ussax+Q?ee7vefco8KD<@xRVh`Gvsd0A1FzOtM($6IC-a#j zYf1YBq5v1-CD?|?1A_ww&g{%Aa7kC)+rZ3G-e**BsIzX!y`KteT+gR1hH5v+B`g+i zU!AUB?Fs$*+_7Ew#_@#f{-=Zqtz;U8lesz5-Q|c7viHRi))XJ>r&ihRNiEUUEZf@L zNAsE^J)eZ8>)ySsoygSd`s?*`?E{~-rl;~$8wOu@P_c7`p5BjM5BoyjJd}A$Zov9D zvU$7+Ei;{Er2KKwcB2M`#&kOfOqzSvt zj9t%b($z|->M;G?gJbB$-DjMf9!hEPiI*%NUN0z9=Y&3^=g6qqKOz-zreO%+QdJ4~?o!1h z+@AA2bRROFh2D10D?N2rW!!a7jd6cI+Anhk_4W3R$`zsjkWF0sqE+gYLJpa*wW@Hj zZNB4CYqyeKR6^%rLX+MqiQk;^@B5+12$;~j1%OmcvhZ&`A2uk@V(9yFpXrn*HoAZW z1Adej-&D670zY(7%9Lj8N;*;TDLXL1eh8qHS)Sty=Oi+rtldZX8uUK#1EpY$dU99y zbn<&Mb0i>TG%EIMd1?05+#DezQeqi#B8OT}Y{8CJ+wr2CR11}UO{~5$_Ge!G$?v<= zdaS;I-*vx?Fe0#ofA5jmpgxNQXz~XA-{@lkDXMjir?GAWBs5**af3_lz=tzQ=EUX< zPZ5_Jth4}*PMC!A>#)2YeK9|fFO8ZRq>wmF%TygEb99%t)kV7=H?P!&0wPE6X0{!z zTjiTAcPzhRwb^RYE-hV7tFND$*|E_fAG}GoY5x7$wSMYC{l|m8Ri>-2aPtaT6f~`t zZ4ELWj3`oe8G82R%jI(@2wJr%HMHqz0iy_kBz!!Lp96v70?mKHStr!0JnsY+Ti8Pb z_|}yfF9H?l9alSn)@=P&IE8F1zG+T*N1Gi-JvqR*V2znJO#c?(RxQ%hFN<-F39oL9 z(&tTF604-<{v6V2IoA-Hp$ioE2SX_Y&>jTRlJq$`f&HwIfOkE18JgE$+hq=`krXG0 zP@#uc3Mo((-}9r(&9ByG%ZAH=QwpGa7f&vYK^>+%pHo7RbIBz3gP1D+oEoVxNTusd zqzl!24}O+%GJj=AmhyRS_EU+n2WPL^%&MB1%H;0g=MgpX`k$g2ISew>36Y1jQf&@r zJrFP~8LUKqrgKJ}B~4D;#EV);(yPRT0B=MY31&C|I_u|{zm_zz%#;i2G90jDB?FV_ zzX|7I2+fEBpSY4*( zs)IB|86(xXYm-@n^4YlcUk2wNeh>qN=O2EGs48o(8s5%(m8g?iIvzi-`;L(!ks5Qz z{dS(ph}YK;vQ@SPJtXo+tKgzwrGt%M26%vjOFa1PupN$OgS_x+UA@iDhT{*%sXbhp zzPIuCgY>$HsMH}2m7}E*A(J=GwBo>2QU){r@Ki4^z3yubZXxz6)r5QsqkQuGfD<;Z zF>Q6+oYWze3nqVfx+2B5wac`R{QSIu^1B;*f87b9D7R< z12ZvA-~&i1U>B_hZfmcPvG}!w`HTOY zCue+q(X{gs!e#@~3j=F%S}ttSmb4^T`~)KiW>4WsUY+v)iwTQul#HHPQX&!s;7Bi! z0KSuQG7&l-QaWRGz-!u=xc-6046Oni7~tTUvtL}KTkSg=hqEGxnjHEVHxs@N*kRo5 ze6<6Ij7D))1Jqo_Jvp8oQi-EwUBP~e^m26Rirj+uTg;X8TA?@u5ttI;IRY6ubrOA9 z*b9`E33C-#KcQVQ<+Z4*lHy^q)nKQij<4zAq^kwKTdae=zkfVHMIDVPIdC8Mb=I>?Sj$sj zpl$POQ08DodU4(z$IC1Q#tKL2|*k|L`$5&JBj z@mORMga{yO<2m*_pyu<`?^YK!kQ1w~k5lljeNWnohB1H?%*l60mXoE1>m65l9mWAFb;?tD| z*6`86IkmF^elbKSvPxbl!k^+pIc=&n0kcmslX?~wZSHc%Idi=^T0jA7A!nd^(T)pV zQh8tsYDo$1g{ja>DDV}i3hreAcHZs)&`1Ac_3aMqG42=Rowqt9bbD23)i+ zvQ@W#l~QNNKUfqA=EUpEDaBuD#Ov?6dxYgKWn8b**~dHE#YgtkzKeD^D-&0K{bndG z9tMBLK-tVZ92g9ML?uf+Lk&;&X?w+We!g*822n%5de;DSN9V{)H8w43tX+4f-M!le z8w4JOG}_VH*ijW!t3msW2GyOtb%ES1Bg#>%o$!ku_YDF23?7C2xZ@Pwv5wy_QMQUb z-Wdz9X5f$I@XGL!yf{N2lE4MQQ! z+`Y#!!aw6~Ylw|p- zSy&fKjW%-o^hSAI^9ePsbTn8Oz=r#c;WFsWJe}b(Sdlw7dcP>YI{n$jd{tW(GCCK- zj~K^XM&m|btdHL1VlIati@WCVPo(dT{<;vwy#{nR-JSrB_MD1k?!K`qYsnVA+G?#A zt3jZ$L~)KPI(Xwep@eS1A-;q~rP$+zG){hmGE?!mQVE?}JpFUby8*V)>b_}nQ}s8C zbRNAjPO&!6>omCtBejH|7oRNDOofT|E7kI6Ra!oQT1)ou^@|YBryW1{m&}n$n+3uH zhp-aE)bS?FnN^86hUCF0_!oAlBv9U_bgCG*8Wn!Rquj-ILgr&?>Y`yc zN>VYkX(mijNk$J|h*TNC!M4-(wfhw8L3e^%@{-5dq(LQGrQg#1562KU5tV%H4%He! zLCSL#_xW5rQp4OXC7l{bDM=*g&M{W{&Gf{kPS`7JOf#faK85T&1^awtK0!S0IJIUx zj{!&SMb?0YyY9B%zi_#j97rjuyzeUrQaHQ?qkmYM2F~Rz1;EKetejw$yd>FB3R=MK z{X|E*C4~3MmezDu>C^;tmS?-qMO16cM5FOZCK#CFCpH?ICpvM3DU6aO+)6!C`Ctl% zXZ9#?k)E#8p2gh`4Bkmm-{o1sCmw47^FV69npi)`Jl1dWI})8YtO!yToMNKt?sFFA zbF2b4{xgsNu{MVERV1c35-=abeOXr{#fqQL=BodaApg)@3`CKC>4BVICY;Z~#O~zO zAml6Ii6i;BaxLC&5R-T7^_?|lk*)w6MMCu8xumI`aU<>fWhqma#As>BEzDvL^w$Yw z3t7^4C6ynyGd+%MxP9Q9wRaX4OAkg1XRgTFI~WeS7)qN6e!`-bQ=pm}$?4KDW8-P( zp*UNgMMx4bt9r!=;O+A=GjnK@>TQVHXE!Q7Q$(Ps@!?e_qnH|vNMlpcU}HrfmCxmP zhXJ_HC{`tUA11P{X0sT}?wZ0BR*qm{gZ*ntXi7hcirg@$Akx8M!yrRL^e}@51$h>R zBI51@lEovOi_>bKpRovQmKsM^6#i4ZvB)NHQ(r_69X0~G*AM79d_`2c7ue4+A)=xe zZH1xC$f}^6o@YztADs)Q2IyQ$xP(VQ=fWrG%T;H+tjelbKk#pXXPL;dP~<3*CUlB% z;|dF8&PV{Z?ktK)r}CN`J%F>@@rzY)#jaC=unWm@Bjm@o*Er}nFKFmU^nbDmhMpE95cKBQFAR>@EC9w#?KsXR}~c_rRdm8AIn z@4h1DFC~3XSNLjQ=$|uti|8{ZXNQaK`GnNYjC%@zTt=I29_c>r&L;;W=N<+W))A(M9{MpH@bPU^=0Rt*CD>>vVwo6k?tU zK~_K@OFX9o=9PE7H!RJw8aZ?n@fgyGrV|1Tfb>^-mi|i5(q9RX{vw0-VuKy5*30Jg z<468v@tD$DDAGR>1yh6G;3>%PP^ZMo@qE{Oe42RsE}O!;gAgO43|rhh0LNm~7i8UaZR(Z-qVE zE0OvuOvxx>t`K`n(N)@;emcWdx+42@^!`GAahAlrgK!1uB*?X-hriaZ_FW6Rr*s$p zdV2nu{16YTbv2Dtx%%1MD>*+kfe0=Ze zNs^erU$Q#3aOCU4EOhLP{dD}n9w(_(ZPUBZ^WyGa?_h)D=O$!-ho%JB-WiliY*%jL-PEbJBUKufum;!P9eGczySCrpc{xxu-r4vbzJE zp>*O!UOMQustVyOl^oh$J7S&`8BpSU=E4Su8O7_6%n25e}EDT%llYDXdM?P-Y4&P3*L(wQwm z^pSM>mzM?J&^%kDZgcf)ac;? z^MO2U3iOB^^ay00mg9a_7Q`WzGDJCIhG`nEUOAe_%P%9zp7#^ovLd$F^vDvJ#WuQ+ z)feJuu4W_@YPoB-CKN`R&oi=kTTcv~Pc~ZXaxpilw|Ye zmzldIBNr}F_y z;S|Y`i3D9TwJ_nnLUO)_%3DVetD}WSfz3d3_}Z|Y8BeWpnmeFfkvLc~5~Ix|9i{T- zQ3bgxhG+-UlaSW((QoiN&ZdCVc7&^6+riVdLsSKs&3k&M-F&Q!-TEa#M)XoT&&ZJra(Q%1#h>q0YfJNXphFf?97+7aW>af;*giQGCM-whYm1C|C&3=k z3NLLN>-pXp+5NKoNqu6w=Nriblxysx^u%pg^_&P@!|Y&G>0+h|>pmIi^Zn(i9k-Xh z9=gC6kU|MJ$Vb>?$&RMni-Slwv+bKWq0d^b>r*Sd?l;}FGdpfY32$n=VmqoGgbW+9 zs&R7{lM;fTcUx&bt-i$Akzy!sY7cKcfLp}Kt$k0NVrm;i8x0h+B}*pp>LEp#t5iy= z$!IzB+WU6e^L)vZlpy1?=puN_S^XaG9FSXBrj5Y{G{}OQTTsr{{7B$w&wb_li1a8~ zxb}TO>aHD0gn{~wy!coXw_G7=gJ@;DAl7+rLPUyV!N3{KvB^k_gTsV)LNbE+*AxZ$ z!R_8O+Ba#)`TPzMJ6nI=GG)FG36kL+-5;W2*s682@D(4~};yr3LFFk7_NCxWWjp_4qSEQ3mx?A{Z(wl;wrXqssM=6LRP$#~aAP z9w}5fRG!rGo{O!wr$dzst+(7~0?A`eW4?bhSZRI09GJr1L|4b8w)H-kG2oPz8S<5s zi5}i1OLPT;lMv7ydM~ZuA(;Njjm}3`b~utuA%rOM2|C&$mP-XT zjyEw|Qdub3Mtm6WSM>$%i z-A(Vi=oFe~HXo&?nxmj$+Y5jVltHsa@UG7LCWLZ6JvS$YJB%m47dk-AA9pLvnd&-U z@pgD+IDoC6dIgrpxKVdDwKg+`C%*j3jeEBw_1F~ut#{VwmVER;L#epH{gv`id%j3!!lFDm$vFo50 zpgvoWem+eLbU{fNCW3Jj+cR~cS~2|oi^#gTr8AIQe8~F=3IIUi@fd~%&{7UbN>nqs z^I8SM0x>yXZj4)OVEluZ@p_c-FM>^pByk!^SogMMeHR25Lxi~G1My?te(>FWk~boN zaYL6>E%q1Y<{~VRNEG;ujDb+du>oxPqY3p;q}<%~Ht+z>?7JsEq5)71Mkk8-_dOIx zTknYDi!6ck{{qVi6{8nZ3lD6CwVxv{hSY@-$`&s6Hgz8GTX-l2(E0-&@*zR6)f8rG zLXa8&13+|Mr7~e@9gf1TY0eKmteB1#Bsck%=$T$dDbnxr815qKB6{6gcvVVPGuGsu zcPOpOseD~fa9E4R_lEz!!oy6ww_}OMNW8a@mJ|RupkEy?C|j};;V~dY1z?l>8_cVp z7J?7eeBzcFm`rZ+LJlb?JnN?SI7lE5${nl4s==x`5iB(TMFWof6B+>!fK&hkfaYKK z|Ic7Dwd~h=xCg6gdur?-cjR2yt|QD2+hT^Tn||K&fS+LiI{yO$0CX&{WCbet=-$*T z3iE-kj*bf{A9{QQlER!BOb@ zK8IMBA!jFCEV}mLKYtD{t{oj0NaGV55R|7};_3vokG(t~w4NMzCdVengUce$k}IYw zLV3q|$7c%7*~k1;CzX5ESS@7P1hhW?2^zFMH!fkT+=bpaUsr2+WhY%HZzA$fW~?jN zH308_Qmay{II^o+CQy$ZuVJe~x2q9MZN2P02-9lrpN{Z)93ysW}>LnzLxA$sxpW_?O{1!{>+k}tlUPX|Xfg(beADEQhW zqDL&~_D(O0`8vwIq>@?FP&B4XRF^|dcldtW52XVhfKY~Rgwlm#CPZdFBgpI%}uV8`yo_`wIVn<}~DhdBr0M8TwzC<-gihQ{~ zNR2Cu8&qel;^B-rT-38ZL}z7YwWGZgMq!v<(yFS08HF+Tuhk@0#b0PzCufposio9H zY3Hz7AF9J`@UMrw^Tm0Gwjom$F2I^IFjoHc9oj{jpRTHLYuk7iU_Sddi0EW7jpJHG zhJ1?DbE%n2J5g8B8QytwhU*p?;T}nz{F~$AiuD1**8d0jY2`#0^1HRYYv^#oV&UiD zE2aW2yIaBs>AcsPXg8Jo`t%t%U4KcIfq%9(MSV|uzuH<)4yFZb96dop`$3670p2># zoD@bQU_|^1M4-aUc?h9i`n?c=&4M0>+PCo2o6(<36UqT17JitVB8F60>G~Byqr&0< z!G0FBrg!!>e&BCBJA9rml)PU$oSeo~UVVgnSM)%G5BLq`AH_sX)Jy5E%I8Bx4}Hb- zRa_P;)W4g@;~J^c0;3I<_dCGDJ{s)#zaI7p=~-MfLycr6 zb>!SxGt0yQr~C9YEW`8DW)*;-e+_ux7YB1{hx+ek?za0(v}5fT#16FY-6kHxi-WiD z7Gi3Af7BhWCZvE6Ou!Qk26L2vOMBt_OW}FpdGLyn*i|jKF7v}>rMMjBz3r#VOy}_d z!1euq0#OR+q-wt_v8*~}9&FqY3wXY7H(qZ~m=+W^pr}Ph0{kRq&=Ede zEcn*yKcGuTKEWnWv;$WOKFA0f4ZQ}sUikh{ctUsryrLy`l?$%>{+}n0={#cu{DTxg z1s;)qa&x7xQ@+jFqLA_f zkd_Z8bl2Y6;X?$}I6j*#8Py9+u`fr0DnG{YEB9-Elr(4;+l05xU~)}C51RmuV#xbKM1(aI8qop+@vW%B4{s5XyI_~J zUi`GlYa_e7<$f0mQl0Rv*RP7UiYcaYH_;$p> zWj!Lh3V*}u__*))1bi;@FE}qjJM0NTPeD&OD4^x}7PAUbGcwG3tovCCz!OhMN@`>T zW3S)O4&CW7-P;lyf1?GnqD6}1oJUdq*ydAdN4yMG*H;_NIa}F?GH=(IqsZFVnC*UywRJnwB#L^8x|dk z0faed>%#woRbn!S!lL?HztK3pBLxqlp5`N~I6Pks*5PFYw}vH#yedZ zfHIOV2>d_f(MBw~rbiNM2p$$jEQ2g{n{z0$j6?c8t5j3^Jads2mUPAh0CDfcCLYji zKtq+O{=Pp_3ry?=-2$Z#1psDrpsc~48Z)%arCq3F=@0MF+v7Dx ze)<_XE@{S+g_U2^(*y1NG zF(xG2`#f_kbItdpDEq!scu|kep5fJVIY`<6g!b3BtC$>+0$7jV2_92(_Nk$-l)Z}49di|$j*t4LAdHYqx~ zcIKcoqAc~sECpAVG$RHm-pDOUK;{mvuM)SJMT?KSy7a_{U|*5B`ZojGECArj!}Lql zRlVCr6u{72lBiwoE%S{6k|Dwcs0scU#qlM_3ZCmLrkCQfDF5}qe=9%GQ$2s`{Liy;QjU!s zM|I>}J3WB$Q__SYoIGFmY&HPJ$#2bbfe~Yj7Pw|0eVTdfQ)YNN7J%|q+phD649e5z z;?DLDrvNVp!9qGDSK$dVEKW!`RfTUAJl)~I($gFP;DQ%m#zv7-h5r@63v16RYb_HV z4-ulW5Tt&iKpq+m48eawdr~*~t*!d0t#&~vLd&^tkSM?MxkbusdSr#aNt?<9X>iFU63dO@}8mBt@gTb&m<`dSF2IC|8 zzoPM9?TiG5=x4AQ(~YfmLm>jix-X!S@=jNom>ym8L%`7MzID@h4KE?%Eq4rz1=Mnq z4vgGK^G;uC8|p4_K`7Yr{{Y`)p88tdw)0w*eY(vY`RBoJ9)D~MzD-@!RqfAzHVqCi zo}O=`3EDtzqivul$)4$8gYA!kzdi$6MSWy>p0S<5>o5}+4@Zfyz_c@ZP^iC;e$N8a z?WZq(5ferPhQMhN3wrwlm|EAP9wiDaX3GMH!I)|J2Oz850}GuKm%kPsroG* zW5MN8ww%CwK@267=F|ZUn|?SQ$cDihuA>vk7Vvd2+R){G>LLsrsthe2*)QrTqz9Csd zajBwm%}FhzoI{*}&p}xi!CD(4d`W4>Z0@S)DGp&UqCl0D0!fB{KP)QGqBFXPqD+`q zO6)p~ZL=eY7x#)2mp1lLjJ2@DFr5dSpA1aI>0nF2Vk5~ISs!n$e*otES67sbp`9xv z`^&;vuf`EA;5c9ip}(qPeYGAfDh+=>*9^<9tj4}EY{umXG5pyB2#R5~JH8mc$6n@x z2mB?y`$8=Br7=6lmrez=-|cU-d|Q)UcEEBh-_3AO(}e7yxw9L@SY9NgW5ySuwXa1w$$!QI_8xGce4 zLvRR$0Kwhe-CctP`wzT%@4dgOuf91|yW3C8PCwl}($jO!w+g5B5gKW_TJm_bRt~m} zK??GEFud@jUS(2aNH)jcbFggSc=P-P--Pf|T`pP3fq9OhcPhiM+W7`jEaWL@L$Ich zfHOVH@#Zt$pPEZ~OT)2u%+RF7e@jEt|M;tmi{WLC1xQtZYz_t_YzJHpBP{w9PI@3BcD8AtXme)f7ep6nf3 z0qh4z+CWUv2olM9+4$jpj@KZqN(5xB=CBS>SqUH}2Oj;0#Cw0bDpL55VBgv*5Au0eE!bMAgj1mu??*P{*nI^?$g8FJLXkTVEC;5?z66RVvUn-TA2 zT*J0UXn4fF@MEVkj zsc4HK;G88p>I=XYjm(j>{5}-2d$10sLL5y&9s*o;^u4pdcjEcLy>m8~@<~dni)J7; zjQ533Y#c=12WxD6n(^(AG0;P%8j|hFk=)2@iTG?GxdZXrqt~SD$s5p?`nb4jD2pn- z;-@O9ZvZANCvsD^pBB3>_bx!n4=@e>K;kkd@*PpzEpdF_z*iPCl@$?cs(71fs99)D(ip$XnmXgFy}ApBdj$f7dXBJ4Zee` z0eQO0fn`nnoiU{)BN;mo~X@X`Lp~MGY{um0;1QMAzig)M~;bIBK$>mmDFtb=+ zC@y*BDc}+cj1s!gTt?Ym53n+U6aj3_0|_5f*yfa>X&@582CDYP{}kopD~G;lKMWWw zw3MU+V?cR<4L57bgatgQy^leB0pwPVs1YidhQI=mBKi{_cG%xkgx#8vbFtc)7pqDt z#c;+1hMgdnP?|jlZw%2Kngb$DlyKPKI1i62tQcz=@zO#bFy$JhwJRKCC0EAHhy9Z# z&$J48;$Oi*dmG-=I$}~agxOq1mRchF&@Ssb zqJ3zDLnuj!s#*(ho8N)AhUl_}sIF$dZI-y03@jbF6~k0{!0z_bQ7}^10P&c=th|C$ zsKHg{$;!V6ODlK~0~N@~ugb^R)KbC8PErKOE3nOCm?t=sZ0F02Q2-OPK$dVvZd4#w zAl1B%Bh8gMwws z;a@v1P(lfWnFuIH26NfCd;YQS*-*Q*+r!fpc-Me88s&1s$@^=jts&*1k!}@}22R=F z1Y)txArpP^i@=aZ^4Qt$wk3I8?|g;>vKARKm+BlQJQo=$k0d0QfX1U0EfU>0CP3>! z1Sbb!%;ZI4h1%jK<}GisrXS(%2VZt%rvPBq!+?neCnZvBh;lCAr?uiV{eaGnN(x|- zt4oPA8QS4Xrr&xHPeB+eL>|feh+Ea`%EE&>gW0aR#$bc$2%Rsdt3>|6(;&t(^f5`$BT7?Tfd z{TpqX&y4SY8SWP#2z;g5K9MBUst#|e?puJldCz2qqFY;#q3aF$p0Ug-9+Ux0vKx7t zY#-4<)9n|G*UKz>XMGsJtc(c3`T=Jowc+~q*-gMeOJD6gN46>A`HziV8fHcwX+#Ek z2OLKmT%Tn)DtI(HxFh&dBLW!rln)GveXykl!dsGJa}lr{e={qZ{|~7NuyHctgiYw3 z%Z3-J2{`3{q$Y^}S85`fmggU-iS-c5o@P5up?fL^r|@Q>C)L*Q({xMF9%+lE!}5tj zou4$wfmB5x2W~9*z?_V*@-wdB0w%AlWK_Q}vfpTvz(rB3o#uyhV zX5x3G)X5S8AYQ~dR#MrMNe0R^OR_=iX)fE#qRl1;9i-qqRJUKZDrf>vF8nRCjmweG zDVBM@3U%Zi@d2GD*GXRWBoeb6DeW(;*pZY+9nTyY#Y`n9$ua+BjG+I;M zT48!gqsD^HXqOeU<2S$IIKAqQ8k)8!N+HWCc0YwsMq<+=4z-oWo71{XN0{bfa}AWJ zozpjoM0kvW(-JQ*#DhWfrIb-iTJ$YI%3(8dr6bntTrjaez%xa`K>~{zS zP_M~8GT;FrtLpi1+rfEw==_lJg<5kKE!^_yPfa6)i!KjcC(FYIfD&lHzrvt}@C^KJ zw#z?%dNzHGFWz)-z+AmU0U2Vhew|!g?_@@B#ab3#itheQnr^F*4t{LYbSbB^dfFPH zPkpci$|3KJPpYSrF*$6mgzRyATqdRqGbk%BfQo|Z;bZENt(JK%O6bqxMdZHfZ6<4S3>T8btOER7{6udB;FyO?DjUOpPznz z^jgK31c!+^sBwDaqu<;5C@KEOBe7?Z@IB$Nb4Uh~*a#o%Mo;H3H}!tl44Bvn9+F2| zRuoaF2RhE%dXr#9%MCq9dzAg77gY(RJHzbPlW9cm-Era^pRTk?{+Uoi%e*FJTm z_0~OaZ1S!1)L!b4@=_ivB?9+G2^eCIYzd%c#E{WFYPNOOlUb#1o!vAUA3zWyz>sbB znuF0^?^%*&~`H9LWP1E_E z>`~%SBiK}A&ee#KE=_M39hbW2{9)(}qlKnoq`b<`-qtH>ha1ZM44oep6Rpnn`TX=5 zE=(MVBQ{+tqHKi=%e+W#EbK7DM7Ya{ZN#qWv(q^wBagxS#X9 zPY{i9PDB}{m<0QAikqlYk5tp;6#+pAHRBpE`u_?-#3x9>7XgA0eXDAKAOz}&GlTdI z!YZQKiy%b2^@||HCFh}{CxLK9FBQF{6Fc^fh+*`mMiym&(=dYN)HACGKy86J-R|%!+_j$(OUJ8mq79)TpUT#Icf-qS0uIh6$3s_#>Hblo z-=@W^#B5Bze4ZnIn_qwFhtjs(xB0}igw1`?X<)%7_*A=LI